├── .gitignore ├── .rvmrc ├── Gemfile ├── Gemfile.lock ├── MIT-LICENSE ├── README.rdoc ├── Rakefile ├── app ├── assets │ ├── images │ │ └── rails.png │ ├── javascripts │ │ ├── application.js │ │ └── landing_page.js.coffee │ └── stylesheets │ │ ├── application.css │ │ └── landing_page.css.scss ├── controllers │ ├── application_controller.rb │ └── landing_page_controller.rb ├── helpers │ ├── application_helper.rb │ └── landing_page_helper.rb ├── mailers │ └── .gitkeep ├── models │ └── .gitkeep └── views │ ├── landing_page │ └── show.html.erb │ └── layouts │ └── application.html.erb ├── config.ru ├── config ├── application.rb ├── boot.rb ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── backtrace_silencers.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── secret_token.rb │ ├── session_store.rb │ └── wrap_parameters.rb ├── locales │ └── en.yml └── routes.rb ├── db ├── schema.rb └── seeds.rb ├── doc └── README_FOR_APP ├── engines ├── common_stuff │ ├── .gitignore │ ├── Gemfile │ ├── Gemfile.lock │ ├── MIT-LICENSE │ ├── README.rdoc │ ├── Rakefile │ ├── common_stuff.gemspec │ ├── common_stuff.iml │ ├── lib │ │ ├── common_stuff.rb │ │ ├── common_stuff │ │ │ ├── quote_of_the_day.rb │ │ │ └── version.rb │ │ └── tasks │ │ │ └── common_stuff_tasks.rake │ └── test │ │ ├── common_stuff_test.rb │ │ ├── dummy │ │ ├── README.rdoc │ │ ├── Rakefile │ │ ├── app │ │ │ ├── assets │ │ │ │ ├── javascripts │ │ │ │ │ └── application.js │ │ │ │ └── stylesheets │ │ │ │ │ └── application.css │ │ │ ├── controllers │ │ │ │ └── application_controller.rb │ │ │ ├── helpers │ │ │ │ └── application_helper.rb │ │ │ ├── mailers │ │ │ │ └── .gitkeep │ │ │ ├── models │ │ │ │ └── .gitkeep │ │ │ └── views │ │ │ │ └── layouts │ │ │ │ └── application.html.erb │ │ ├── config.ru │ │ ├── config │ │ │ ├── application.rb │ │ │ ├── boot.rb │ │ │ ├── database.yml │ │ │ ├── environment.rb │ │ │ ├── environments │ │ │ │ ├── development.rb │ │ │ │ ├── production.rb │ │ │ │ └── test.rb │ │ │ ├── initializers │ │ │ │ ├── backtrace_silencers.rb │ │ │ │ ├── inflections.rb │ │ │ │ ├── mime_types.rb │ │ │ │ ├── secret_token.rb │ │ │ │ ├── session_store.rb │ │ │ │ └── wrap_parameters.rb │ │ │ ├── locales │ │ │ │ └── en.yml │ │ │ └── routes.rb │ │ ├── lib │ │ │ └── assets │ │ │ │ └── .gitkeep │ │ ├── log │ │ │ └── .gitkeep │ │ ├── public │ │ │ ├── 404.html │ │ │ ├── 422.html │ │ │ ├── 500.html │ │ │ └── favicon.ico │ │ └── script │ │ │ └── rails │ │ └── test_helper.rb ├── web_engine1 │ ├── .gitignore │ ├── Gemfile │ ├── Gemfile.lock │ ├── MIT-LICENSE │ ├── README.rdoc │ ├── Rakefile │ ├── app │ │ ├── assets │ │ │ ├── images │ │ │ │ └── web_engine1 │ │ │ │ │ └── .gitkeep │ │ │ ├── javascripts │ │ │ │ └── web_engine1 │ │ │ │ │ ├── application.js │ │ │ │ │ └── welcome.js │ │ │ └── stylesheets │ │ │ │ └── web_engine1 │ │ │ │ ├── application.css │ │ │ │ └── welcome.css │ │ ├── controllers │ │ │ └── web_engine1 │ │ │ │ ├── application_controller.rb │ │ │ │ └── welcome_controller.rb │ │ ├── helpers │ │ │ └── web_engine1 │ │ │ │ ├── application_helper.rb │ │ │ │ └── welcome_helper.rb │ │ └── views │ │ │ ├── layouts │ │ │ └── web_engine1 │ │ │ │ └── application.html.erb │ │ │ └── web_engine1 │ │ │ └── welcome │ │ │ └── show.html.erb │ ├── config │ │ └── routes.rb │ ├── lib │ │ ├── tasks │ │ │ └── web_engine1_tasks.rake │ │ ├── web_engine1.rb │ │ └── web_engine1 │ │ │ ├── engine.rb │ │ │ └── version.rb │ ├── script │ │ └── rails │ ├── test │ │ ├── dummy │ │ │ ├── README.rdoc │ │ │ ├── Rakefile │ │ │ ├── app │ │ │ │ ├── assets │ │ │ │ │ ├── javascripts │ │ │ │ │ │ └── application.js │ │ │ │ │ └── stylesheets │ │ │ │ │ │ └── application.css │ │ │ │ ├── controllers │ │ │ │ │ └── application_controller.rb │ │ │ │ ├── helpers │ │ │ │ │ └── application_helper.rb │ │ │ │ ├── mailers │ │ │ │ │ └── .gitkeep │ │ │ │ ├── models │ │ │ │ │ └── .gitkeep │ │ │ │ └── views │ │ │ │ │ └── layouts │ │ │ │ │ └── application.html.erb │ │ │ ├── config.ru │ │ │ ├── config │ │ │ │ ├── application.rb │ │ │ │ ├── boot.rb │ │ │ │ ├── database.yml │ │ │ │ ├── environment.rb │ │ │ │ ├── environments │ │ │ │ │ ├── development.rb │ │ │ │ │ ├── production.rb │ │ │ │ │ └── test.rb │ │ │ │ ├── initializers │ │ │ │ │ ├── backtrace_silencers.rb │ │ │ │ │ ├── inflections.rb │ │ │ │ │ ├── mime_types.rb │ │ │ │ │ ├── secret_token.rb │ │ │ │ │ ├── session_store.rb │ │ │ │ │ └── wrap_parameters.rb │ │ │ │ ├── locales │ │ │ │ │ └── en.yml │ │ │ │ └── routes.rb │ │ │ ├── lib │ │ │ │ └── assets │ │ │ │ │ └── .gitkeep │ │ │ ├── log │ │ │ │ └── .gitkeep │ │ │ ├── public │ │ │ │ ├── 404.html │ │ │ │ ├── 422.html │ │ │ │ ├── 500.html │ │ │ │ └── favicon.ico │ │ │ └── script │ │ │ │ └── rails │ │ ├── functional │ │ │ └── web_engine1 │ │ │ │ └── welcome_controller_test.rb │ │ ├── integration │ │ │ └── navigation_test.rb │ │ ├── test_helper.rb │ │ ├── unit │ │ │ └── helpers │ │ │ │ └── web_engine1 │ │ │ │ └── welcome_helper_test.rb │ │ └── web_engine_1_test.rb │ ├── web_engine1.iml │ └── web_engine_1.gemspec └── web_engine2 │ ├── .gitignore │ ├── Gemfile │ ├── Gemfile.lock │ ├── MIT-LICENSE │ ├── README.rdoc │ ├── Rakefile │ ├── app │ ├── assets │ │ ├── images │ │ │ └── web_engine2 │ │ │ │ └── .gitkeep │ │ ├── javascripts │ │ │ └── web_engine2 │ │ │ │ ├── application.js │ │ │ │ └── hello_world.js │ │ └── stylesheets │ │ │ └── web_engine2 │ │ │ ├── application.css │ │ │ └── hello_world.css │ ├── controllers │ │ └── web_engine2 │ │ │ ├── application_controller.rb │ │ │ └── hello_world_controller.rb │ ├── helpers │ │ └── web_engine2 │ │ │ ├── application_helper.rb │ │ │ └── hello_world_helper.rb │ └── views │ │ ├── layouts │ │ └── web_engine2 │ │ │ └── application.html.erb │ │ └── web_engine2 │ │ └── hello_world │ │ └── show.html.haml │ ├── config │ └── routes.rb │ ├── lib │ ├── tasks │ │ └── web_engine2_tasks.rake │ ├── web_engine2.rb │ └── web_engine2 │ │ ├── engine.rb │ │ └── version.rb │ ├── script │ └── rails │ ├── test │ ├── dummy │ │ ├── README.rdoc │ │ ├── Rakefile │ │ ├── app │ │ │ ├── assets │ │ │ │ ├── javascripts │ │ │ │ │ └── application.js │ │ │ │ └── stylesheets │ │ │ │ │ └── application.css │ │ │ ├── controllers │ │ │ │ └── application_controller.rb │ │ │ ├── helpers │ │ │ │ └── application_helper.rb │ │ │ ├── mailers │ │ │ │ └── .gitkeep │ │ │ ├── models │ │ │ │ └── .gitkeep │ │ │ └── views │ │ │ │ └── layouts │ │ │ │ └── application.html.erb │ │ ├── config.ru │ │ ├── config │ │ │ ├── application.rb │ │ │ ├── boot.rb │ │ │ ├── database.yml │ │ │ ├── environment.rb │ │ │ ├── environments │ │ │ │ ├── development.rb │ │ │ │ ├── production.rb │ │ │ │ └── test.rb │ │ │ ├── initializers │ │ │ │ ├── backtrace_silencers.rb │ │ │ │ ├── inflections.rb │ │ │ │ ├── mime_types.rb │ │ │ │ ├── secret_token.rb │ │ │ │ ├── session_store.rb │ │ │ │ └── wrap_parameters.rb │ │ │ ├── locales │ │ │ │ └── en.yml │ │ │ └── routes.rb │ │ ├── lib │ │ │ └── assets │ │ │ │ └── .gitkeep │ │ ├── log │ │ │ └── .gitkeep │ │ ├── public │ │ │ ├── 404.html │ │ │ ├── 422.html │ │ │ ├── 500.html │ │ │ └── favicon.ico │ │ └── script │ │ │ └── rails │ ├── functional │ │ └── web_engine2 │ │ │ └── hello_world_controller_test.rb │ ├── integration │ │ └── navigation_test.rb │ ├── test_helper.rb │ ├── unit │ │ └── helpers │ │ │ └── web_engine2 │ │ │ └── hello_world_helper_test.rb │ └── web_engine_2_test.rb │ ├── web_engine2.gemspec │ └── web_engine2.iml ├── lib ├── assets │ └── .gitkeep └── tasks │ └── .gitkeep ├── log └── .gitkeep ├── public ├── 404.html ├── 422.html ├── 500.html ├── favicon.ico └── robots.txt ├── script └── rails ├── test ├── fixtures │ └── .gitkeep ├── functional │ ├── .gitkeep │ └── landing_page_controller_test.rb ├── integration │ └── .gitkeep ├── performance │ └── browsing_test.rb ├── test_helper.rb └── unit │ └── .gitkeep ├── test_all.sh └── vendor ├── assets ├── javascripts │ └── .gitkeep └── stylesheets │ └── .gitkeep └── plugins └── .gitkeep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/.gitignore -------------------------------------------------------------------------------- /.rvmrc: -------------------------------------------------------------------------------- 1 | rvm use 1.9.3@container_and_engines --create 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/MIT-LICENSE -------------------------------------------------------------------------------- /README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/README.rdoc -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/Rakefile -------------------------------------------------------------------------------- /app/assets/images/rails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/app/assets/images/rails.png -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/landing_page.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/app/assets/javascripts/landing_page.js.coffee -------------------------------------------------------------------------------- /app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /app/assets/stylesheets/landing_page.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/app/assets/stylesheets/landing_page.css.scss -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/landing_page_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/app/controllers/landing_page_controller.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/landing_page_helper.rb: -------------------------------------------------------------------------------- 1 | module LandingPageHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/mailers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/landing_page/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/app/views/landing_page/show.html.erb -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/secret_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/config/initializers/secret_token.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/config/routes.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /doc/README_FOR_APP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/doc/README_FOR_APP -------------------------------------------------------------------------------- /engines/common_stuff/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/common_stuff/.gitignore -------------------------------------------------------------------------------- /engines/common_stuff/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/common_stuff/Gemfile -------------------------------------------------------------------------------- /engines/common_stuff/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/common_stuff/Gemfile.lock -------------------------------------------------------------------------------- /engines/common_stuff/MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/common_stuff/MIT-LICENSE -------------------------------------------------------------------------------- /engines/common_stuff/README.rdoc: -------------------------------------------------------------------------------- 1 | = CommonStuff 2 | 3 | This project rocks and uses MIT-LICENSE. -------------------------------------------------------------------------------- /engines/common_stuff/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/common_stuff/Rakefile -------------------------------------------------------------------------------- /engines/common_stuff/common_stuff.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/common_stuff/common_stuff.gemspec -------------------------------------------------------------------------------- /engines/common_stuff/common_stuff.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/common_stuff/common_stuff.iml -------------------------------------------------------------------------------- /engines/common_stuff/lib/common_stuff.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/common_stuff/lib/common_stuff.rb -------------------------------------------------------------------------------- /engines/common_stuff/lib/common_stuff/quote_of_the_day.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/common_stuff/lib/common_stuff/quote_of_the_day.rb -------------------------------------------------------------------------------- /engines/common_stuff/lib/common_stuff/version.rb: -------------------------------------------------------------------------------- 1 | module CommonStuff 2 | VERSION = "0.0.1" 3 | end 4 | -------------------------------------------------------------------------------- /engines/common_stuff/lib/tasks/common_stuff_tasks.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/common_stuff/lib/tasks/common_stuff_tasks.rake -------------------------------------------------------------------------------- /engines/common_stuff/test/common_stuff_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/common_stuff/test/common_stuff_test.rb -------------------------------------------------------------------------------- /engines/common_stuff/test/dummy/README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/common_stuff/test/dummy/README.rdoc -------------------------------------------------------------------------------- /engines/common_stuff/test/dummy/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/common_stuff/test/dummy/Rakefile -------------------------------------------------------------------------------- /engines/common_stuff/test/dummy/app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/common_stuff/test/dummy/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /engines/common_stuff/test/dummy/app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/common_stuff/test/dummy/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /engines/common_stuff/test/dummy/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/common_stuff/test/dummy/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /engines/common_stuff/test/dummy/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /engines/common_stuff/test/dummy/app/mailers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /engines/common_stuff/test/dummy/app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /engines/common_stuff/test/dummy/app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/common_stuff/test/dummy/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /engines/common_stuff/test/dummy/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/common_stuff/test/dummy/config.ru -------------------------------------------------------------------------------- /engines/common_stuff/test/dummy/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/common_stuff/test/dummy/config/application.rb -------------------------------------------------------------------------------- /engines/common_stuff/test/dummy/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/common_stuff/test/dummy/config/boot.rb -------------------------------------------------------------------------------- /engines/common_stuff/test/dummy/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/common_stuff/test/dummy/config/database.yml -------------------------------------------------------------------------------- /engines/common_stuff/test/dummy/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/common_stuff/test/dummy/config/environment.rb -------------------------------------------------------------------------------- /engines/common_stuff/test/dummy/config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/common_stuff/test/dummy/config/environments/development.rb -------------------------------------------------------------------------------- /engines/common_stuff/test/dummy/config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/common_stuff/test/dummy/config/environments/production.rb -------------------------------------------------------------------------------- /engines/common_stuff/test/dummy/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/common_stuff/test/dummy/config/environments/test.rb -------------------------------------------------------------------------------- /engines/common_stuff/test/dummy/config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/common_stuff/test/dummy/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /engines/common_stuff/test/dummy/config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/common_stuff/test/dummy/config/initializers/inflections.rb -------------------------------------------------------------------------------- /engines/common_stuff/test/dummy/config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/common_stuff/test/dummy/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /engines/common_stuff/test/dummy/config/initializers/secret_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/common_stuff/test/dummy/config/initializers/secret_token.rb -------------------------------------------------------------------------------- /engines/common_stuff/test/dummy/config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/common_stuff/test/dummy/config/initializers/session_store.rb -------------------------------------------------------------------------------- /engines/common_stuff/test/dummy/config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/common_stuff/test/dummy/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /engines/common_stuff/test/dummy/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/common_stuff/test/dummy/config/locales/en.yml -------------------------------------------------------------------------------- /engines/common_stuff/test/dummy/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/common_stuff/test/dummy/config/routes.rb -------------------------------------------------------------------------------- /engines/common_stuff/test/dummy/lib/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /engines/common_stuff/test/dummy/log/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /engines/common_stuff/test/dummy/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/common_stuff/test/dummy/public/404.html -------------------------------------------------------------------------------- /engines/common_stuff/test/dummy/public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/common_stuff/test/dummy/public/422.html -------------------------------------------------------------------------------- /engines/common_stuff/test/dummy/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/common_stuff/test/dummy/public/500.html -------------------------------------------------------------------------------- /engines/common_stuff/test/dummy/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /engines/common_stuff/test/dummy/script/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/common_stuff/test/dummy/script/rails -------------------------------------------------------------------------------- /engines/common_stuff/test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/common_stuff/test/test_helper.rb -------------------------------------------------------------------------------- /engines/web_engine1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine1/.gitignore -------------------------------------------------------------------------------- /engines/web_engine1/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine1/Gemfile -------------------------------------------------------------------------------- /engines/web_engine1/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine1/Gemfile.lock -------------------------------------------------------------------------------- /engines/web_engine1/MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine1/MIT-LICENSE -------------------------------------------------------------------------------- /engines/web_engine1/README.rdoc: -------------------------------------------------------------------------------- 1 | = WebEngine1 2 | 3 | This project rocks and uses MIT-LICENSE. -------------------------------------------------------------------------------- /engines/web_engine1/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine1/Rakefile -------------------------------------------------------------------------------- /engines/web_engine1/app/assets/images/web_engine1/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /engines/web_engine1/app/assets/javascripts/web_engine1/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine1/app/assets/javascripts/web_engine1/application.js -------------------------------------------------------------------------------- /engines/web_engine1/app/assets/javascripts/web_engine1/welcome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine1/app/assets/javascripts/web_engine1/welcome.js -------------------------------------------------------------------------------- /engines/web_engine1/app/assets/stylesheets/web_engine1/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine1/app/assets/stylesheets/web_engine1/application.css -------------------------------------------------------------------------------- /engines/web_engine1/app/assets/stylesheets/web_engine1/welcome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine1/app/assets/stylesheets/web_engine1/welcome.css -------------------------------------------------------------------------------- /engines/web_engine1/app/controllers/web_engine1/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine1/app/controllers/web_engine1/application_controller.rb -------------------------------------------------------------------------------- /engines/web_engine1/app/controllers/web_engine1/welcome_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine1/app/controllers/web_engine1/welcome_controller.rb -------------------------------------------------------------------------------- /engines/web_engine1/app/helpers/web_engine1/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine1/app/helpers/web_engine1/application_helper.rb -------------------------------------------------------------------------------- /engines/web_engine1/app/helpers/web_engine1/welcome_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine1/app/helpers/web_engine1/welcome_helper.rb -------------------------------------------------------------------------------- /engines/web_engine1/app/views/layouts/web_engine1/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine1/app/views/layouts/web_engine1/application.html.erb -------------------------------------------------------------------------------- /engines/web_engine1/app/views/web_engine1/welcome/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine1/app/views/web_engine1/welcome/show.html.erb -------------------------------------------------------------------------------- /engines/web_engine1/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine1/config/routes.rb -------------------------------------------------------------------------------- /engines/web_engine1/lib/tasks/web_engine1_tasks.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine1/lib/tasks/web_engine1_tasks.rake -------------------------------------------------------------------------------- /engines/web_engine1/lib/web_engine1.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine1/lib/web_engine1.rb -------------------------------------------------------------------------------- /engines/web_engine1/lib/web_engine1/engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine1/lib/web_engine1/engine.rb -------------------------------------------------------------------------------- /engines/web_engine1/lib/web_engine1/version.rb: -------------------------------------------------------------------------------- 1 | module WebEngine1 2 | VERSION = "0.0.1" 3 | end 4 | -------------------------------------------------------------------------------- /engines/web_engine1/script/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine1/script/rails -------------------------------------------------------------------------------- /engines/web_engine1/test/dummy/README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine1/test/dummy/README.rdoc -------------------------------------------------------------------------------- /engines/web_engine1/test/dummy/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine1/test/dummy/Rakefile -------------------------------------------------------------------------------- /engines/web_engine1/test/dummy/app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine1/test/dummy/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /engines/web_engine1/test/dummy/app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine1/test/dummy/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /engines/web_engine1/test/dummy/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine1/test/dummy/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /engines/web_engine1/test/dummy/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /engines/web_engine1/test/dummy/app/mailers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /engines/web_engine1/test/dummy/app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /engines/web_engine1/test/dummy/app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine1/test/dummy/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /engines/web_engine1/test/dummy/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine1/test/dummy/config.ru -------------------------------------------------------------------------------- /engines/web_engine1/test/dummy/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine1/test/dummy/config/application.rb -------------------------------------------------------------------------------- /engines/web_engine1/test/dummy/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine1/test/dummy/config/boot.rb -------------------------------------------------------------------------------- /engines/web_engine1/test/dummy/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine1/test/dummy/config/database.yml -------------------------------------------------------------------------------- /engines/web_engine1/test/dummy/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine1/test/dummy/config/environment.rb -------------------------------------------------------------------------------- /engines/web_engine1/test/dummy/config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine1/test/dummy/config/environments/development.rb -------------------------------------------------------------------------------- /engines/web_engine1/test/dummy/config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine1/test/dummy/config/environments/production.rb -------------------------------------------------------------------------------- /engines/web_engine1/test/dummy/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine1/test/dummy/config/environments/test.rb -------------------------------------------------------------------------------- /engines/web_engine1/test/dummy/config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine1/test/dummy/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /engines/web_engine1/test/dummy/config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine1/test/dummy/config/initializers/inflections.rb -------------------------------------------------------------------------------- /engines/web_engine1/test/dummy/config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine1/test/dummy/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /engines/web_engine1/test/dummy/config/initializers/secret_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine1/test/dummy/config/initializers/secret_token.rb -------------------------------------------------------------------------------- /engines/web_engine1/test/dummy/config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine1/test/dummy/config/initializers/session_store.rb -------------------------------------------------------------------------------- /engines/web_engine1/test/dummy/config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine1/test/dummy/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /engines/web_engine1/test/dummy/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine1/test/dummy/config/locales/en.yml -------------------------------------------------------------------------------- /engines/web_engine1/test/dummy/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine1/test/dummy/config/routes.rb -------------------------------------------------------------------------------- /engines/web_engine1/test/dummy/lib/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /engines/web_engine1/test/dummy/log/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /engines/web_engine1/test/dummy/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine1/test/dummy/public/404.html -------------------------------------------------------------------------------- /engines/web_engine1/test/dummy/public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine1/test/dummy/public/422.html -------------------------------------------------------------------------------- /engines/web_engine1/test/dummy/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine1/test/dummy/public/500.html -------------------------------------------------------------------------------- /engines/web_engine1/test/dummy/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /engines/web_engine1/test/dummy/script/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine1/test/dummy/script/rails -------------------------------------------------------------------------------- /engines/web_engine1/test/functional/web_engine1/welcome_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine1/test/functional/web_engine1/welcome_controller_test.rb -------------------------------------------------------------------------------- /engines/web_engine1/test/integration/navigation_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine1/test/integration/navigation_test.rb -------------------------------------------------------------------------------- /engines/web_engine1/test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine1/test/test_helper.rb -------------------------------------------------------------------------------- /engines/web_engine1/test/unit/helpers/web_engine1/welcome_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine1/test/unit/helpers/web_engine1/welcome_helper_test.rb -------------------------------------------------------------------------------- /engines/web_engine1/test/web_engine_1_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine1/test/web_engine_1_test.rb -------------------------------------------------------------------------------- /engines/web_engine1/web_engine1.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine1/web_engine1.iml -------------------------------------------------------------------------------- /engines/web_engine1/web_engine_1.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine1/web_engine_1.gemspec -------------------------------------------------------------------------------- /engines/web_engine2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine2/.gitignore -------------------------------------------------------------------------------- /engines/web_engine2/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine2/Gemfile -------------------------------------------------------------------------------- /engines/web_engine2/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine2/Gemfile.lock -------------------------------------------------------------------------------- /engines/web_engine2/MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine2/MIT-LICENSE -------------------------------------------------------------------------------- /engines/web_engine2/README.rdoc: -------------------------------------------------------------------------------- 1 | = WebEngine2 2 | 3 | This project rocks and uses MIT-LICENSE. -------------------------------------------------------------------------------- /engines/web_engine2/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine2/Rakefile -------------------------------------------------------------------------------- /engines/web_engine2/app/assets/images/web_engine2/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /engines/web_engine2/app/assets/javascripts/web_engine2/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine2/app/assets/javascripts/web_engine2/application.js -------------------------------------------------------------------------------- /engines/web_engine2/app/assets/javascripts/web_engine2/hello_world.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine2/app/assets/javascripts/web_engine2/hello_world.js -------------------------------------------------------------------------------- /engines/web_engine2/app/assets/stylesheets/web_engine2/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine2/app/assets/stylesheets/web_engine2/application.css -------------------------------------------------------------------------------- /engines/web_engine2/app/assets/stylesheets/web_engine2/hello_world.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine2/app/assets/stylesheets/web_engine2/hello_world.css -------------------------------------------------------------------------------- /engines/web_engine2/app/controllers/web_engine2/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine2/app/controllers/web_engine2/application_controller.rb -------------------------------------------------------------------------------- /engines/web_engine2/app/controllers/web_engine2/hello_world_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine2/app/controllers/web_engine2/hello_world_controller.rb -------------------------------------------------------------------------------- /engines/web_engine2/app/helpers/web_engine2/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine2/app/helpers/web_engine2/application_helper.rb -------------------------------------------------------------------------------- /engines/web_engine2/app/helpers/web_engine2/hello_world_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine2/app/helpers/web_engine2/hello_world_helper.rb -------------------------------------------------------------------------------- /engines/web_engine2/app/views/layouts/web_engine2/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine2/app/views/layouts/web_engine2/application.html.erb -------------------------------------------------------------------------------- /engines/web_engine2/app/views/web_engine2/hello_world/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine2/app/views/web_engine2/hello_world/show.html.haml -------------------------------------------------------------------------------- /engines/web_engine2/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine2/config/routes.rb -------------------------------------------------------------------------------- /engines/web_engine2/lib/tasks/web_engine2_tasks.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine2/lib/tasks/web_engine2_tasks.rake -------------------------------------------------------------------------------- /engines/web_engine2/lib/web_engine2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine2/lib/web_engine2.rb -------------------------------------------------------------------------------- /engines/web_engine2/lib/web_engine2/engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine2/lib/web_engine2/engine.rb -------------------------------------------------------------------------------- /engines/web_engine2/lib/web_engine2/version.rb: -------------------------------------------------------------------------------- 1 | module WebEngine2 2 | VERSION = "0.0.1" 3 | end 4 | -------------------------------------------------------------------------------- /engines/web_engine2/script/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine2/script/rails -------------------------------------------------------------------------------- /engines/web_engine2/test/dummy/README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine2/test/dummy/README.rdoc -------------------------------------------------------------------------------- /engines/web_engine2/test/dummy/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine2/test/dummy/Rakefile -------------------------------------------------------------------------------- /engines/web_engine2/test/dummy/app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine2/test/dummy/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /engines/web_engine2/test/dummy/app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine2/test/dummy/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /engines/web_engine2/test/dummy/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine2/test/dummy/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /engines/web_engine2/test/dummy/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /engines/web_engine2/test/dummy/app/mailers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /engines/web_engine2/test/dummy/app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /engines/web_engine2/test/dummy/app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine2/test/dummy/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /engines/web_engine2/test/dummy/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine2/test/dummy/config.ru -------------------------------------------------------------------------------- /engines/web_engine2/test/dummy/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine2/test/dummy/config/application.rb -------------------------------------------------------------------------------- /engines/web_engine2/test/dummy/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine2/test/dummy/config/boot.rb -------------------------------------------------------------------------------- /engines/web_engine2/test/dummy/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine2/test/dummy/config/database.yml -------------------------------------------------------------------------------- /engines/web_engine2/test/dummy/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine2/test/dummy/config/environment.rb -------------------------------------------------------------------------------- /engines/web_engine2/test/dummy/config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine2/test/dummy/config/environments/development.rb -------------------------------------------------------------------------------- /engines/web_engine2/test/dummy/config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine2/test/dummy/config/environments/production.rb -------------------------------------------------------------------------------- /engines/web_engine2/test/dummy/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine2/test/dummy/config/environments/test.rb -------------------------------------------------------------------------------- /engines/web_engine2/test/dummy/config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine2/test/dummy/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /engines/web_engine2/test/dummy/config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine2/test/dummy/config/initializers/inflections.rb -------------------------------------------------------------------------------- /engines/web_engine2/test/dummy/config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine2/test/dummy/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /engines/web_engine2/test/dummy/config/initializers/secret_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine2/test/dummy/config/initializers/secret_token.rb -------------------------------------------------------------------------------- /engines/web_engine2/test/dummy/config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine2/test/dummy/config/initializers/session_store.rb -------------------------------------------------------------------------------- /engines/web_engine2/test/dummy/config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine2/test/dummy/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /engines/web_engine2/test/dummy/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine2/test/dummy/config/locales/en.yml -------------------------------------------------------------------------------- /engines/web_engine2/test/dummy/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine2/test/dummy/config/routes.rb -------------------------------------------------------------------------------- /engines/web_engine2/test/dummy/lib/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /engines/web_engine2/test/dummy/log/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /engines/web_engine2/test/dummy/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine2/test/dummy/public/404.html -------------------------------------------------------------------------------- /engines/web_engine2/test/dummy/public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine2/test/dummy/public/422.html -------------------------------------------------------------------------------- /engines/web_engine2/test/dummy/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine2/test/dummy/public/500.html -------------------------------------------------------------------------------- /engines/web_engine2/test/dummy/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /engines/web_engine2/test/dummy/script/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine2/test/dummy/script/rails -------------------------------------------------------------------------------- /engines/web_engine2/test/functional/web_engine2/hello_world_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine2/test/functional/web_engine2/hello_world_controller_test.rb -------------------------------------------------------------------------------- /engines/web_engine2/test/integration/navigation_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine2/test/integration/navigation_test.rb -------------------------------------------------------------------------------- /engines/web_engine2/test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine2/test/test_helper.rb -------------------------------------------------------------------------------- /engines/web_engine2/test/unit/helpers/web_engine2/hello_world_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine2/test/unit/helpers/web_engine2/hello_world_helper_test.rb -------------------------------------------------------------------------------- /engines/web_engine2/test/web_engine_2_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine2/test/web_engine_2_test.rb -------------------------------------------------------------------------------- /engines/web_engine2/web_engine2.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine2/web_engine2.gemspec -------------------------------------------------------------------------------- /engines/web_engine2/web_engine2.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/engines/web_engine2/web_engine2.iml -------------------------------------------------------------------------------- /lib/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /log/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/public/500.html -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/public/robots.txt -------------------------------------------------------------------------------- /script/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/script/rails -------------------------------------------------------------------------------- /test/fixtures/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/functional/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/functional/landing_page_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/test/functional/landing_page_controller_test.rb -------------------------------------------------------------------------------- /test/integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/performance/browsing_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/test/performance/browsing_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /test/unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shageman/rails_container_and_engines/HEAD/test_all.sh -------------------------------------------------------------------------------- /vendor/assets/javascripts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/plugins/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------