├── .gitignore ├── .rubocop.yml ├── .travis.yml ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── bin └── orats ├── lib ├── orats.rb └── orats │ ├── cli.rb │ ├── cli_help │ ├── destroy │ └── new │ ├── commands │ └── new.rb │ ├── common.rb │ ├── templates │ └── base │ │ ├── .dockerignore │ │ ├── .env.example │ │ ├── .gitignore │ │ ├── .rubocop.yml │ │ ├── Dockerfile │ │ ├── Gemfile │ │ ├── Gemfile.lock │ │ ├── README.md │ │ ├── Rakefile │ │ ├── app │ │ ├── assets │ │ │ ├── config │ │ │ │ └── manifest.js │ │ │ ├── images │ │ │ │ └── .keep │ │ │ ├── javascripts │ │ │ │ ├── application.js │ │ │ │ ├── cable.js │ │ │ │ └── channels │ │ │ │ │ └── .keep │ │ │ └── stylesheets │ │ │ │ └── application.scss │ │ ├── channels │ │ │ └── application_cable │ │ │ │ ├── channel.rb │ │ │ │ └── connection.rb │ │ ├── controllers │ │ │ ├── application_controller.rb │ │ │ ├── concerns │ │ │ │ └── .keep │ │ │ └── pages_controller.rb │ │ ├── helpers │ │ │ ├── application_helper.rb │ │ │ └── pages_helper.rb │ │ ├── jobs │ │ │ └── application_job.rb │ │ ├── mailers │ │ │ └── application_mailer.rb │ │ ├── models │ │ │ ├── application_record.rb │ │ │ └── concerns │ │ │ │ └── .keep │ │ └── views │ │ │ ├── layouts │ │ │ ├── _flash.html.erb │ │ │ ├── _footer.html.erb │ │ │ ├── _google_analytics.html.erb │ │ │ ├── _navigation.html.erb │ │ │ ├── application.html.erb │ │ │ ├── mailer.html.erb │ │ │ └── mailer.text.erb │ │ │ └── pages │ │ │ └── home.html.erb │ │ ├── bin │ │ ├── bundle │ │ ├── rails │ │ ├── rake │ │ ├── setup │ │ ├── update │ │ └── yarn │ │ ├── cable │ │ └── config.ru │ │ ├── config.ru │ │ ├── config │ │ ├── application.rb │ │ ├── boot.rb │ │ ├── cable.yml │ │ ├── database.yml │ │ ├── environment.rb │ │ ├── environments │ │ │ ├── development.rb │ │ │ ├── production.rb │ │ │ ├── staging.rb │ │ │ └── test.rb │ │ ├── initializers │ │ │ ├── application_controller_renderer.rb │ │ │ ├── assets.rb │ │ │ ├── backtrace_silencers.rb │ │ │ ├── content_security_policy.rb │ │ │ ├── cookies_serializer.rb │ │ │ ├── filter_parameter_logging.rb │ │ │ ├── inflections.rb │ │ │ ├── mime_types.rb │ │ │ ├── session_store.rb │ │ │ ├── sidekiq.rb │ │ │ └── wrap_parameters.rb │ │ ├── locales │ │ │ └── en.yml │ │ ├── puma.rb │ │ ├── routes.rb │ │ ├── secrets.yml │ │ ├── sidekiq.yml.erb │ │ ├── spring.rb │ │ └── storage.yml │ │ ├── db │ │ └── seeds.rb │ │ ├── docker-compose.yml │ │ ├── lib │ │ ├── assets │ │ │ └── .keep │ │ └── tasks │ │ │ └── .keep │ │ ├── log │ │ └── .keep │ │ ├── public │ │ ├── 404.html │ │ ├── 422.html │ │ ├── 500.html │ │ ├── apple-touch-icon-precomposed.png │ │ ├── apple-touch-icon.png │ │ ├── favicon.ico │ │ └── robots.txt │ │ ├── storage │ │ └── .keep │ │ ├── test │ │ ├── application_system_test_case.rb │ │ ├── controllers │ │ │ ├── .keep │ │ │ └── pages_controller_test.rb │ │ ├── fixtures │ │ │ ├── .keep │ │ │ └── files │ │ │ │ └── .keep │ │ ├── helpers │ │ │ └── .keep │ │ ├── integration │ │ │ └── .keep │ │ ├── mailers │ │ │ └── .keep │ │ ├── models │ │ │ └── .keep │ │ ├── system │ │ │ └── .keep │ │ └── test_helper.rb │ │ └── vendor │ │ └── assets │ │ ├── javascripts │ │ └── .keep │ │ └── stylesheets │ │ └── .keep │ ├── ui.rb │ ├── util.rb │ └── version.rb ├── orats.gemspec └── test ├── integration └── cli_test.rb └── test_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/.gitignore -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | require 'bundler/gem_tasks' 2 | -------------------------------------------------------------------------------- /bin/orats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/bin/orats -------------------------------------------------------------------------------- /lib/orats.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats.rb -------------------------------------------------------------------------------- /lib/orats/cli.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/cli.rb -------------------------------------------------------------------------------- /lib/orats/cli_help/destroy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/cli_help/destroy -------------------------------------------------------------------------------- /lib/orats/cli_help/new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/cli_help/new -------------------------------------------------------------------------------- /lib/orats/commands/new.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/commands/new.rb -------------------------------------------------------------------------------- /lib/orats/common.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/common.rb -------------------------------------------------------------------------------- /lib/orats/templates/base/.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | .dockerignore 3 | .byebug_history 4 | log/* 5 | tmp/* 6 | -------------------------------------------------------------------------------- /lib/orats/templates/base/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/.env.example -------------------------------------------------------------------------------- /lib/orats/templates/base/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/.gitignore -------------------------------------------------------------------------------- /lib/orats/templates/base/.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/.rubocop.yml -------------------------------------------------------------------------------- /lib/orats/templates/base/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/Dockerfile -------------------------------------------------------------------------------- /lib/orats/templates/base/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/Gemfile -------------------------------------------------------------------------------- /lib/orats/templates/base/Gemfile.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/orats/templates/base/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/README.md -------------------------------------------------------------------------------- /lib/orats/templates/base/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/Rakefile -------------------------------------------------------------------------------- /lib/orats/templates/base/app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/app/assets/config/manifest.js -------------------------------------------------------------------------------- /lib/orats/templates/base/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/orats/templates/base/app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /lib/orats/templates/base/app/assets/javascripts/cable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/app/assets/javascripts/cable.js -------------------------------------------------------------------------------- /lib/orats/templates/base/app/assets/javascripts/channels/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/orats/templates/base/app/assets/stylesheets/application.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/app/assets/stylesheets/application.scss -------------------------------------------------------------------------------- /lib/orats/templates/base/app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/app/channels/application_cable/channel.rb -------------------------------------------------------------------------------- /lib/orats/templates/base/app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/app/channels/application_cable/connection.rb -------------------------------------------------------------------------------- /lib/orats/templates/base/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /lib/orats/templates/base/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/orats/templates/base/app/controllers/pages_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/app/controllers/pages_controller.rb -------------------------------------------------------------------------------- /lib/orats/templates/base/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /lib/orats/templates/base/app/helpers/pages_helper.rb: -------------------------------------------------------------------------------- 1 | module PagesHelper 2 | end 3 | -------------------------------------------------------------------------------- /lib/orats/templates/base/app/jobs/application_job.rb: -------------------------------------------------------------------------------- 1 | class ApplicationJob < ActiveJob::Base 2 | end 3 | -------------------------------------------------------------------------------- /lib/orats/templates/base/app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /lib/orats/templates/base/app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/app/models/application_record.rb -------------------------------------------------------------------------------- /lib/orats/templates/base/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/orats/templates/base/app/views/layouts/_flash.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/app/views/layouts/_flash.html.erb -------------------------------------------------------------------------------- /lib/orats/templates/base/app/views/layouts/_footer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/app/views/layouts/_footer.html.erb -------------------------------------------------------------------------------- /lib/orats/templates/base/app/views/layouts/_google_analytics.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/app/views/layouts/_google_analytics.html.erb -------------------------------------------------------------------------------- /lib/orats/templates/base/app/views/layouts/_navigation.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/app/views/layouts/_navigation.html.erb -------------------------------------------------------------------------------- /lib/orats/templates/base/app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /lib/orats/templates/base/app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/app/views/layouts/mailer.html.erb -------------------------------------------------------------------------------- /lib/orats/templates/base/app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /lib/orats/templates/base/app/views/pages/home.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/app/views/pages/home.html.erb -------------------------------------------------------------------------------- /lib/orats/templates/base/bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/bin/bundle -------------------------------------------------------------------------------- /lib/orats/templates/base/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/bin/rails -------------------------------------------------------------------------------- /lib/orats/templates/base/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/bin/rake -------------------------------------------------------------------------------- /lib/orats/templates/base/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/bin/setup -------------------------------------------------------------------------------- /lib/orats/templates/base/bin/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/bin/update -------------------------------------------------------------------------------- /lib/orats/templates/base/bin/yarn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/bin/yarn -------------------------------------------------------------------------------- /lib/orats/templates/base/cable/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/cable/config.ru -------------------------------------------------------------------------------- /lib/orats/templates/base/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/config.ru -------------------------------------------------------------------------------- /lib/orats/templates/base/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/config/application.rb -------------------------------------------------------------------------------- /lib/orats/templates/base/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/config/boot.rb -------------------------------------------------------------------------------- /lib/orats/templates/base/config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/config/cable.yml -------------------------------------------------------------------------------- /lib/orats/templates/base/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/config/database.yml -------------------------------------------------------------------------------- /lib/orats/templates/base/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/config/environment.rb -------------------------------------------------------------------------------- /lib/orats/templates/base/config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/config/environments/development.rb -------------------------------------------------------------------------------- /lib/orats/templates/base/config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/config/environments/production.rb -------------------------------------------------------------------------------- /lib/orats/templates/base/config/environments/staging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/config/environments/staging.rb -------------------------------------------------------------------------------- /lib/orats/templates/base/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/config/environments/test.rb -------------------------------------------------------------------------------- /lib/orats/templates/base/config/initializers/application_controller_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/config/initializers/application_controller_renderer.rb -------------------------------------------------------------------------------- /lib/orats/templates/base/config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/config/initializers/assets.rb -------------------------------------------------------------------------------- /lib/orats/templates/base/config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /lib/orats/templates/base/config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/config/initializers/content_security_policy.rb -------------------------------------------------------------------------------- /lib/orats/templates/base/config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /lib/orats/templates/base/config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /lib/orats/templates/base/config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/config/initializers/inflections.rb -------------------------------------------------------------------------------- /lib/orats/templates/base/config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /lib/orats/templates/base/config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/config/initializers/session_store.rb -------------------------------------------------------------------------------- /lib/orats/templates/base/config/initializers/sidekiq.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/config/initializers/sidekiq.rb -------------------------------------------------------------------------------- /lib/orats/templates/base/config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /lib/orats/templates/base/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/config/locales/en.yml -------------------------------------------------------------------------------- /lib/orats/templates/base/config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/config/puma.rb -------------------------------------------------------------------------------- /lib/orats/templates/base/config/routes.rb: -------------------------------------------------------------------------------- 1 | Rails.application.routes.draw do 2 | root 'pages#home' 3 | end 4 | -------------------------------------------------------------------------------- /lib/orats/templates/base/config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/config/secrets.yml -------------------------------------------------------------------------------- /lib/orats/templates/base/config/sidekiq.yml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/config/sidekiq.yml.erb -------------------------------------------------------------------------------- /lib/orats/templates/base/config/spring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/config/spring.rb -------------------------------------------------------------------------------- /lib/orats/templates/base/config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/config/storage.yml -------------------------------------------------------------------------------- /lib/orats/templates/base/db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/db/seeds.rb -------------------------------------------------------------------------------- /lib/orats/templates/base/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/docker-compose.yml -------------------------------------------------------------------------------- /lib/orats/templates/base/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/orats/templates/base/lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/orats/templates/base/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/orats/templates/base/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/public/404.html -------------------------------------------------------------------------------- /lib/orats/templates/base/public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/public/422.html -------------------------------------------------------------------------------- /lib/orats/templates/base/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/public/500.html -------------------------------------------------------------------------------- /lib/orats/templates/base/public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/orats/templates/base/public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/orats/templates/base/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/orats/templates/base/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/public/robots.txt -------------------------------------------------------------------------------- /lib/orats/templates/base/storage/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/orats/templates/base/test/application_system_test_case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/test/application_system_test_case.rb -------------------------------------------------------------------------------- /lib/orats/templates/base/test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/orats/templates/base/test/controllers/pages_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/test/controllers/pages_controller_test.rb -------------------------------------------------------------------------------- /lib/orats/templates/base/test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/orats/templates/base/test/fixtures/files/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/orats/templates/base/test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/orats/templates/base/test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/orats/templates/base/test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/orats/templates/base/test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/orats/templates/base/test/system/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/orats/templates/base/test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/templates/base/test/test_helper.rb -------------------------------------------------------------------------------- /lib/orats/templates/base/vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/orats/templates/base/vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/orats/ui.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/ui.rb -------------------------------------------------------------------------------- /lib/orats/util.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/lib/orats/util.rb -------------------------------------------------------------------------------- /lib/orats/version.rb: -------------------------------------------------------------------------------- 1 | # set the version of this gem 2 | module Orats 3 | VERSION = '5.2.3'.freeze 4 | end 5 | -------------------------------------------------------------------------------- /orats.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/orats.gemspec -------------------------------------------------------------------------------- /test/integration/cli_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/test/integration/cli_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickjj/orats/HEAD/test/test_helper.rb --------------------------------------------------------------------------------