├── .gitignore ├── .travis.yml ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin └── setup ├── example_app ├── Gemfile ├── README.rdoc ├── Rakefile ├── app │ ├── assets │ │ ├── images │ │ │ └── .keep │ │ ├── javascripts │ │ │ ├── application.js │ │ │ ├── main.imba │ │ │ └── welcome.imba │ │ └── stylesheets │ │ │ └── application.css │ ├── controllers │ │ ├── application_controller.rb │ │ ├── concerns │ │ │ └── .keep │ │ └── welcome_controller.rb │ ├── helpers │ │ └── application_helper.rb │ ├── mailers │ │ └── .keep │ ├── models │ │ ├── .keep │ │ └── concerns │ │ │ └── .keep │ └── views │ │ ├── layouts │ │ └── application.html.erb │ │ └── welcome │ │ └── index.html.erb ├── bin │ ├── bundle │ ├── rails │ ├── rake │ └── setup ├── config.ru ├── config │ ├── application.rb │ ├── boot.rb │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── initializers │ │ ├── assets.rb │ │ ├── backtrace_silencers.rb │ │ ├── cookies_serializer.rb │ │ ├── filter_parameter_logging.rb │ │ ├── inflections.rb │ │ ├── mime_types.rb │ │ ├── session_store.rb │ │ └── wrap_parameters.rb │ ├── locales │ │ └── en.yml │ ├── routes.rb │ └── secrets.yml ├── db │ └── seeds.rb ├── lib │ ├── assets │ │ └── .keep │ └── tasks │ │ └── .keep ├── log │ └── .keep ├── public │ ├── 404.html │ ├── 422.html │ ├── 500.html │ ├── favicon.ico │ └── robots.txt ├── test.sh └── vendor │ └── assets │ ├── javascripts │ └── .keep │ └── stylesheets │ └── .keep ├── imba-rails.gemspec └── lib └── imba ├── rails.rb └── rails └── version.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judofyr/imba-rails/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judofyr/imba-rails/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judofyr/imba-rails/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judofyr/imba-rails/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judofyr/imba-rails/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | require "bundler/gem_tasks" 2 | -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judofyr/imba-rails/HEAD/bin/setup -------------------------------------------------------------------------------- /example_app/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judofyr/imba-rails/HEAD/example_app/Gemfile -------------------------------------------------------------------------------- /example_app/README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judofyr/imba-rails/HEAD/example_app/README.rdoc -------------------------------------------------------------------------------- /example_app/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judofyr/imba-rails/HEAD/example_app/Rakefile -------------------------------------------------------------------------------- /example_app/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example_app/app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judofyr/imba-rails/HEAD/example_app/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /example_app/app/assets/javascripts/main.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judofyr/imba-rails/HEAD/example_app/app/assets/javascripts/main.imba -------------------------------------------------------------------------------- /example_app/app/assets/javascripts/welcome.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judofyr/imba-rails/HEAD/example_app/app/assets/javascripts/welcome.imba -------------------------------------------------------------------------------- /example_app/app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judofyr/imba-rails/HEAD/example_app/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /example_app/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judofyr/imba-rails/HEAD/example_app/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /example_app/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example_app/app/controllers/welcome_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judofyr/imba-rails/HEAD/example_app/app/controllers/welcome_controller.rb -------------------------------------------------------------------------------- /example_app/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /example_app/app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example_app/app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example_app/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example_app/app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judofyr/imba-rails/HEAD/example_app/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /example_app/app/views/welcome/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judofyr/imba-rails/HEAD/example_app/app/views/welcome/index.html.erb -------------------------------------------------------------------------------- /example_app/bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judofyr/imba-rails/HEAD/example_app/bin/bundle -------------------------------------------------------------------------------- /example_app/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judofyr/imba-rails/HEAD/example_app/bin/rails -------------------------------------------------------------------------------- /example_app/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judofyr/imba-rails/HEAD/example_app/bin/rake -------------------------------------------------------------------------------- /example_app/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judofyr/imba-rails/HEAD/example_app/bin/setup -------------------------------------------------------------------------------- /example_app/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judofyr/imba-rails/HEAD/example_app/config.ru -------------------------------------------------------------------------------- /example_app/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judofyr/imba-rails/HEAD/example_app/config/application.rb -------------------------------------------------------------------------------- /example_app/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judofyr/imba-rails/HEAD/example_app/config/boot.rb -------------------------------------------------------------------------------- /example_app/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judofyr/imba-rails/HEAD/example_app/config/environment.rb -------------------------------------------------------------------------------- /example_app/config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judofyr/imba-rails/HEAD/example_app/config/environments/development.rb -------------------------------------------------------------------------------- /example_app/config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judofyr/imba-rails/HEAD/example_app/config/environments/production.rb -------------------------------------------------------------------------------- /example_app/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judofyr/imba-rails/HEAD/example_app/config/environments/test.rb -------------------------------------------------------------------------------- /example_app/config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judofyr/imba-rails/HEAD/example_app/config/initializers/assets.rb -------------------------------------------------------------------------------- /example_app/config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judofyr/imba-rails/HEAD/example_app/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /example_app/config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judofyr/imba-rails/HEAD/example_app/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /example_app/config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judofyr/imba-rails/HEAD/example_app/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /example_app/config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judofyr/imba-rails/HEAD/example_app/config/initializers/inflections.rb -------------------------------------------------------------------------------- /example_app/config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judofyr/imba-rails/HEAD/example_app/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /example_app/config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judofyr/imba-rails/HEAD/example_app/config/initializers/session_store.rb -------------------------------------------------------------------------------- /example_app/config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judofyr/imba-rails/HEAD/example_app/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /example_app/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judofyr/imba-rails/HEAD/example_app/config/locales/en.yml -------------------------------------------------------------------------------- /example_app/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judofyr/imba-rails/HEAD/example_app/config/routes.rb -------------------------------------------------------------------------------- /example_app/config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judofyr/imba-rails/HEAD/example_app/config/secrets.yml -------------------------------------------------------------------------------- /example_app/db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judofyr/imba-rails/HEAD/example_app/db/seeds.rb -------------------------------------------------------------------------------- /example_app/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example_app/lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example_app/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example_app/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judofyr/imba-rails/HEAD/example_app/public/404.html -------------------------------------------------------------------------------- /example_app/public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judofyr/imba-rails/HEAD/example_app/public/422.html -------------------------------------------------------------------------------- /example_app/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judofyr/imba-rails/HEAD/example_app/public/500.html -------------------------------------------------------------------------------- /example_app/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example_app/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judofyr/imba-rails/HEAD/example_app/public/robots.txt -------------------------------------------------------------------------------- /example_app/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judofyr/imba-rails/HEAD/example_app/test.sh -------------------------------------------------------------------------------- /example_app/vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example_app/vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /imba-rails.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judofyr/imba-rails/HEAD/imba-rails.gemspec -------------------------------------------------------------------------------- /lib/imba/rails.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judofyr/imba-rails/HEAD/lib/imba/rails.rb -------------------------------------------------------------------------------- /lib/imba/rails/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/judofyr/imba-rails/HEAD/lib/imba/rails/version.rb --------------------------------------------------------------------------------