├── .byebug_history ├── .gitignore ├── .ruby-version ├── .travis.yml ├── AUTHORS ├── CODE_OF_CONDUCT.md ├── Gemfile ├── LICENSE.txt ├── Makefile ├── README.md ├── Rakefile ├── assets ├── example.png └── header.png ├── bin ├── console └── setup ├── exe └── pandora ├── lib ├── pandora.rb └── pandora │ ├── client │ └── main.rb │ ├── commands │ ├── commands.rb │ ├── create.rb │ ├── lint.rb │ └── setup.rb │ ├── models │ ├── app.rb │ ├── file.rb │ ├── framework.rb │ └── models.rb │ └── version.rb ├── pandora.gemspec └── test ├── fixtures └── .pandora.yml ├── models ├── app_test.rb ├── file_test.rb └── framework_test.rb └── test_helper.rb /.byebug_history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/pandora/HEAD/.byebug_history -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/pandora/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.3.1 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/pandora/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/pandora/HEAD/AUTHORS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/pandora/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/pandora/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/pandora/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/pandora/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/pandora/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/pandora/HEAD/Rakefile -------------------------------------------------------------------------------- /assets/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/pandora/HEAD/assets/example.png -------------------------------------------------------------------------------- /assets/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/pandora/HEAD/assets/header.png -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/pandora/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/pandora/HEAD/bin/setup -------------------------------------------------------------------------------- /exe/pandora: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/pandora/HEAD/exe/pandora -------------------------------------------------------------------------------- /lib/pandora.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/pandora/HEAD/lib/pandora.rb -------------------------------------------------------------------------------- /lib/pandora/client/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/pandora/HEAD/lib/pandora/client/main.rb -------------------------------------------------------------------------------- /lib/pandora/commands/commands.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/pandora/HEAD/lib/pandora/commands/commands.rb -------------------------------------------------------------------------------- /lib/pandora/commands/create.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/pandora/HEAD/lib/pandora/commands/create.rb -------------------------------------------------------------------------------- /lib/pandora/commands/lint.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/pandora/HEAD/lib/pandora/commands/lint.rb -------------------------------------------------------------------------------- /lib/pandora/commands/setup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/pandora/HEAD/lib/pandora/commands/setup.rb -------------------------------------------------------------------------------- /lib/pandora/models/app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/pandora/HEAD/lib/pandora/models/app.rb -------------------------------------------------------------------------------- /lib/pandora/models/file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/pandora/HEAD/lib/pandora/models/file.rb -------------------------------------------------------------------------------- /lib/pandora/models/framework.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/pandora/HEAD/lib/pandora/models/framework.rb -------------------------------------------------------------------------------- /lib/pandora/models/models.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/pandora/HEAD/lib/pandora/models/models.rb -------------------------------------------------------------------------------- /lib/pandora/version.rb: -------------------------------------------------------------------------------- 1 | module Pandora 2 | VERSION = "0.1.3" 3 | end 4 | -------------------------------------------------------------------------------- /pandora.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/pandora/HEAD/pandora.gemspec -------------------------------------------------------------------------------- /test/fixtures/.pandora.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/pandora/HEAD/test/fixtures/.pandora.yml -------------------------------------------------------------------------------- /test/models/app_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/pandora/HEAD/test/models/app_test.rb -------------------------------------------------------------------------------- /test/models/file_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/pandora/HEAD/test/models/file_test.rb -------------------------------------------------------------------------------- /test/models/framework_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/pandora/HEAD/test/models/framework_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modo-studio/pandora/HEAD/test/test_helper.rb --------------------------------------------------------------------------------