├── .gitignore ├── .yardopts ├── CHANGELOG.md ├── CHANGES_FROM_VERSION_ONE.md ├── CONTRIBUTING.md ├── FUTURE.md ├── Gemfile ├── MIT-LICENSE ├── OVERVIEW.md ├── README.md ├── REFERENCE.md ├── Rakefile ├── lib ├── generators │ └── tabs │ │ ├── USAGE │ │ ├── tabs_generator.rb │ │ └── templates │ │ └── tabulous.rb ├── tabulous.rb └── tabulous │ ├── config.rb │ ├── css_scaffolding.rb │ ├── dsl │ ├── config.rb │ ├── setup.rb │ ├── tab.rb │ └── tabs.rb │ ├── errors.rb │ ├── old_version_checker.rb │ ├── railtie.rb │ ├── renderers │ ├── base_renderer.rb │ ├── bootstrap_navbar_renderer.rb │ ├── bootstrap_pill_renderer.rb │ ├── bootstrap_renderer.rb │ ├── combined_renderer.rb │ ├── default_renderer.rb │ ├── html5_renderer.rb │ └── split_renderer.rb │ ├── rendering_coordinator.rb │ ├── tab.rb │ ├── tabset.rb │ ├── tabsets.rb │ ├── tabulous.rb │ ├── version.rb │ └── view_helpers.rb ├── script ├── create_test_app └── for_all_test_apps ├── spec ├── applications │ ├── README.md │ ├── application_template_helper.rb │ ├── bootstrap │ │ ├── application_template.rb │ │ ├── rails_4-0-5 │ │ │ ├── .gitignore │ │ │ ├── Gemfile │ │ │ ├── README.rdoc │ │ │ ├── Rakefile │ │ │ ├── app │ │ │ │ ├── assets │ │ │ │ │ ├── images │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── javascripts │ │ │ │ │ │ ├── application.js │ │ │ │ │ │ ├── galaxies.js.coffee │ │ │ │ │ │ ├── home.js.coffee │ │ │ │ │ │ ├── no_tabs.js.coffee │ │ │ │ │ │ ├── planets.js.coffee │ │ │ │ │ │ ├── stars.js.coffee │ │ │ │ │ │ └── subtabs.js.coffee │ │ │ │ │ └── stylesheets │ │ │ │ │ │ ├── application.scss │ │ │ │ │ │ ├── galaxies.css.scss │ │ │ │ │ │ ├── home.css.scss │ │ │ │ │ │ ├── no_tabs.css.scss │ │ │ │ │ │ ├── planets.css.scss │ │ │ │ │ │ ├── stars.css.scss │ │ │ │ │ │ └── subtabs.css.scss │ │ │ │ ├── controllers │ │ │ │ │ ├── application_controller.rb │ │ │ │ │ ├── concerns │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── galaxies_controller.rb │ │ │ │ │ ├── home_controller.rb │ │ │ │ │ ├── no_tabs_controller.rb │ │ │ │ │ ├── planets_controller.rb │ │ │ │ │ ├── stars_controller.rb │ │ │ │ │ └── subtabs_controller.rb │ │ │ │ ├── helpers │ │ │ │ │ ├── application_helper.rb │ │ │ │ │ ├── galaxies_helper.rb │ │ │ │ │ ├── home_helper.rb │ │ │ │ │ ├── no_tabs_helper.rb │ │ │ │ │ ├── planets_helper.rb │ │ │ │ │ ├── stars_helper.rb │ │ │ │ │ └── subtabs_helper.rb │ │ │ │ ├── mailers │ │ │ │ │ └── .keep │ │ │ │ ├── models │ │ │ │ │ ├── .keep │ │ │ │ │ ├── concerns │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── galaxy.rb │ │ │ │ │ ├── planet.rb │ │ │ │ │ └── star.rb │ │ │ │ ├── tabs │ │ │ │ │ └── tabulous.rb │ │ │ │ └── views │ │ │ │ │ ├── galaxies │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ ├── home │ │ │ │ │ └── index.html.erb │ │ │ │ │ ├── layouts │ │ │ │ │ └── application.html.erb │ │ │ │ │ ├── no_tabs │ │ │ │ │ └── index.html.erb │ │ │ │ │ ├── planets │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ ├── stars │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ └── subtabs │ │ │ │ │ ├── one.html.erb │ │ │ │ │ ├── three.html.erb │ │ │ │ │ └── two.html.erb │ │ │ ├── bin │ │ │ │ ├── bundle │ │ │ │ ├── rails │ │ │ │ └── rake │ │ │ ├── config.ru │ │ │ ├── config │ │ │ │ ├── application.rb │ │ │ │ ├── boot.rb │ │ │ │ ├── database.yml │ │ │ │ ├── environment.rb │ │ │ │ ├── environments │ │ │ │ │ ├── development.rb │ │ │ │ │ ├── production.rb │ │ │ │ │ └── test.rb │ │ │ │ ├── initializers │ │ │ │ │ ├── backtrace_silencers.rb │ │ │ │ │ ├── filter_parameter_logging.rb │ │ │ │ │ ├── inflections.rb │ │ │ │ │ ├── mime_types.rb │ │ │ │ │ ├── secret_token.rb │ │ │ │ │ ├── session_store.rb │ │ │ │ │ └── wrap_parameters.rb │ │ │ │ ├── locales │ │ │ │ │ └── en.yml │ │ │ │ └── routes.rb │ │ │ ├── db │ │ │ │ ├── migrate │ │ │ │ │ ├── 20140529011418_create_galaxies.rb │ │ │ │ │ ├── 20140529011420_create_planets.rb │ │ │ │ │ └── 20140529011422_create_stars.rb │ │ │ │ ├── schema.rb │ │ │ │ └── seeds.rb │ │ │ ├── lib │ │ │ │ ├── assets │ │ │ │ │ └── .keep │ │ │ │ └── tasks │ │ │ │ │ ├── .keep │ │ │ │ │ └── testing.rake │ │ │ ├── log │ │ │ │ └── .keep │ │ │ ├── public │ │ │ │ ├── 404.html │ │ │ │ ├── 422.html │ │ │ │ ├── 500.html │ │ │ │ ├── favicon.ico │ │ │ │ └── robots.txt │ │ │ ├── spec │ │ │ │ ├── features │ │ │ │ │ └── front_page_spec.rb │ │ │ │ ├── spec_helper.rb │ │ │ │ └── support │ │ │ │ │ ├── should_be_clickable.rb │ │ │ │ │ └── tab_helpers.rb │ │ │ ├── test │ │ │ │ ├── controllers │ │ │ │ │ └── .keep │ │ │ │ ├── fixtures │ │ │ │ │ └── .keep │ │ │ │ ├── helpers │ │ │ │ │ └── .keep │ │ │ │ ├── integration │ │ │ │ │ └── .keep │ │ │ │ ├── mailers │ │ │ │ │ └── .keep │ │ │ │ ├── models │ │ │ │ │ └── .keep │ │ │ │ └── test_helper.rb │ │ │ └── vendor │ │ │ │ └── assets │ │ │ │ ├── javascripts │ │ │ │ └── .keep │ │ │ │ └── stylesheets │ │ │ │ └── .keep │ │ ├── rails_4-1-1 │ │ │ ├── .gitignore │ │ │ ├── Gemfile │ │ │ ├── README.rdoc │ │ │ ├── Rakefile │ │ │ ├── app │ │ │ │ ├── assets │ │ │ │ │ ├── images │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── javascripts │ │ │ │ │ │ ├── application.js │ │ │ │ │ │ ├── galaxies.js.coffee │ │ │ │ │ │ ├── home.js.coffee │ │ │ │ │ │ ├── no_tabs.js.coffee │ │ │ │ │ │ ├── planets.js.coffee │ │ │ │ │ │ ├── stars.js.coffee │ │ │ │ │ │ └── subtabs.js.coffee │ │ │ │ │ └── stylesheets │ │ │ │ │ │ ├── application.scss │ │ │ │ │ │ ├── galaxies.css.scss │ │ │ │ │ │ ├── home.css.scss │ │ │ │ │ │ ├── no_tabs.css.scss │ │ │ │ │ │ ├── planets.css.scss │ │ │ │ │ │ ├── stars.css.scss │ │ │ │ │ │ └── subtabs.css.scss │ │ │ │ ├── controllers │ │ │ │ │ ├── application_controller.rb │ │ │ │ │ ├── concerns │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── galaxies_controller.rb │ │ │ │ │ ├── home_controller.rb │ │ │ │ │ ├── no_tabs_controller.rb │ │ │ │ │ ├── planets_controller.rb │ │ │ │ │ ├── stars_controller.rb │ │ │ │ │ └── subtabs_controller.rb │ │ │ │ ├── helpers │ │ │ │ │ ├── application_helper.rb │ │ │ │ │ ├── galaxies_helper.rb │ │ │ │ │ ├── home_helper.rb │ │ │ │ │ ├── no_tabs_helper.rb │ │ │ │ │ ├── planets_helper.rb │ │ │ │ │ ├── stars_helper.rb │ │ │ │ │ └── subtabs_helper.rb │ │ │ │ ├── mailers │ │ │ │ │ └── .keep │ │ │ │ ├── models │ │ │ │ │ ├── .keep │ │ │ │ │ ├── concerns │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── galaxy.rb │ │ │ │ │ ├── planet.rb │ │ │ │ │ └── star.rb │ │ │ │ ├── tabs │ │ │ │ │ └── tabulous.rb │ │ │ │ └── views │ │ │ │ │ ├── galaxies │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ ├── home │ │ │ │ │ └── index.html.erb │ │ │ │ │ ├── layouts │ │ │ │ │ └── application.html.erb │ │ │ │ │ ├── no_tabs │ │ │ │ │ └── index.html.erb │ │ │ │ │ ├── planets │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ ├── stars │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ └── subtabs │ │ │ │ │ ├── one.html.erb │ │ │ │ │ ├── three.html.erb │ │ │ │ │ └── two.html.erb │ │ │ ├── bin │ │ │ │ ├── bundle │ │ │ │ ├── rails │ │ │ │ ├── rake │ │ │ │ └── spring │ │ │ ├── config.ru │ │ │ ├── config │ │ │ │ ├── application.rb │ │ │ │ ├── boot.rb │ │ │ │ ├── database.yml │ │ │ │ ├── environment.rb │ │ │ │ ├── environments │ │ │ │ │ ├── development.rb │ │ │ │ │ ├── production.rb │ │ │ │ │ └── test.rb │ │ │ │ ├── initializers │ │ │ │ │ ├── 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 │ │ │ │ ├── migrate │ │ │ │ │ ├── 20140529013936_create_galaxies.rb │ │ │ │ │ ├── 20140529013938_create_planets.rb │ │ │ │ │ └── 20140529013940_create_stars.rb │ │ │ │ ├── schema.rb │ │ │ │ └── seeds.rb │ │ │ ├── lib │ │ │ │ ├── assets │ │ │ │ │ └── .keep │ │ │ │ └── tasks │ │ │ │ │ ├── .keep │ │ │ │ │ └── testing.rake │ │ │ ├── log │ │ │ │ └── .keep │ │ │ ├── public │ │ │ │ ├── 404.html │ │ │ │ ├── 422.html │ │ │ │ ├── 500.html │ │ │ │ ├── favicon.ico │ │ │ │ └── robots.txt │ │ │ ├── spec │ │ │ │ ├── features │ │ │ │ │ └── front_page_spec.rb │ │ │ │ ├── spec_helper.rb │ │ │ │ └── support │ │ │ │ │ ├── should_be_clickable.rb │ │ │ │ │ └── tab_helpers.rb │ │ │ ├── test │ │ │ │ ├── controllers │ │ │ │ │ └── .keep │ │ │ │ ├── fixtures │ │ │ │ │ └── .keep │ │ │ │ ├── helpers │ │ │ │ │ └── .keep │ │ │ │ ├── integration │ │ │ │ │ └── .keep │ │ │ │ ├── mailers │ │ │ │ │ └── .keep │ │ │ │ ├── models │ │ │ │ │ └── .keep │ │ │ │ └── test_helper.rb │ │ │ └── vendor │ │ │ │ └── assets │ │ │ │ ├── javascripts │ │ │ │ └── .keep │ │ │ │ └── stylesheets │ │ │ │ └── .keep │ │ ├── rails_4-2-0 │ │ │ ├── .gitignore │ │ │ ├── Gemfile │ │ │ ├── README.rdoc │ │ │ ├── Rakefile │ │ │ ├── app │ │ │ │ ├── assets │ │ │ │ │ ├── images │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── javascripts │ │ │ │ │ │ ├── application.js │ │ │ │ │ │ ├── galaxies.coffee │ │ │ │ │ │ ├── home.coffee │ │ │ │ │ │ ├── no_tabs.coffee │ │ │ │ │ │ ├── planets.coffee │ │ │ │ │ │ ├── stars.coffee │ │ │ │ │ │ └── subtabs.coffee │ │ │ │ │ └── stylesheets │ │ │ │ │ │ ├── application.scss │ │ │ │ │ │ ├── galaxies.scss │ │ │ │ │ │ ├── home.scss │ │ │ │ │ │ ├── no_tabs.scss │ │ │ │ │ │ ├── planets.scss │ │ │ │ │ │ ├── scaffolds.scss │ │ │ │ │ │ ├── stars.scss │ │ │ │ │ │ └── subtabs.scss │ │ │ │ ├── controllers │ │ │ │ │ ├── application_controller.rb │ │ │ │ │ ├── concerns │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── galaxies_controller.rb │ │ │ │ │ ├── home_controller.rb │ │ │ │ │ ├── no_tabs_controller.rb │ │ │ │ │ ├── planets_controller.rb │ │ │ │ │ ├── stars_controller.rb │ │ │ │ │ └── subtabs_controller.rb │ │ │ │ ├── helpers │ │ │ │ │ ├── application_helper.rb │ │ │ │ │ ├── galaxies_helper.rb │ │ │ │ │ ├── home_helper.rb │ │ │ │ │ ├── no_tabs_helper.rb │ │ │ │ │ ├── planets_helper.rb │ │ │ │ │ ├── stars_helper.rb │ │ │ │ │ └── subtabs_helper.rb │ │ │ │ ├── mailers │ │ │ │ │ └── .keep │ │ │ │ ├── models │ │ │ │ │ ├── .keep │ │ │ │ │ ├── concerns │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── galaxy.rb │ │ │ │ │ ├── planet.rb │ │ │ │ │ └── star.rb │ │ │ │ ├── tabs │ │ │ │ │ └── tabulous.rb │ │ │ │ └── views │ │ │ │ │ ├── galaxies │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ ├── home │ │ │ │ │ └── index.html.erb │ │ │ │ │ ├── layouts │ │ │ │ │ └── application.html.erb │ │ │ │ │ ├── no_tabs │ │ │ │ │ └── index.html.erb │ │ │ │ │ ├── planets │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ ├── stars │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ └── subtabs │ │ │ │ │ ├── one.html.erb │ │ │ │ │ ├── three.html.erb │ │ │ │ │ └── two.html.erb │ │ │ ├── bin │ │ │ │ ├── bundle │ │ │ │ ├── rails │ │ │ │ ├── rake │ │ │ │ ├── setup │ │ │ │ └── spring │ │ │ ├── config.ru │ │ │ ├── config │ │ │ │ ├── application.rb │ │ │ │ ├── boot.rb │ │ │ │ ├── database.yml │ │ │ │ ├── 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 │ │ │ │ ├── migrate │ │ │ │ │ ├── 20141222134203_create_galaxies.rb │ │ │ │ │ ├── 20141222134205_create_planets.rb │ │ │ │ │ └── 20141222134207_create_stars.rb │ │ │ │ ├── schema.rb │ │ │ │ └── seeds.rb │ │ │ ├── lib │ │ │ │ ├── assets │ │ │ │ │ └── .keep │ │ │ │ └── tasks │ │ │ │ │ ├── .keep │ │ │ │ │ └── testing.rake │ │ │ ├── log │ │ │ │ └── .keep │ │ │ ├── public │ │ │ │ ├── 404.html │ │ │ │ ├── 422.html │ │ │ │ ├── 500.html │ │ │ │ ├── favicon.ico │ │ │ │ └── robots.txt │ │ │ ├── spec │ │ │ │ ├── features │ │ │ │ │ └── front_page_spec.rb │ │ │ │ ├── spec_helper.rb │ │ │ │ └── support │ │ │ │ │ ├── should_be_clickable.rb │ │ │ │ │ └── tab_helpers.rb │ │ │ ├── test │ │ │ │ ├── controllers │ │ │ │ │ └── .keep │ │ │ │ ├── fixtures │ │ │ │ │ └── .keep │ │ │ │ ├── helpers │ │ │ │ │ └── .keep │ │ │ │ ├── integration │ │ │ │ │ └── .keep │ │ │ │ ├── mailers │ │ │ │ │ └── .keep │ │ │ │ ├── models │ │ │ │ │ └── .keep │ │ │ │ └── test_helper.rb │ │ │ └── vendor │ │ │ │ └── assets │ │ │ │ ├── javascripts │ │ │ │ └── .keep │ │ │ │ └── stylesheets │ │ │ │ └── .keep │ │ ├── rails_5-0-0 │ │ │ ├── .gitignore │ │ │ ├── Gemfile │ │ │ ├── README.md │ │ │ ├── Rakefile │ │ │ ├── app │ │ │ │ ├── assets │ │ │ │ │ ├── config │ │ │ │ │ │ └── manifest.js │ │ │ │ │ ├── images │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── javascripts │ │ │ │ │ │ ├── application.js │ │ │ │ │ │ ├── cable.js │ │ │ │ │ │ ├── channels │ │ │ │ │ │ │ └── .keep │ │ │ │ │ │ ├── galaxies.coffee │ │ │ │ │ │ ├── home.coffee │ │ │ │ │ │ ├── no_tabs.coffee │ │ │ │ │ │ ├── planets.coffee │ │ │ │ │ │ ├── stars.coffee │ │ │ │ │ │ └── subtabs.coffee │ │ │ │ │ └── stylesheets │ │ │ │ │ │ ├── application.scss │ │ │ │ │ │ ├── galaxies.scss │ │ │ │ │ │ ├── home.scss │ │ │ │ │ │ ├── no_tabs.scss │ │ │ │ │ │ ├── planets.scss │ │ │ │ │ │ ├── scaffolds.scss │ │ │ │ │ │ ├── stars.scss │ │ │ │ │ │ └── subtabs.scss │ │ │ │ ├── channels │ │ │ │ │ └── application_cable │ │ │ │ │ │ ├── channel.rb │ │ │ │ │ │ └── connection.rb │ │ │ │ ├── controllers │ │ │ │ │ ├── application_controller.rb │ │ │ │ │ ├── concerns │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── galaxies_controller.rb │ │ │ │ │ ├── home_controller.rb │ │ │ │ │ ├── no_tabs_controller.rb │ │ │ │ │ ├── planets_controller.rb │ │ │ │ │ ├── stars_controller.rb │ │ │ │ │ └── subtabs_controller.rb │ │ │ │ ├── helpers │ │ │ │ │ ├── application_helper.rb │ │ │ │ │ ├── galaxies_helper.rb │ │ │ │ │ ├── home_helper.rb │ │ │ │ │ ├── no_tabs_helper.rb │ │ │ │ │ ├── planets_helper.rb │ │ │ │ │ ├── stars_helper.rb │ │ │ │ │ └── subtabs_helper.rb │ │ │ │ ├── jobs │ │ │ │ │ └── application_job.rb │ │ │ │ ├── mailers │ │ │ │ │ └── application_mailer.rb │ │ │ │ ├── models │ │ │ │ │ ├── application_record.rb │ │ │ │ │ ├── concerns │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── galaxy.rb │ │ │ │ │ ├── planet.rb │ │ │ │ │ └── star.rb │ │ │ │ ├── tabs │ │ │ │ │ └── tabulous.rb │ │ │ │ └── views │ │ │ │ │ ├── galaxies │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── _galaxy.json.jbuilder │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ ├── home │ │ │ │ │ └── index.html.erb │ │ │ │ │ ├── layouts │ │ │ │ │ ├── application.html.erb │ │ │ │ │ ├── mailer.html.erb │ │ │ │ │ └── mailer.text.erb │ │ │ │ │ ├── no_tabs │ │ │ │ │ └── index.html.erb │ │ │ │ │ ├── planets │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── _planet.json.jbuilder │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ ├── stars │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── _star.json.jbuilder │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ └── subtabs │ │ │ │ │ ├── one.html.erb │ │ │ │ │ ├── three.html.erb │ │ │ │ │ └── two.html.erb │ │ │ ├── bin │ │ │ │ ├── bundle │ │ │ │ ├── rails │ │ │ │ ├── rake │ │ │ │ ├── setup │ │ │ │ ├── spring │ │ │ │ └── update │ │ │ ├── config.ru │ │ │ ├── config │ │ │ │ ├── application.rb │ │ │ │ ├── boot.rb │ │ │ │ ├── cable.yml │ │ │ │ ├── database.yml │ │ │ │ ├── environment.rb │ │ │ │ ├── environments │ │ │ │ │ ├── development.rb │ │ │ │ │ ├── production.rb │ │ │ │ │ └── test.rb │ │ │ │ ├── initializers │ │ │ │ │ ├── application_controller_renderer.rb │ │ │ │ │ ├── assets.rb │ │ │ │ │ ├── backtrace_silencers.rb │ │ │ │ │ ├── cookies_serializer.rb │ │ │ │ │ ├── filter_parameter_logging.rb │ │ │ │ │ ├── inflections.rb │ │ │ │ │ ├── mime_types.rb │ │ │ │ │ ├── new_framework_defaults.rb │ │ │ │ │ ├── session_store.rb │ │ │ │ │ └── wrap_parameters.rb │ │ │ │ ├── locales │ │ │ │ │ └── en.yml │ │ │ │ ├── puma.rb │ │ │ │ ├── routes.rb │ │ │ │ ├── secrets.yml │ │ │ │ └── spring.rb │ │ │ ├── db │ │ │ │ ├── migrate │ │ │ │ │ ├── 20160806180834_create_galaxies.rb │ │ │ │ │ ├── 20160806180836_create_planets.rb │ │ │ │ │ └── 20160806180838_create_stars.rb │ │ │ │ ├── schema.rb │ │ │ │ └── seeds.rb │ │ │ ├── lib │ │ │ │ ├── assets │ │ │ │ │ └── .keep │ │ │ │ └── tasks │ │ │ │ │ ├── .keep │ │ │ │ │ └── testing.rake │ │ │ ├── log │ │ │ │ └── .keep │ │ │ ├── public │ │ │ │ ├── 404.html │ │ │ │ ├── 422.html │ │ │ │ ├── 500.html │ │ │ │ ├── apple-touch-icon-precomposed.png │ │ │ │ ├── apple-touch-icon.png │ │ │ │ ├── favicon.ico │ │ │ │ └── robots.txt │ │ │ ├── spec │ │ │ │ ├── features │ │ │ │ │ └── front_page_spec.rb │ │ │ │ ├── spec_helper.rb │ │ │ │ └── support │ │ │ │ │ ├── should_be_clickable.rb │ │ │ │ │ └── tab_helpers.rb │ │ │ ├── test │ │ │ │ ├── controllers │ │ │ │ │ └── .keep │ │ │ │ ├── fixtures │ │ │ │ │ ├── .keep │ │ │ │ │ └── files │ │ │ │ │ │ └── .keep │ │ │ │ ├── helpers │ │ │ │ │ └── .keep │ │ │ │ ├── integration │ │ │ │ │ └── .keep │ │ │ │ ├── mailers │ │ │ │ │ └── .keep │ │ │ │ ├── models │ │ │ │ │ └── .keep │ │ │ │ └── test_helper.rb │ │ │ ├── tmp │ │ │ │ └── .keep │ │ │ └── vendor │ │ │ │ └── assets │ │ │ │ ├── javascripts │ │ │ │ └── .keep │ │ │ │ └── stylesheets │ │ │ │ └── .keep │ │ └── shared │ │ │ └── app │ │ │ ├── assets │ │ │ ├── javascripts │ │ │ │ └── application.js │ │ │ └── stylesheets │ │ │ │ └── application.scss │ │ │ └── tabs │ │ │ └── tabulous.rb │ ├── custom_renderer │ │ ├── application_template.rb │ │ ├── rails_4-0-5 │ │ │ ├── .gitignore │ │ │ ├── Gemfile │ │ │ ├── README.rdoc │ │ │ ├── Rakefile │ │ │ ├── app │ │ │ │ ├── assets │ │ │ │ │ ├── images │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── javascripts │ │ │ │ │ │ ├── application.js │ │ │ │ │ │ ├── galaxies.js.coffee │ │ │ │ │ │ ├── home.js.coffee │ │ │ │ │ │ ├── planets.js.coffee │ │ │ │ │ │ └── stars.js.coffee │ │ │ │ │ └── stylesheets │ │ │ │ │ │ ├── application.css │ │ │ │ │ │ ├── galaxies.css.scss │ │ │ │ │ │ ├── home.css.scss │ │ │ │ │ │ ├── planets.css.scss │ │ │ │ │ │ ├── scaffolds.css.scss │ │ │ │ │ │ └── stars.css.scss │ │ │ │ ├── controllers │ │ │ │ │ ├── application_controller.rb │ │ │ │ │ ├── concerns │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── galaxies_controller.rb │ │ │ │ │ ├── home_controller.rb │ │ │ │ │ ├── planets_controller.rb │ │ │ │ │ └── stars_controller.rb │ │ │ │ ├── helpers │ │ │ │ │ ├── application_helper.rb │ │ │ │ │ ├── galaxies_helper.rb │ │ │ │ │ ├── home_helper.rb │ │ │ │ │ ├── planets_helper.rb │ │ │ │ │ └── stars_helper.rb │ │ │ │ ├── mailers │ │ │ │ │ └── .keep │ │ │ │ ├── models │ │ │ │ │ ├── .keep │ │ │ │ │ ├── concerns │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── galaxy.rb │ │ │ │ │ ├── planet.rb │ │ │ │ │ └── star.rb │ │ │ │ ├── tabs │ │ │ │ │ ├── custom_renderer.rb │ │ │ │ │ └── tabulous.rb │ │ │ │ └── views │ │ │ │ │ ├── galaxies │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ ├── home │ │ │ │ │ └── index.html.erb │ │ │ │ │ ├── layouts │ │ │ │ │ └── application.html.erb │ │ │ │ │ ├── planets │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ └── stars │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ ├── bin │ │ │ │ ├── bundle │ │ │ │ ├── rails │ │ │ │ └── rake │ │ │ ├── config.ru │ │ │ ├── config │ │ │ │ ├── application.rb │ │ │ │ ├── boot.rb │ │ │ │ ├── database.yml │ │ │ │ ├── environment.rb │ │ │ │ ├── environments │ │ │ │ │ ├── development.rb │ │ │ │ │ ├── production.rb │ │ │ │ │ └── test.rb │ │ │ │ ├── initializers │ │ │ │ │ ├── backtrace_silencers.rb │ │ │ │ │ ├── filter_parameter_logging.rb │ │ │ │ │ ├── inflections.rb │ │ │ │ │ ├── mime_types.rb │ │ │ │ │ ├── secret_token.rb │ │ │ │ │ ├── session_store.rb │ │ │ │ │ └── wrap_parameters.rb │ │ │ │ ├── locales │ │ │ │ │ └── en.yml │ │ │ │ └── routes.rb │ │ │ ├── db │ │ │ │ ├── migrate │ │ │ │ │ ├── 20140529011614_create_galaxies.rb │ │ │ │ │ ├── 20140529011616_create_planets.rb │ │ │ │ │ └── 20140529011618_create_stars.rb │ │ │ │ ├── schema.rb │ │ │ │ └── seeds.rb │ │ │ ├── lib │ │ │ │ ├── assets │ │ │ │ │ └── .keep │ │ │ │ └── tasks │ │ │ │ │ ├── .keep │ │ │ │ │ └── testing.rake │ │ │ ├── log │ │ │ │ └── .keep │ │ │ ├── public │ │ │ │ ├── 404.html │ │ │ │ ├── 422.html │ │ │ │ ├── 500.html │ │ │ │ ├── favicon.ico │ │ │ │ └── robots.txt │ │ │ ├── spec │ │ │ │ ├── features │ │ │ │ │ ├── custom_renderer_spec.rb │ │ │ │ │ └── front_page_spec.rb │ │ │ │ ├── spec_helper.rb │ │ │ │ └── support │ │ │ │ │ ├── should_be_clickable.rb │ │ │ │ │ └── tab_helpers.rb │ │ │ ├── test │ │ │ │ ├── controllers │ │ │ │ │ └── .keep │ │ │ │ ├── fixtures │ │ │ │ │ └── .keep │ │ │ │ ├── helpers │ │ │ │ │ └── .keep │ │ │ │ ├── integration │ │ │ │ │ └── .keep │ │ │ │ ├── mailers │ │ │ │ │ └── .keep │ │ │ │ ├── models │ │ │ │ │ └── .keep │ │ │ │ └── test_helper.rb │ │ │ └── vendor │ │ │ │ └── assets │ │ │ │ ├── javascripts │ │ │ │ └── .keep │ │ │ │ └── stylesheets │ │ │ │ └── .keep │ │ ├── rails_4-1-1 │ │ │ ├── .gitignore │ │ │ ├── Gemfile │ │ │ ├── README.rdoc │ │ │ ├── Rakefile │ │ │ ├── app │ │ │ │ ├── assets │ │ │ │ │ ├── images │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── javascripts │ │ │ │ │ │ ├── application.js │ │ │ │ │ │ ├── galaxies.js.coffee │ │ │ │ │ │ ├── home.js.coffee │ │ │ │ │ │ ├── planets.js.coffee │ │ │ │ │ │ └── stars.js.coffee │ │ │ │ │ └── stylesheets │ │ │ │ │ │ ├── application.css │ │ │ │ │ │ ├── galaxies.css.scss │ │ │ │ │ │ ├── home.css.scss │ │ │ │ │ │ ├── planets.css.scss │ │ │ │ │ │ ├── scaffolds.css.scss │ │ │ │ │ │ └── stars.css.scss │ │ │ │ ├── controllers │ │ │ │ │ ├── application_controller.rb │ │ │ │ │ ├── concerns │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── galaxies_controller.rb │ │ │ │ │ ├── home_controller.rb │ │ │ │ │ ├── planets_controller.rb │ │ │ │ │ └── stars_controller.rb │ │ │ │ ├── helpers │ │ │ │ │ ├── application_helper.rb │ │ │ │ │ ├── galaxies_helper.rb │ │ │ │ │ ├── home_helper.rb │ │ │ │ │ ├── planets_helper.rb │ │ │ │ │ └── stars_helper.rb │ │ │ │ ├── mailers │ │ │ │ │ └── .keep │ │ │ │ ├── models │ │ │ │ │ ├── .keep │ │ │ │ │ ├── concerns │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── galaxy.rb │ │ │ │ │ ├── planet.rb │ │ │ │ │ └── star.rb │ │ │ │ ├── tabs │ │ │ │ │ ├── custom_renderer.rb │ │ │ │ │ └── tabulous.rb │ │ │ │ └── views │ │ │ │ │ ├── galaxies │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ ├── home │ │ │ │ │ └── index.html.erb │ │ │ │ │ ├── layouts │ │ │ │ │ └── application.html.erb │ │ │ │ │ ├── planets │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ └── stars │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ ├── bin │ │ │ │ ├── bundle │ │ │ │ ├── rails │ │ │ │ ├── rake │ │ │ │ └── spring │ │ │ ├── config.ru │ │ │ ├── config │ │ │ │ ├── application.rb │ │ │ │ ├── boot.rb │ │ │ │ ├── database.yml │ │ │ │ ├── environment.rb │ │ │ │ ├── environments │ │ │ │ │ ├── development.rb │ │ │ │ │ ├── production.rb │ │ │ │ │ └── test.rb │ │ │ │ ├── initializers │ │ │ │ │ ├── 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 │ │ │ │ ├── migrate │ │ │ │ │ ├── 20140529014353_create_galaxies.rb │ │ │ │ │ ├── 20140529014356_create_planets.rb │ │ │ │ │ └── 20140529014358_create_stars.rb │ │ │ │ ├── schema.rb │ │ │ │ └── seeds.rb │ │ │ ├── lib │ │ │ │ ├── assets │ │ │ │ │ └── .keep │ │ │ │ └── tasks │ │ │ │ │ ├── .keep │ │ │ │ │ └── testing.rake │ │ │ ├── log │ │ │ │ └── .keep │ │ │ ├── public │ │ │ │ ├── 404.html │ │ │ │ ├── 422.html │ │ │ │ ├── 500.html │ │ │ │ ├── favicon.ico │ │ │ │ └── robots.txt │ │ │ ├── spec │ │ │ │ ├── features │ │ │ │ │ ├── custom_renderer_spec.rb │ │ │ │ │ └── front_page_spec.rb │ │ │ │ ├── spec_helper.rb │ │ │ │ └── support │ │ │ │ │ ├── should_be_clickable.rb │ │ │ │ │ └── tab_helpers.rb │ │ │ ├── test │ │ │ │ ├── controllers │ │ │ │ │ └── .keep │ │ │ │ ├── fixtures │ │ │ │ │ └── .keep │ │ │ │ ├── helpers │ │ │ │ │ └── .keep │ │ │ │ ├── integration │ │ │ │ │ └── .keep │ │ │ │ ├── mailers │ │ │ │ │ └── .keep │ │ │ │ ├── models │ │ │ │ │ └── .keep │ │ │ │ └── test_helper.rb │ │ │ └── vendor │ │ │ │ └── assets │ │ │ │ ├── javascripts │ │ │ │ └── .keep │ │ │ │ └── stylesheets │ │ │ │ └── .keep │ │ ├── rails_4-2-0 │ │ │ ├── .gitignore │ │ │ ├── Gemfile │ │ │ ├── README.rdoc │ │ │ ├── Rakefile │ │ │ ├── app │ │ │ │ ├── assets │ │ │ │ │ ├── images │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── javascripts │ │ │ │ │ │ ├── application.js │ │ │ │ │ │ ├── galaxies.coffee │ │ │ │ │ │ ├── home.coffee │ │ │ │ │ │ ├── planets.coffee │ │ │ │ │ │ └── stars.coffee │ │ │ │ │ └── stylesheets │ │ │ │ │ │ ├── application.css │ │ │ │ │ │ ├── galaxies.scss │ │ │ │ │ │ ├── home.scss │ │ │ │ │ │ ├── planets.scss │ │ │ │ │ │ ├── scaffolds.scss │ │ │ │ │ │ └── stars.scss │ │ │ │ ├── controllers │ │ │ │ │ ├── application_controller.rb │ │ │ │ │ ├── concerns │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── galaxies_controller.rb │ │ │ │ │ ├── home_controller.rb │ │ │ │ │ ├── planets_controller.rb │ │ │ │ │ └── stars_controller.rb │ │ │ │ ├── helpers │ │ │ │ │ ├── application_helper.rb │ │ │ │ │ ├── galaxies_helper.rb │ │ │ │ │ ├── home_helper.rb │ │ │ │ │ ├── planets_helper.rb │ │ │ │ │ └── stars_helper.rb │ │ │ │ ├── mailers │ │ │ │ │ └── .keep │ │ │ │ ├── models │ │ │ │ │ ├── .keep │ │ │ │ │ ├── concerns │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── galaxy.rb │ │ │ │ │ ├── planet.rb │ │ │ │ │ └── star.rb │ │ │ │ ├── tabs │ │ │ │ │ ├── custom_renderer.rb │ │ │ │ │ └── tabulous.rb │ │ │ │ └── views │ │ │ │ │ ├── galaxies │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ ├── home │ │ │ │ │ └── index.html.erb │ │ │ │ │ ├── layouts │ │ │ │ │ └── application.html.erb │ │ │ │ │ ├── planets │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ └── stars │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ ├── bin │ │ │ │ ├── bundle │ │ │ │ ├── rails │ │ │ │ ├── rake │ │ │ │ ├── setup │ │ │ │ └── spring │ │ │ ├── config.ru │ │ │ ├── config │ │ │ │ ├── application.rb │ │ │ │ ├── boot.rb │ │ │ │ ├── database.yml │ │ │ │ ├── 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 │ │ │ │ ├── migrate │ │ │ │ │ ├── 20141222134851_create_galaxies.rb │ │ │ │ │ ├── 20141222134853_create_planets.rb │ │ │ │ │ └── 20141222134855_create_stars.rb │ │ │ │ ├── schema.rb │ │ │ │ └── seeds.rb │ │ │ ├── lib │ │ │ │ ├── assets │ │ │ │ │ └── .keep │ │ │ │ └── tasks │ │ │ │ │ ├── .keep │ │ │ │ │ └── testing.rake │ │ │ ├── log │ │ │ │ └── .keep │ │ │ ├── public │ │ │ │ ├── 404.html │ │ │ │ ├── 422.html │ │ │ │ ├── 500.html │ │ │ │ ├── favicon.ico │ │ │ │ └── robots.txt │ │ │ ├── spec │ │ │ │ ├── features │ │ │ │ │ ├── custom_renderer_spec.rb │ │ │ │ │ └── front_page_spec.rb │ │ │ │ ├── spec_helper.rb │ │ │ │ └── support │ │ │ │ │ ├── should_be_clickable.rb │ │ │ │ │ └── tab_helpers.rb │ │ │ ├── test │ │ │ │ ├── controllers │ │ │ │ │ └── .keep │ │ │ │ ├── fixtures │ │ │ │ │ └── .keep │ │ │ │ ├── helpers │ │ │ │ │ └── .keep │ │ │ │ ├── integration │ │ │ │ │ └── .keep │ │ │ │ ├── mailers │ │ │ │ │ └── .keep │ │ │ │ ├── models │ │ │ │ │ └── .keep │ │ │ │ └── test_helper.rb │ │ │ └── vendor │ │ │ │ └── assets │ │ │ │ ├── javascripts │ │ │ │ └── .keep │ │ │ │ └── stylesheets │ │ │ │ └── .keep │ │ ├── rails_5-0-0 │ │ │ ├── .gitignore │ │ │ ├── Gemfile │ │ │ ├── README.md │ │ │ ├── Rakefile │ │ │ ├── app │ │ │ │ ├── assets │ │ │ │ │ ├── config │ │ │ │ │ │ └── manifest.js │ │ │ │ │ ├── images │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── javascripts │ │ │ │ │ │ ├── application.js │ │ │ │ │ │ ├── cable.js │ │ │ │ │ │ ├── channels │ │ │ │ │ │ │ └── .keep │ │ │ │ │ │ ├── galaxies.coffee │ │ │ │ │ │ ├── home.coffee │ │ │ │ │ │ ├── planets.coffee │ │ │ │ │ │ └── stars.coffee │ │ │ │ │ └── stylesheets │ │ │ │ │ │ ├── application.css │ │ │ │ │ │ ├── galaxies.scss │ │ │ │ │ │ ├── home.scss │ │ │ │ │ │ ├── planets.scss │ │ │ │ │ │ ├── scaffolds.scss │ │ │ │ │ │ └── stars.scss │ │ │ │ ├── channels │ │ │ │ │ └── application_cable │ │ │ │ │ │ ├── channel.rb │ │ │ │ │ │ └── connection.rb │ │ │ │ ├── controllers │ │ │ │ │ ├── application_controller.rb │ │ │ │ │ ├── concerns │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── galaxies_controller.rb │ │ │ │ │ ├── home_controller.rb │ │ │ │ │ ├── planets_controller.rb │ │ │ │ │ └── stars_controller.rb │ │ │ │ ├── helpers │ │ │ │ │ ├── application_helper.rb │ │ │ │ │ ├── galaxies_helper.rb │ │ │ │ │ ├── home_helper.rb │ │ │ │ │ ├── planets_helper.rb │ │ │ │ │ └── stars_helper.rb │ │ │ │ ├── jobs │ │ │ │ │ └── application_job.rb │ │ │ │ ├── mailers │ │ │ │ │ └── application_mailer.rb │ │ │ │ ├── models │ │ │ │ │ ├── application_record.rb │ │ │ │ │ ├── concerns │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── galaxy.rb │ │ │ │ │ ├── planet.rb │ │ │ │ │ └── star.rb │ │ │ │ ├── tabs │ │ │ │ │ ├── custom_renderer.rb │ │ │ │ │ └── tabulous.rb │ │ │ │ └── views │ │ │ │ │ ├── galaxies │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── _galaxy.json.jbuilder │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ ├── home │ │ │ │ │ └── index.html.erb │ │ │ │ │ ├── layouts │ │ │ │ │ ├── application.html.erb │ │ │ │ │ ├── mailer.html.erb │ │ │ │ │ └── mailer.text.erb │ │ │ │ │ ├── planets │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── _planet.json.jbuilder │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ └── stars │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── _star.json.jbuilder │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ ├── bin │ │ │ │ ├── bundle │ │ │ │ ├── rails │ │ │ │ ├── rake │ │ │ │ ├── setup │ │ │ │ ├── spring │ │ │ │ └── update │ │ │ ├── config.ru │ │ │ ├── config │ │ │ │ ├── application.rb │ │ │ │ ├── boot.rb │ │ │ │ ├── cable.yml │ │ │ │ ├── database.yml │ │ │ │ ├── environment.rb │ │ │ │ ├── environments │ │ │ │ │ ├── development.rb │ │ │ │ │ ├── production.rb │ │ │ │ │ └── test.rb │ │ │ │ ├── initializers │ │ │ │ │ ├── application_controller_renderer.rb │ │ │ │ │ ├── assets.rb │ │ │ │ │ ├── backtrace_silencers.rb │ │ │ │ │ ├── cookies_serializer.rb │ │ │ │ │ ├── filter_parameter_logging.rb │ │ │ │ │ ├── inflections.rb │ │ │ │ │ ├── mime_types.rb │ │ │ │ │ ├── new_framework_defaults.rb │ │ │ │ │ ├── session_store.rb │ │ │ │ │ └── wrap_parameters.rb │ │ │ │ ├── locales │ │ │ │ │ └── en.yml │ │ │ │ ├── puma.rb │ │ │ │ ├── routes.rb │ │ │ │ ├── secrets.yml │ │ │ │ └── spring.rb │ │ │ ├── db │ │ │ │ ├── migrate │ │ │ │ │ ├── 20160806174141_create_galaxies.rb │ │ │ │ │ ├── 20160806174143_create_planets.rb │ │ │ │ │ └── 20160806174146_create_stars.rb │ │ │ │ ├── schema.rb │ │ │ │ └── seeds.rb │ │ │ ├── lib │ │ │ │ ├── assets │ │ │ │ │ └── .keep │ │ │ │ └── tasks │ │ │ │ │ ├── .keep │ │ │ │ │ └── testing.rake │ │ │ ├── log │ │ │ │ └── .keep │ │ │ ├── public │ │ │ │ ├── 404.html │ │ │ │ ├── 422.html │ │ │ │ ├── 500.html │ │ │ │ ├── apple-touch-icon-precomposed.png │ │ │ │ ├── apple-touch-icon.png │ │ │ │ ├── favicon.ico │ │ │ │ └── robots.txt │ │ │ ├── spec │ │ │ │ ├── features │ │ │ │ │ ├── custom_renderer_spec.rb │ │ │ │ │ └── front_page_spec.rb │ │ │ │ ├── spec_helper.rb │ │ │ │ └── support │ │ │ │ │ ├── should_be_clickable.rb │ │ │ │ │ └── tab_helpers.rb │ │ │ ├── test │ │ │ │ ├── controllers │ │ │ │ │ └── .keep │ │ │ │ ├── fixtures │ │ │ │ │ ├── .keep │ │ │ │ │ └── files │ │ │ │ │ │ └── .keep │ │ │ │ ├── helpers │ │ │ │ │ └── .keep │ │ │ │ ├── integration │ │ │ │ │ └── .keep │ │ │ │ ├── mailers │ │ │ │ │ └── .keep │ │ │ │ ├── models │ │ │ │ │ └── .keep │ │ │ │ └── test_helper.rb │ │ │ ├── tmp │ │ │ │ └── .keep │ │ │ └── vendor │ │ │ │ └── assets │ │ │ │ ├── javascripts │ │ │ │ └── .keep │ │ │ │ └── stylesheets │ │ │ │ └── .keep │ │ └── shared │ │ │ ├── app │ │ │ └── tabs │ │ │ │ ├── custom_renderer.rb │ │ │ │ └── tabulous.rb │ │ │ └── spec │ │ │ └── features │ │ │ └── custom_renderer_spec.rb │ ├── main │ │ ├── application_template.rb │ │ ├── rails_4-0-5 │ │ │ ├── .gitignore │ │ │ ├── Gemfile │ │ │ ├── README.rdoc │ │ │ ├── Rakefile │ │ │ ├── app │ │ │ │ ├── assets │ │ │ │ │ ├── images │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── javascripts │ │ │ │ │ │ ├── application.js │ │ │ │ │ │ ├── galaxies.js.coffee │ │ │ │ │ │ ├── home.js.coffee │ │ │ │ │ │ ├── no_tabs.js.coffee │ │ │ │ │ │ ├── planets.js.coffee │ │ │ │ │ │ ├── stars.js.coffee │ │ │ │ │ │ └── subtabs.js.coffee │ │ │ │ │ └── stylesheets │ │ │ │ │ │ ├── application.css │ │ │ │ │ │ ├── galaxies.css.scss │ │ │ │ │ │ ├── home.css.scss │ │ │ │ │ │ ├── no_tabs.css.scss │ │ │ │ │ │ ├── planets.css.scss │ │ │ │ │ │ ├── scaffolds.css.scss │ │ │ │ │ │ ├── stars.css.scss │ │ │ │ │ │ └── subtabs.css.scss │ │ │ │ ├── controllers │ │ │ │ │ ├── application_controller.rb │ │ │ │ │ ├── concerns │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── galaxies_controller.rb │ │ │ │ │ ├── home_controller.rb │ │ │ │ │ ├── no_tabs_controller.rb │ │ │ │ │ ├── planets_controller.rb │ │ │ │ │ ├── stars_controller.rb │ │ │ │ │ └── subtabs_controller.rb │ │ │ │ ├── helpers │ │ │ │ │ ├── application_helper.rb │ │ │ │ │ ├── galaxies_helper.rb │ │ │ │ │ ├── home_helper.rb │ │ │ │ │ ├── no_tabs_helper.rb │ │ │ │ │ ├── planets_helper.rb │ │ │ │ │ ├── stars_helper.rb │ │ │ │ │ └── subtabs_helper.rb │ │ │ │ ├── mailers │ │ │ │ │ └── .keep │ │ │ │ ├── models │ │ │ │ │ ├── .keep │ │ │ │ │ ├── concerns │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── galaxy.rb │ │ │ │ │ ├── planet.rb │ │ │ │ │ └── star.rb │ │ │ │ ├── tabs │ │ │ │ │ └── tabulous.rb │ │ │ │ └── views │ │ │ │ │ ├── galaxies │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ ├── home │ │ │ │ │ └── index.html.erb │ │ │ │ │ ├── layouts │ │ │ │ │ └── application.html.erb │ │ │ │ │ ├── no_tabs │ │ │ │ │ └── index.html.erb │ │ │ │ │ ├── planets │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ ├── stars │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ └── subtabs │ │ │ │ │ ├── one.html.erb │ │ │ │ │ ├── three.html.erb │ │ │ │ │ └── two.html.erb │ │ │ ├── bin │ │ │ │ ├── bundle │ │ │ │ ├── rails │ │ │ │ └── rake │ │ │ ├── config.ru │ │ │ ├── config │ │ │ │ ├── application.rb │ │ │ │ ├── boot.rb │ │ │ │ ├── database.yml │ │ │ │ ├── environment.rb │ │ │ │ ├── environments │ │ │ │ │ ├── development.rb │ │ │ │ │ ├── production.rb │ │ │ │ │ └── test.rb │ │ │ │ ├── initializers │ │ │ │ │ ├── backtrace_silencers.rb │ │ │ │ │ ├── filter_parameter_logging.rb │ │ │ │ │ ├── inflections.rb │ │ │ │ │ ├── mime_types.rb │ │ │ │ │ ├── secret_token.rb │ │ │ │ │ ├── session_store.rb │ │ │ │ │ └── wrap_parameters.rb │ │ │ │ ├── locales │ │ │ │ │ └── en.yml │ │ │ │ └── routes.rb │ │ │ ├── db │ │ │ │ ├── migrate │ │ │ │ │ ├── 20140529011752_create_galaxies.rb │ │ │ │ │ ├── 20140529011754_create_planets.rb │ │ │ │ │ └── 20140529011755_create_stars.rb │ │ │ │ ├── schema.rb │ │ │ │ └── seeds.rb │ │ │ ├── lib │ │ │ │ ├── assets │ │ │ │ │ └── .keep │ │ │ │ └── tasks │ │ │ │ │ ├── .keep │ │ │ │ │ └── testing.rake │ │ │ ├── log │ │ │ │ └── .keep │ │ │ ├── public │ │ │ │ ├── 404.html │ │ │ │ ├── 422.html │ │ │ │ ├── 500.html │ │ │ │ ├── favicon.ico │ │ │ │ └── robots.txt │ │ │ ├── spec │ │ │ │ ├── features │ │ │ │ │ ├── css_scaffolding_spec.rb │ │ │ │ │ ├── customize_active_tab_clickable_spec.rb │ │ │ │ │ ├── customize_render_subtabs_when_empty_spec.rb │ │ │ │ │ ├── customize_renderer_spec.rb │ │ │ │ │ ├── customize_when_action_has_no_tab_spec.rb │ │ │ │ │ ├── front_page_spec.rb │ │ │ │ │ ├── tab_active_when_spec.rb │ │ │ │ │ ├── tab_dsl_errors_spec.rb │ │ │ │ │ ├── tab_enabled_when_spec.rb │ │ │ │ │ ├── tab_link_path_spec.rb │ │ │ │ │ ├── tab_order_spec.rb │ │ │ │ │ ├── tab_text_spec.rb │ │ │ │ │ ├── tab_visible_when_spec.rb │ │ │ │ │ └── tabs_dsl_errors_spec.rb │ │ │ │ ├── spec_helper.rb │ │ │ │ └── support │ │ │ │ │ ├── should_be_clickable.rb │ │ │ │ │ └── tab_helpers.rb │ │ │ ├── test │ │ │ │ ├── controllers │ │ │ │ │ └── .keep │ │ │ │ ├── fixtures │ │ │ │ │ └── .keep │ │ │ │ ├── helpers │ │ │ │ │ └── .keep │ │ │ │ ├── integration │ │ │ │ │ └── .keep │ │ │ │ ├── mailers │ │ │ │ │ └── .keep │ │ │ │ ├── models │ │ │ │ │ └── .keep │ │ │ │ └── test_helper.rb │ │ │ └── vendor │ │ │ │ └── assets │ │ │ │ ├── javascripts │ │ │ │ └── .keep │ │ │ │ └── stylesheets │ │ │ │ └── .keep │ │ ├── rails_4-1-1 │ │ │ ├── .gitignore │ │ │ ├── Gemfile │ │ │ ├── README.rdoc │ │ │ ├── Rakefile │ │ │ ├── app │ │ │ │ ├── assets │ │ │ │ │ ├── images │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── javascripts │ │ │ │ │ │ ├── application.js │ │ │ │ │ │ ├── galaxies.js.coffee │ │ │ │ │ │ ├── home.js.coffee │ │ │ │ │ │ ├── no_tabs.js.coffee │ │ │ │ │ │ ├── planets.js.coffee │ │ │ │ │ │ ├── stars.js.coffee │ │ │ │ │ │ └── subtabs.js.coffee │ │ │ │ │ └── stylesheets │ │ │ │ │ │ ├── application.css │ │ │ │ │ │ ├── galaxies.css.scss │ │ │ │ │ │ ├── home.css.scss │ │ │ │ │ │ ├── no_tabs.css.scss │ │ │ │ │ │ ├── planets.css.scss │ │ │ │ │ │ ├── scaffolds.css.scss │ │ │ │ │ │ ├── stars.css.scss │ │ │ │ │ │ └── subtabs.css.scss │ │ │ │ ├── controllers │ │ │ │ │ ├── application_controller.rb │ │ │ │ │ ├── concerns │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── galaxies_controller.rb │ │ │ │ │ ├── home_controller.rb │ │ │ │ │ ├── no_tabs_controller.rb │ │ │ │ │ ├── planets_controller.rb │ │ │ │ │ ├── stars_controller.rb │ │ │ │ │ └── subtabs_controller.rb │ │ │ │ ├── helpers │ │ │ │ │ ├── application_helper.rb │ │ │ │ │ ├── galaxies_helper.rb │ │ │ │ │ ├── home_helper.rb │ │ │ │ │ ├── no_tabs_helper.rb │ │ │ │ │ ├── planets_helper.rb │ │ │ │ │ ├── stars_helper.rb │ │ │ │ │ └── subtabs_helper.rb │ │ │ │ ├── mailers │ │ │ │ │ └── .keep │ │ │ │ ├── models │ │ │ │ │ ├── .keep │ │ │ │ │ ├── concerns │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── galaxy.rb │ │ │ │ │ ├── planet.rb │ │ │ │ │ └── star.rb │ │ │ │ ├── tabs │ │ │ │ │ └── tabulous.rb │ │ │ │ └── views │ │ │ │ │ ├── galaxies │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ ├── home │ │ │ │ │ └── index.html.erb │ │ │ │ │ ├── layouts │ │ │ │ │ └── application.html.erb │ │ │ │ │ ├── no_tabs │ │ │ │ │ └── index.html.erb │ │ │ │ │ ├── planets │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ ├── stars │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ └── subtabs │ │ │ │ │ ├── one.html.erb │ │ │ │ │ ├── three.html.erb │ │ │ │ │ └── two.html.erb │ │ │ ├── bin │ │ │ │ ├── bundle │ │ │ │ ├── rails │ │ │ │ ├── rake │ │ │ │ └── spring │ │ │ ├── config.ru │ │ │ ├── config │ │ │ │ ├── application.rb │ │ │ │ ├── boot.rb │ │ │ │ ├── database.yml │ │ │ │ ├── environment.rb │ │ │ │ ├── environments │ │ │ │ │ ├── development.rb │ │ │ │ │ ├── production.rb │ │ │ │ │ └── test.rb │ │ │ │ ├── initializers │ │ │ │ │ ├── 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 │ │ │ │ ├── migrate │ │ │ │ │ ├── 20140529014222_create_galaxies.rb │ │ │ │ │ ├── 20140529014225_create_planets.rb │ │ │ │ │ └── 20140529014227_create_stars.rb │ │ │ │ ├── schema.rb │ │ │ │ └── seeds.rb │ │ │ ├── lib │ │ │ │ ├── assets │ │ │ │ │ └── .keep │ │ │ │ └── tasks │ │ │ │ │ ├── .keep │ │ │ │ │ └── testing.rake │ │ │ ├── log │ │ │ │ └── .keep │ │ │ ├── public │ │ │ │ ├── 404.html │ │ │ │ ├── 422.html │ │ │ │ ├── 500.html │ │ │ │ ├── favicon.ico │ │ │ │ └── robots.txt │ │ │ ├── spec │ │ │ │ ├── features │ │ │ │ │ ├── css_scaffolding_spec.rb │ │ │ │ │ ├── customize_active_tab_clickable_spec.rb │ │ │ │ │ ├── customize_render_subtabs_when_empty_spec.rb │ │ │ │ │ ├── customize_renderer_spec.rb │ │ │ │ │ ├── customize_when_action_has_no_tab_spec.rb │ │ │ │ │ ├── front_page_spec.rb │ │ │ │ │ ├── tab_active_when_spec.rb │ │ │ │ │ ├── tab_dsl_errors_spec.rb │ │ │ │ │ ├── tab_enabled_when_spec.rb │ │ │ │ │ ├── tab_link_path_spec.rb │ │ │ │ │ ├── tab_order_spec.rb │ │ │ │ │ ├── tab_text_spec.rb │ │ │ │ │ ├── tab_visible_when_spec.rb │ │ │ │ │ └── tabs_dsl_errors_spec.rb │ │ │ │ ├── spec_helper.rb │ │ │ │ └── support │ │ │ │ │ ├── should_be_clickable.rb │ │ │ │ │ └── tab_helpers.rb │ │ │ ├── test │ │ │ │ ├── controllers │ │ │ │ │ └── .keep │ │ │ │ ├── fixtures │ │ │ │ │ └── .keep │ │ │ │ ├── helpers │ │ │ │ │ └── .keep │ │ │ │ ├── integration │ │ │ │ │ └── .keep │ │ │ │ ├── mailers │ │ │ │ │ └── .keep │ │ │ │ ├── models │ │ │ │ │ └── .keep │ │ │ │ └── test_helper.rb │ │ │ └── vendor │ │ │ │ └── assets │ │ │ │ ├── javascripts │ │ │ │ └── .keep │ │ │ │ └── stylesheets │ │ │ │ └── .keep │ │ ├── rails_4-2-0 │ │ │ ├── .gitignore │ │ │ ├── Gemfile │ │ │ ├── README.rdoc │ │ │ ├── Rakefile │ │ │ ├── app │ │ │ │ ├── assets │ │ │ │ │ ├── images │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── javascripts │ │ │ │ │ │ ├── application.js │ │ │ │ │ │ ├── galaxies.coffee │ │ │ │ │ │ ├── home.coffee │ │ │ │ │ │ ├── no_tabs.coffee │ │ │ │ │ │ ├── planets.coffee │ │ │ │ │ │ ├── stars.coffee │ │ │ │ │ │ └── subtabs.coffee │ │ │ │ │ └── stylesheets │ │ │ │ │ │ ├── application.css │ │ │ │ │ │ ├── galaxies.scss │ │ │ │ │ │ ├── home.scss │ │ │ │ │ │ ├── no_tabs.scss │ │ │ │ │ │ ├── planets.scss │ │ │ │ │ │ ├── scaffolds.scss │ │ │ │ │ │ ├── stars.scss │ │ │ │ │ │ └── subtabs.scss │ │ │ │ ├── controllers │ │ │ │ │ ├── application_controller.rb │ │ │ │ │ ├── concerns │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── galaxies_controller.rb │ │ │ │ │ ├── home_controller.rb │ │ │ │ │ ├── no_tabs_controller.rb │ │ │ │ │ ├── planets_controller.rb │ │ │ │ │ ├── stars_controller.rb │ │ │ │ │ └── subtabs_controller.rb │ │ │ │ ├── helpers │ │ │ │ │ ├── application_helper.rb │ │ │ │ │ ├── galaxies_helper.rb │ │ │ │ │ ├── home_helper.rb │ │ │ │ │ ├── no_tabs_helper.rb │ │ │ │ │ ├── planets_helper.rb │ │ │ │ │ ├── stars_helper.rb │ │ │ │ │ └── subtabs_helper.rb │ │ │ │ ├── mailers │ │ │ │ │ └── .keep │ │ │ │ ├── models │ │ │ │ │ ├── .keep │ │ │ │ │ ├── concerns │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── galaxy.rb │ │ │ │ │ ├── planet.rb │ │ │ │ │ └── star.rb │ │ │ │ ├── tabs │ │ │ │ │ └── tabulous.rb │ │ │ │ └── views │ │ │ │ │ ├── galaxies │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ ├── home │ │ │ │ │ └── index.html.erb │ │ │ │ │ ├── layouts │ │ │ │ │ └── application.html.erb │ │ │ │ │ ├── no_tabs │ │ │ │ │ └── index.html.erb │ │ │ │ │ ├── planets │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ ├── stars │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ └── subtabs │ │ │ │ │ ├── one.html.erb │ │ │ │ │ ├── three.html.erb │ │ │ │ │ └── two.html.erb │ │ │ ├── bin │ │ │ │ ├── bundle │ │ │ │ ├── rails │ │ │ │ ├── rake │ │ │ │ ├── setup │ │ │ │ └── spring │ │ │ ├── config.ru │ │ │ ├── config │ │ │ │ ├── application.rb │ │ │ │ ├── boot.rb │ │ │ │ ├── database.yml │ │ │ │ ├── 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 │ │ │ │ ├── migrate │ │ │ │ │ ├── 20141221212743_create_galaxies.rb │ │ │ │ │ ├── 20141221212744_create_planets.rb │ │ │ │ │ └── 20141221212746_create_stars.rb │ │ │ │ ├── schema.rb │ │ │ │ └── seeds.rb │ │ │ ├── lib │ │ │ │ ├── assets │ │ │ │ │ └── .keep │ │ │ │ └── tasks │ │ │ │ │ ├── .keep │ │ │ │ │ └── testing.rake │ │ │ ├── log │ │ │ │ └── .keep │ │ │ ├── public │ │ │ │ ├── 404.html │ │ │ │ ├── 422.html │ │ │ │ ├── 500.html │ │ │ │ ├── favicon.ico │ │ │ │ └── robots.txt │ │ │ ├── spec │ │ │ │ ├── features │ │ │ │ │ ├── css_scaffolding_spec.rb │ │ │ │ │ ├── customize_active_tab_clickable_spec.rb │ │ │ │ │ ├── customize_render_subtabs_when_empty_spec.rb │ │ │ │ │ ├── customize_renderer_spec.rb │ │ │ │ │ ├── customize_when_action_has_no_tab_spec.rb │ │ │ │ │ ├── front_page_spec.rb │ │ │ │ │ ├── tab_active_when_spec.rb │ │ │ │ │ ├── tab_dsl_errors_spec.rb │ │ │ │ │ ├── tab_enabled_when_spec.rb │ │ │ │ │ ├── tab_link_path_spec.rb │ │ │ │ │ ├── tab_order_spec.rb │ │ │ │ │ ├── tab_text_spec.rb │ │ │ │ │ ├── tab_visible_when_spec.rb │ │ │ │ │ └── tabs_dsl_errors_spec.rb │ │ │ │ ├── spec_helper.rb │ │ │ │ └── support │ │ │ │ │ ├── should_be_clickable.rb │ │ │ │ │ └── tab_helpers.rb │ │ │ ├── test │ │ │ │ ├── controllers │ │ │ │ │ └── .keep │ │ │ │ ├── fixtures │ │ │ │ │ └── .keep │ │ │ │ ├── helpers │ │ │ │ │ └── .keep │ │ │ │ ├── integration │ │ │ │ │ └── .keep │ │ │ │ ├── mailers │ │ │ │ │ └── .keep │ │ │ │ ├── models │ │ │ │ │ └── .keep │ │ │ │ └── test_helper.rb │ │ │ └── vendor │ │ │ │ └── assets │ │ │ │ ├── javascripts │ │ │ │ └── .keep │ │ │ │ └── stylesheets │ │ │ │ └── .keep │ │ ├── rails_5-0-0 │ │ │ ├── .gitignore │ │ │ ├── Gemfile │ │ │ ├── README.md │ │ │ ├── Rakefile │ │ │ ├── app │ │ │ │ ├── assets │ │ │ │ │ ├── config │ │ │ │ │ │ └── manifest.js │ │ │ │ │ ├── images │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── javascripts │ │ │ │ │ │ ├── application.js │ │ │ │ │ │ ├── cable.js │ │ │ │ │ │ ├── channels │ │ │ │ │ │ │ └── .keep │ │ │ │ │ │ ├── galaxies.coffee │ │ │ │ │ │ ├── home.coffee │ │ │ │ │ │ ├── no_tabs.coffee │ │ │ │ │ │ ├── planets.coffee │ │ │ │ │ │ ├── stars.coffee │ │ │ │ │ │ └── subtabs.coffee │ │ │ │ │ └── stylesheets │ │ │ │ │ │ ├── application.css │ │ │ │ │ │ ├── galaxies.scss │ │ │ │ │ │ ├── home.scss │ │ │ │ │ │ ├── no_tabs.scss │ │ │ │ │ │ ├── planets.scss │ │ │ │ │ │ ├── scaffolds.scss │ │ │ │ │ │ ├── stars.scss │ │ │ │ │ │ └── subtabs.scss │ │ │ │ ├── channels │ │ │ │ │ └── application_cable │ │ │ │ │ │ ├── channel.rb │ │ │ │ │ │ └── connection.rb │ │ │ │ ├── controllers │ │ │ │ │ ├── application_controller.rb │ │ │ │ │ ├── concerns │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── galaxies_controller.rb │ │ │ │ │ ├── home_controller.rb │ │ │ │ │ ├── no_tabs_controller.rb │ │ │ │ │ ├── planets_controller.rb │ │ │ │ │ ├── stars_controller.rb │ │ │ │ │ └── subtabs_controller.rb │ │ │ │ ├── helpers │ │ │ │ │ ├── application_helper.rb │ │ │ │ │ ├── galaxies_helper.rb │ │ │ │ │ ├── home_helper.rb │ │ │ │ │ ├── no_tabs_helper.rb │ │ │ │ │ ├── planets_helper.rb │ │ │ │ │ ├── stars_helper.rb │ │ │ │ │ └── subtabs_helper.rb │ │ │ │ ├── jobs │ │ │ │ │ └── application_job.rb │ │ │ │ ├── mailers │ │ │ │ │ └── application_mailer.rb │ │ │ │ ├── models │ │ │ │ │ ├── application_record.rb │ │ │ │ │ ├── concerns │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── galaxy.rb │ │ │ │ │ ├── planet.rb │ │ │ │ │ └── star.rb │ │ │ │ ├── tabs │ │ │ │ │ └── tabulous.rb │ │ │ │ └── views │ │ │ │ │ ├── galaxies │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── _galaxy.json.jbuilder │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ ├── home │ │ │ │ │ └── index.html.erb │ │ │ │ │ ├── layouts │ │ │ │ │ ├── application.html.erb │ │ │ │ │ ├── mailer.html.erb │ │ │ │ │ └── mailer.text.erb │ │ │ │ │ ├── no_tabs │ │ │ │ │ └── index.html.erb │ │ │ │ │ ├── planets │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── _planet.json.jbuilder │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ ├── stars │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── _star.json.jbuilder │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ └── subtabs │ │ │ │ │ ├── one.html.erb │ │ │ │ │ ├── three.html.erb │ │ │ │ │ └── two.html.erb │ │ │ ├── bin │ │ │ │ ├── bundle │ │ │ │ ├── rails │ │ │ │ ├── rake │ │ │ │ ├── setup │ │ │ │ ├── spring │ │ │ │ └── update │ │ │ ├── config.ru │ │ │ ├── config │ │ │ │ ├── application.rb │ │ │ │ ├── boot.rb │ │ │ │ ├── cable.yml │ │ │ │ ├── database.yml │ │ │ │ ├── environment.rb │ │ │ │ ├── environments │ │ │ │ │ ├── development.rb │ │ │ │ │ ├── production.rb │ │ │ │ │ └── test.rb │ │ │ │ ├── initializers │ │ │ │ │ ├── application_controller_renderer.rb │ │ │ │ │ ├── assets.rb │ │ │ │ │ ├── backtrace_silencers.rb │ │ │ │ │ ├── cookies_serializer.rb │ │ │ │ │ ├── filter_parameter_logging.rb │ │ │ │ │ ├── inflections.rb │ │ │ │ │ ├── mime_types.rb │ │ │ │ │ ├── new_framework_defaults.rb │ │ │ │ │ ├── session_store.rb │ │ │ │ │ └── wrap_parameters.rb │ │ │ │ ├── locales │ │ │ │ │ └── en.yml │ │ │ │ ├── puma.rb │ │ │ │ ├── routes.rb │ │ │ │ ├── secrets.yml │ │ │ │ └── spring.rb │ │ │ ├── db │ │ │ │ ├── migrate │ │ │ │ │ ├── 20160806172416_create_galaxies.rb │ │ │ │ │ ├── 20160806172419_create_planets.rb │ │ │ │ │ └── 20160806172422_create_stars.rb │ │ │ │ ├── schema.rb │ │ │ │ └── seeds.rb │ │ │ ├── lib │ │ │ │ ├── assets │ │ │ │ │ └── .keep │ │ │ │ └── tasks │ │ │ │ │ ├── .keep │ │ │ │ │ └── testing.rake │ │ │ ├── log │ │ │ │ └── .keep │ │ │ ├── public │ │ │ │ ├── 404.html │ │ │ │ ├── 422.html │ │ │ │ ├── 500.html │ │ │ │ ├── apple-touch-icon-precomposed.png │ │ │ │ ├── apple-touch-icon.png │ │ │ │ ├── favicon.ico │ │ │ │ └── robots.txt │ │ │ ├── spec │ │ │ │ ├── features │ │ │ │ │ ├── css_scaffolding_spec.rb │ │ │ │ │ ├── customize_active_tab_clickable_spec.rb │ │ │ │ │ ├── customize_render_subtabs_when_empty_spec.rb │ │ │ │ │ ├── customize_renderer_spec.rb │ │ │ │ │ ├── customize_when_action_has_no_tab_spec.rb │ │ │ │ │ ├── front_page_spec.rb │ │ │ │ │ ├── tab_active_when_spec.rb │ │ │ │ │ ├── tab_dsl_errors_spec.rb │ │ │ │ │ ├── tab_enabled_when_spec.rb │ │ │ │ │ ├── tab_link_path_spec.rb │ │ │ │ │ ├── tab_order_spec.rb │ │ │ │ │ ├── tab_text_spec.rb │ │ │ │ │ ├── tab_visible_when_spec.rb │ │ │ │ │ └── tabs_dsl_errors_spec.rb │ │ │ │ ├── spec_helper.rb │ │ │ │ └── support │ │ │ │ │ ├── should_be_clickable.rb │ │ │ │ │ └── tab_helpers.rb │ │ │ ├── test │ │ │ │ ├── controllers │ │ │ │ │ └── .keep │ │ │ │ ├── fixtures │ │ │ │ │ ├── .keep │ │ │ │ │ └── files │ │ │ │ │ │ └── .keep │ │ │ │ ├── helpers │ │ │ │ │ └── .keep │ │ │ │ ├── integration │ │ │ │ │ └── .keep │ │ │ │ ├── mailers │ │ │ │ │ └── .keep │ │ │ │ ├── models │ │ │ │ │ └── .keep │ │ │ │ └── test_helper.rb │ │ │ ├── tmp │ │ │ │ └── .keep │ │ │ └── vendor │ │ │ │ └── assets │ │ │ │ ├── javascripts │ │ │ │ └── .keep │ │ │ │ └── stylesheets │ │ │ │ └── .keep │ │ └── shared │ │ │ ├── app │ │ │ └── tabs │ │ │ │ └── tabulous.rb │ │ │ └── spec │ │ │ └── features │ │ │ ├── css_scaffolding_spec.rb │ │ │ ├── customize_active_tab_clickable_spec.rb │ │ │ ├── customize_render_subtabs_when_empty_spec.rb │ │ │ ├── customize_renderer_spec.rb │ │ │ ├── customize_when_action_has_no_tab_spec.rb │ │ │ ├── tab_active_when_spec.rb │ │ │ ├── tab_dsl_errors_spec.rb │ │ │ ├── tab_enabled_when_spec.rb │ │ │ ├── tab_link_path_spec.rb │ │ │ ├── tab_order_spec.rb │ │ │ ├── tab_text_spec.rb │ │ │ ├── tab_visible_when_spec.rb │ │ │ └── tabs_dsl_errors_spec.rb │ ├── multiple_tabsets │ │ ├── application_template.rb │ │ ├── rails_4-0-5 │ │ │ ├── .gitignore │ │ │ ├── Gemfile │ │ │ ├── README.rdoc │ │ │ ├── Rakefile │ │ │ ├── app │ │ │ │ ├── assets │ │ │ │ │ ├── images │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── javascripts │ │ │ │ │ │ ├── application.js │ │ │ │ │ │ ├── galaxies │ │ │ │ │ │ │ ├── elliptical_galaxies.js.coffee │ │ │ │ │ │ │ ├── lenticular_galaxies.js.coffee │ │ │ │ │ │ │ └── spiral_galaxies.js.coffee │ │ │ │ │ │ ├── home.js.coffee │ │ │ │ │ │ └── planets │ │ │ │ │ │ │ ├── exoplanets.js.coffee │ │ │ │ │ │ │ └── rogue_planets.js.coffee │ │ │ │ │ └── stylesheets │ │ │ │ │ │ ├── application.css │ │ │ │ │ │ ├── galaxies │ │ │ │ │ │ ├── elliptical_galaxies.css.scss │ │ │ │ │ │ ├── lenticular_galaxies.css.scss │ │ │ │ │ │ └── spiral_galaxies.css.scss │ │ │ │ │ │ ├── home.css.scss │ │ │ │ │ │ ├── planets │ │ │ │ │ │ ├── exoplanets.css.scss │ │ │ │ │ │ └── rogue_planets.css.scss │ │ │ │ │ │ └── scaffolds.css.scss │ │ │ │ ├── controllers │ │ │ │ │ ├── application_controller.rb │ │ │ │ │ ├── concerns │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── galaxies │ │ │ │ │ │ ├── elliptical_galaxies_controller.rb │ │ │ │ │ │ ├── lenticular_galaxies_controller.rb │ │ │ │ │ │ └── spiral_galaxies_controller.rb │ │ │ │ │ ├── home_controller.rb │ │ │ │ │ └── planets │ │ │ │ │ │ ├── exoplanets_controller.rb │ │ │ │ │ │ └── rogue_planets_controller.rb │ │ │ │ ├── helpers │ │ │ │ │ ├── application_helper.rb │ │ │ │ │ ├── galaxies │ │ │ │ │ │ ├── elliptical_galaxies_helper.rb │ │ │ │ │ │ ├── lenticular_galaxies_helper.rb │ │ │ │ │ │ └── spiral_galaxies_helper.rb │ │ │ │ │ ├── home_helper.rb │ │ │ │ │ └── planets │ │ │ │ │ │ ├── exoplanets_helper.rb │ │ │ │ │ │ └── rogue_planets_helper.rb │ │ │ │ ├── mailers │ │ │ │ │ └── .keep │ │ │ │ ├── models │ │ │ │ │ ├── .keep │ │ │ │ │ ├── concerns │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── galaxies.rb │ │ │ │ │ ├── galaxies │ │ │ │ │ │ ├── elliptical_galaxy.rb │ │ │ │ │ │ ├── lenticular_galaxy.rb │ │ │ │ │ │ └── spiral_galaxy.rb │ │ │ │ │ ├── planets.rb │ │ │ │ │ └── planets │ │ │ │ │ │ ├── exoplanet.rb │ │ │ │ │ │ └── rogue_planet.rb │ │ │ │ ├── tabs │ │ │ │ │ └── tabulous.rb │ │ │ │ └── views │ │ │ │ │ ├── galaxies │ │ │ │ │ ├── elliptical_galaxies │ │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ │ ├── index.html.erb │ │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ │ ├── new.html.erb │ │ │ │ │ │ ├── show.html.erb │ │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ ├── lenticular_galaxies │ │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ │ ├── index.html.erb │ │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ │ ├── new.html.erb │ │ │ │ │ │ ├── show.html.erb │ │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ └── spiral_galaxies │ │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ │ ├── index.html.erb │ │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ │ ├── new.html.erb │ │ │ │ │ │ ├── show.html.erb │ │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ ├── home │ │ │ │ │ └── index.html.erb │ │ │ │ │ ├── layouts │ │ │ │ │ └── application.html.erb │ │ │ │ │ └── planets │ │ │ │ │ ├── exoplanets │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ └── rogue_planets │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ ├── bin │ │ │ │ ├── bundle │ │ │ │ ├── rails │ │ │ │ └── rake │ │ │ ├── config.ru │ │ │ ├── config │ │ │ │ ├── application.rb │ │ │ │ ├── boot.rb │ │ │ │ ├── database.yml │ │ │ │ ├── environment.rb │ │ │ │ ├── environments │ │ │ │ │ ├── development.rb │ │ │ │ │ ├── production.rb │ │ │ │ │ └── test.rb │ │ │ │ ├── initializers │ │ │ │ │ ├── backtrace_silencers.rb │ │ │ │ │ ├── filter_parameter_logging.rb │ │ │ │ │ ├── inflections.rb │ │ │ │ │ ├── mime_types.rb │ │ │ │ │ ├── secret_token.rb │ │ │ │ │ ├── session_store.rb │ │ │ │ │ └── wrap_parameters.rb │ │ │ │ ├── locales │ │ │ │ │ └── en.yml │ │ │ │ └── routes.rb │ │ │ ├── db │ │ │ │ ├── migrate │ │ │ │ │ ├── 20140529011827_create_galaxies_elliptical_galaxies.rb │ │ │ │ │ ├── 20140529011829_create_galaxies_lenticular_galaxies.rb │ │ │ │ │ ├── 20140529011831_create_galaxies_spiral_galaxies.rb │ │ │ │ │ ├── 20140529011833_create_planets_exoplanets.rb │ │ │ │ │ └── 20140529011835_create_planets_rogue_planets.rb │ │ │ │ ├── schema.rb │ │ │ │ └── seeds.rb │ │ │ ├── lib │ │ │ │ ├── assets │ │ │ │ │ └── .keep │ │ │ │ └── tasks │ │ │ │ │ ├── .keep │ │ │ │ │ └── testing.rake │ │ │ ├── log │ │ │ │ └── .keep │ │ │ ├── public │ │ │ │ ├── 404.html │ │ │ │ ├── 422.html │ │ │ │ ├── 500.html │ │ │ │ ├── favicon.ico │ │ │ │ └── robots.txt │ │ │ ├── spec │ │ │ │ ├── features │ │ │ │ │ ├── front_page_spec.rb │ │ │ │ │ └── multiple_tabsets_spec.rb │ │ │ │ ├── spec_helper.rb │ │ │ │ └── support │ │ │ │ │ ├── should_be_clickable.rb │ │ │ │ │ └── tab_helpers.rb │ │ │ ├── test │ │ │ │ ├── controllers │ │ │ │ │ └── .keep │ │ │ │ ├── fixtures │ │ │ │ │ └── .keep │ │ │ │ ├── helpers │ │ │ │ │ └── .keep │ │ │ │ ├── integration │ │ │ │ │ └── .keep │ │ │ │ ├── mailers │ │ │ │ │ └── .keep │ │ │ │ ├── models │ │ │ │ │ └── .keep │ │ │ │ └── test_helper.rb │ │ │ └── vendor │ │ │ │ └── assets │ │ │ │ ├── javascripts │ │ │ │ └── .keep │ │ │ │ └── stylesheets │ │ │ │ └── .keep │ │ ├── rails_4-1-1 │ │ │ ├── .gitignore │ │ │ ├── Gemfile │ │ │ ├── README.rdoc │ │ │ ├── Rakefile │ │ │ ├── app │ │ │ │ ├── assets │ │ │ │ │ ├── images │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── javascripts │ │ │ │ │ │ ├── application.js │ │ │ │ │ │ ├── galaxies │ │ │ │ │ │ │ ├── elliptical_galaxies.js.coffee │ │ │ │ │ │ │ ├── lenticular_galaxies.js.coffee │ │ │ │ │ │ │ └── spiral_galaxies.js.coffee │ │ │ │ │ │ ├── home.js.coffee │ │ │ │ │ │ └── planets │ │ │ │ │ │ │ ├── exoplanets.js.coffee │ │ │ │ │ │ │ └── rogue_planets.js.coffee │ │ │ │ │ └── stylesheets │ │ │ │ │ │ ├── application.css │ │ │ │ │ │ ├── galaxies │ │ │ │ │ │ ├── elliptical_galaxies.css.scss │ │ │ │ │ │ ├── lenticular_galaxies.css.scss │ │ │ │ │ │ └── spiral_galaxies.css.scss │ │ │ │ │ │ ├── home.css.scss │ │ │ │ │ │ ├── planets │ │ │ │ │ │ ├── exoplanets.css.scss │ │ │ │ │ │ └── rogue_planets.css.scss │ │ │ │ │ │ └── scaffolds.css.scss │ │ │ │ ├── controllers │ │ │ │ │ ├── application_controller.rb │ │ │ │ │ ├── concerns │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── galaxies │ │ │ │ │ │ ├── elliptical_galaxies_controller.rb │ │ │ │ │ │ ├── lenticular_galaxies_controller.rb │ │ │ │ │ │ └── spiral_galaxies_controller.rb │ │ │ │ │ ├── home_controller.rb │ │ │ │ │ └── planets │ │ │ │ │ │ ├── exoplanets_controller.rb │ │ │ │ │ │ └── rogue_planets_controller.rb │ │ │ │ ├── helpers │ │ │ │ │ ├── application_helper.rb │ │ │ │ │ ├── galaxies │ │ │ │ │ │ ├── elliptical_galaxies_helper.rb │ │ │ │ │ │ ├── lenticular_galaxies_helper.rb │ │ │ │ │ │ └── spiral_galaxies_helper.rb │ │ │ │ │ ├── home_helper.rb │ │ │ │ │ └── planets │ │ │ │ │ │ ├── exoplanets_helper.rb │ │ │ │ │ │ └── rogue_planets_helper.rb │ │ │ │ ├── mailers │ │ │ │ │ └── .keep │ │ │ │ ├── models │ │ │ │ │ ├── .keep │ │ │ │ │ ├── concerns │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── galaxies.rb │ │ │ │ │ ├── galaxies │ │ │ │ │ │ ├── elliptical_galaxy.rb │ │ │ │ │ │ ├── lenticular_galaxy.rb │ │ │ │ │ │ └── spiral_galaxy.rb │ │ │ │ │ ├── planets.rb │ │ │ │ │ └── planets │ │ │ │ │ │ ├── exoplanet.rb │ │ │ │ │ │ └── rogue_planet.rb │ │ │ │ ├── tabs │ │ │ │ │ └── tabulous.rb │ │ │ │ └── views │ │ │ │ │ ├── galaxies │ │ │ │ │ ├── elliptical_galaxies │ │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ │ ├── index.html.erb │ │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ │ ├── new.html.erb │ │ │ │ │ │ ├── show.html.erb │ │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ ├── lenticular_galaxies │ │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ │ ├── index.html.erb │ │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ │ ├── new.html.erb │ │ │ │ │ │ ├── show.html.erb │ │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ └── spiral_galaxies │ │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ │ ├── index.html.erb │ │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ │ ├── new.html.erb │ │ │ │ │ │ ├── show.html.erb │ │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ ├── home │ │ │ │ │ └── index.html.erb │ │ │ │ │ ├── layouts │ │ │ │ │ └── application.html.erb │ │ │ │ │ └── planets │ │ │ │ │ ├── exoplanets │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ └── rogue_planets │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ ├── bin │ │ │ │ ├── bundle │ │ │ │ ├── rails │ │ │ │ ├── rake │ │ │ │ └── spring │ │ │ ├── config.ru │ │ │ ├── config │ │ │ │ ├── application.rb │ │ │ │ ├── boot.rb │ │ │ │ ├── database.yml │ │ │ │ ├── environment.rb │ │ │ │ ├── environments │ │ │ │ │ ├── development.rb │ │ │ │ │ ├── production.rb │ │ │ │ │ └── test.rb │ │ │ │ ├── initializers │ │ │ │ │ ├── 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 │ │ │ │ ├── migrate │ │ │ │ │ ├── 20140529014433_create_galaxies_elliptical_galaxies.rb │ │ │ │ │ ├── 20140529014436_create_galaxies_lenticular_galaxies.rb │ │ │ │ │ ├── 20140529014438_create_galaxies_spiral_galaxies.rb │ │ │ │ │ ├── 20140529014440_create_planets_exoplanets.rb │ │ │ │ │ └── 20140529014442_create_planets_rogue_planets.rb │ │ │ │ ├── schema.rb │ │ │ │ └── seeds.rb │ │ │ ├── lib │ │ │ │ ├── assets │ │ │ │ │ └── .keep │ │ │ │ └── tasks │ │ │ │ │ ├── .keep │ │ │ │ │ └── testing.rake │ │ │ ├── log │ │ │ │ └── .keep │ │ │ ├── public │ │ │ │ ├── 404.html │ │ │ │ ├── 422.html │ │ │ │ ├── 500.html │ │ │ │ ├── favicon.ico │ │ │ │ └── robots.txt │ │ │ ├── spec │ │ │ │ ├── features │ │ │ │ │ ├── front_page_spec.rb │ │ │ │ │ └── multiple_tabsets_spec.rb │ │ │ │ ├── spec_helper.rb │ │ │ │ └── support │ │ │ │ │ ├── should_be_clickable.rb │ │ │ │ │ └── tab_helpers.rb │ │ │ ├── test │ │ │ │ ├── controllers │ │ │ │ │ └── .keep │ │ │ │ ├── fixtures │ │ │ │ │ └── .keep │ │ │ │ ├── helpers │ │ │ │ │ └── .keep │ │ │ │ ├── integration │ │ │ │ │ └── .keep │ │ │ │ ├── mailers │ │ │ │ │ └── .keep │ │ │ │ ├── models │ │ │ │ │ └── .keep │ │ │ │ └── test_helper.rb │ │ │ └── vendor │ │ │ │ └── assets │ │ │ │ ├── javascripts │ │ │ │ └── .keep │ │ │ │ └── stylesheets │ │ │ │ └── .keep │ │ ├── rails_4-2-0 │ │ │ ├── .gitignore │ │ │ ├── Gemfile │ │ │ ├── README.rdoc │ │ │ ├── Rakefile │ │ │ ├── app │ │ │ │ ├── assets │ │ │ │ │ ├── images │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── javascripts │ │ │ │ │ │ ├── application.js │ │ │ │ │ │ ├── galaxies │ │ │ │ │ │ │ ├── elliptical_galaxies.coffee │ │ │ │ │ │ │ ├── lenticular_galaxies.coffee │ │ │ │ │ │ │ └── spiral_galaxies.coffee │ │ │ │ │ │ ├── home.coffee │ │ │ │ │ │ └── planets │ │ │ │ │ │ │ ├── exoplanets.coffee │ │ │ │ │ │ │ └── rogue_planets.coffee │ │ │ │ │ └── stylesheets │ │ │ │ │ │ ├── application.css │ │ │ │ │ │ ├── galaxies │ │ │ │ │ │ ├── elliptical_galaxies.scss │ │ │ │ │ │ ├── lenticular_galaxies.scss │ │ │ │ │ │ └── spiral_galaxies.scss │ │ │ │ │ │ ├── home.scss │ │ │ │ │ │ ├── planets │ │ │ │ │ │ ├── exoplanets.scss │ │ │ │ │ │ └── rogue_planets.scss │ │ │ │ │ │ └── scaffolds.scss │ │ │ │ ├── controllers │ │ │ │ │ ├── application_controller.rb │ │ │ │ │ ├── concerns │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── galaxies │ │ │ │ │ │ ├── elliptical_galaxies_controller.rb │ │ │ │ │ │ ├── lenticular_galaxies_controller.rb │ │ │ │ │ │ └── spiral_galaxies_controller.rb │ │ │ │ │ ├── home_controller.rb │ │ │ │ │ └── planets │ │ │ │ │ │ ├── exoplanets_controller.rb │ │ │ │ │ │ └── rogue_planets_controller.rb │ │ │ │ ├── helpers │ │ │ │ │ ├── application_helper.rb │ │ │ │ │ ├── galaxies │ │ │ │ │ │ ├── elliptical_galaxies_helper.rb │ │ │ │ │ │ ├── lenticular_galaxies_helper.rb │ │ │ │ │ │ └── spiral_galaxies_helper.rb │ │ │ │ │ ├── home_helper.rb │ │ │ │ │ └── planets │ │ │ │ │ │ ├── exoplanets_helper.rb │ │ │ │ │ │ └── rogue_planets_helper.rb │ │ │ │ ├── mailers │ │ │ │ │ └── .keep │ │ │ │ ├── models │ │ │ │ │ ├── .keep │ │ │ │ │ ├── concerns │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── galaxies.rb │ │ │ │ │ ├── galaxies │ │ │ │ │ │ ├── elliptical_galaxy.rb │ │ │ │ │ │ ├── lenticular_galaxy.rb │ │ │ │ │ │ └── spiral_galaxy.rb │ │ │ │ │ ├── planets.rb │ │ │ │ │ └── planets │ │ │ │ │ │ ├── exoplanet.rb │ │ │ │ │ │ └── rogue_planet.rb │ │ │ │ ├── tabs │ │ │ │ │ └── tabulous.rb │ │ │ │ └── views │ │ │ │ │ ├── galaxies │ │ │ │ │ ├── elliptical_galaxies │ │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ │ ├── index.html.erb │ │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ │ ├── new.html.erb │ │ │ │ │ │ ├── show.html.erb │ │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ ├── lenticular_galaxies │ │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ │ ├── index.html.erb │ │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ │ ├── new.html.erb │ │ │ │ │ │ ├── show.html.erb │ │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ └── spiral_galaxies │ │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ │ ├── index.html.erb │ │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ │ ├── new.html.erb │ │ │ │ │ │ ├── show.html.erb │ │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ ├── home │ │ │ │ │ └── index.html.erb │ │ │ │ │ ├── layouts │ │ │ │ │ └── application.html.erb │ │ │ │ │ └── planets │ │ │ │ │ ├── exoplanets │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ └── rogue_planets │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ ├── bin │ │ │ │ ├── bundle │ │ │ │ ├── rails │ │ │ │ ├── rake │ │ │ │ ├── setup │ │ │ │ └── spring │ │ │ ├── config.ru │ │ │ ├── config │ │ │ │ ├── application.rb │ │ │ │ ├── boot.rb │ │ │ │ ├── database.yml │ │ │ │ ├── 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 │ │ │ │ ├── migrate │ │ │ │ │ ├── 20141222134928_create_galaxies_elliptical_galaxies.rb │ │ │ │ │ ├── 20141222134930_create_galaxies_lenticular_galaxies.rb │ │ │ │ │ ├── 20141222134932_create_galaxies_spiral_galaxies.rb │ │ │ │ │ ├── 20141222134934_create_planets_exoplanets.rb │ │ │ │ │ └── 20141222134936_create_planets_rogue_planets.rb │ │ │ │ ├── schema.rb │ │ │ │ └── seeds.rb │ │ │ ├── lib │ │ │ │ ├── assets │ │ │ │ │ └── .keep │ │ │ │ └── tasks │ │ │ │ │ ├── .keep │ │ │ │ │ └── testing.rake │ │ │ ├── log │ │ │ │ └── .keep │ │ │ ├── public │ │ │ │ ├── 404.html │ │ │ │ ├── 422.html │ │ │ │ ├── 500.html │ │ │ │ ├── favicon.ico │ │ │ │ └── robots.txt │ │ │ ├── spec │ │ │ │ ├── features │ │ │ │ │ ├── front_page_spec.rb │ │ │ │ │ └── multiple_tabsets_spec.rb │ │ │ │ ├── spec_helper.rb │ │ │ │ └── support │ │ │ │ │ ├── should_be_clickable.rb │ │ │ │ │ └── tab_helpers.rb │ │ │ ├── test │ │ │ │ ├── controllers │ │ │ │ │ └── .keep │ │ │ │ ├── fixtures │ │ │ │ │ └── .keep │ │ │ │ ├── helpers │ │ │ │ │ └── .keep │ │ │ │ ├── integration │ │ │ │ │ └── .keep │ │ │ │ ├── mailers │ │ │ │ │ └── .keep │ │ │ │ ├── models │ │ │ │ │ └── .keep │ │ │ │ └── test_helper.rb │ │ │ └── vendor │ │ │ │ └── assets │ │ │ │ ├── javascripts │ │ │ │ └── .keep │ │ │ │ └── stylesheets │ │ │ │ └── .keep │ │ ├── rails_5-0-0 │ │ │ ├── .gitignore │ │ │ ├── Gemfile │ │ │ ├── README.md │ │ │ ├── Rakefile │ │ │ ├── app │ │ │ │ ├── assets │ │ │ │ │ ├── config │ │ │ │ │ │ └── manifest.js │ │ │ │ │ ├── images │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── javascripts │ │ │ │ │ │ ├── application.js │ │ │ │ │ │ ├── cable.js │ │ │ │ │ │ ├── channels │ │ │ │ │ │ │ └── .keep │ │ │ │ │ │ ├── galaxies │ │ │ │ │ │ │ ├── elliptical_galaxies.coffee │ │ │ │ │ │ │ ├── lenticular_galaxies.coffee │ │ │ │ │ │ │ └── spiral_galaxies.coffee │ │ │ │ │ │ ├── home.coffee │ │ │ │ │ │ └── planets │ │ │ │ │ │ │ ├── exoplanets.coffee │ │ │ │ │ │ │ └── rogue_planets.coffee │ │ │ │ │ └── stylesheets │ │ │ │ │ │ ├── application.css │ │ │ │ │ │ ├── galaxies │ │ │ │ │ │ ├── elliptical_galaxies.scss │ │ │ │ │ │ ├── lenticular_galaxies.scss │ │ │ │ │ │ └── spiral_galaxies.scss │ │ │ │ │ │ ├── home.scss │ │ │ │ │ │ ├── planets │ │ │ │ │ │ ├── exoplanets.scss │ │ │ │ │ │ └── rogue_planets.scss │ │ │ │ │ │ └── scaffolds.scss │ │ │ │ ├── channels │ │ │ │ │ └── application_cable │ │ │ │ │ │ ├── channel.rb │ │ │ │ │ │ └── connection.rb │ │ │ │ ├── controllers │ │ │ │ │ ├── application_controller.rb │ │ │ │ │ ├── concerns │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── galaxies │ │ │ │ │ │ ├── elliptical_galaxies_controller.rb │ │ │ │ │ │ ├── lenticular_galaxies_controller.rb │ │ │ │ │ │ └── spiral_galaxies_controller.rb │ │ │ │ │ ├── home_controller.rb │ │ │ │ │ └── planets │ │ │ │ │ │ ├── exoplanets_controller.rb │ │ │ │ │ │ └── rogue_planets_controller.rb │ │ │ │ ├── helpers │ │ │ │ │ ├── application_helper.rb │ │ │ │ │ ├── galaxies │ │ │ │ │ │ ├── elliptical_galaxies_helper.rb │ │ │ │ │ │ ├── lenticular_galaxies_helper.rb │ │ │ │ │ │ └── spiral_galaxies_helper.rb │ │ │ │ │ ├── home_helper.rb │ │ │ │ │ └── planets │ │ │ │ │ │ ├── exoplanets_helper.rb │ │ │ │ │ │ └── rogue_planets_helper.rb │ │ │ │ ├── jobs │ │ │ │ │ └── application_job.rb │ │ │ │ ├── mailers │ │ │ │ │ └── application_mailer.rb │ │ │ │ ├── models │ │ │ │ │ ├── application_record.rb │ │ │ │ │ ├── concerns │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── galaxies.rb │ │ │ │ │ ├── galaxies │ │ │ │ │ │ ├── elliptical_galaxy.rb │ │ │ │ │ │ ├── lenticular_galaxy.rb │ │ │ │ │ │ └── spiral_galaxy.rb │ │ │ │ │ ├── planets.rb │ │ │ │ │ └── planets │ │ │ │ │ │ ├── exoplanet.rb │ │ │ │ │ │ └── rogue_planet.rb │ │ │ │ ├── tabs │ │ │ │ │ └── tabulous.rb │ │ │ │ └── views │ │ │ │ │ ├── galaxies │ │ │ │ │ ├── elliptical_galaxies │ │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ │ ├── _galaxies_elliptical_galaxy.json.jbuilder │ │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ │ ├── index.html.erb │ │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ │ ├── new.html.erb │ │ │ │ │ │ ├── show.html.erb │ │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ ├── lenticular_galaxies │ │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ │ ├── _galaxies_lenticular_galaxy.json.jbuilder │ │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ │ ├── index.html.erb │ │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ │ ├── new.html.erb │ │ │ │ │ │ ├── show.html.erb │ │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ └── spiral_galaxies │ │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ │ ├── _galaxies_spiral_galaxy.json.jbuilder │ │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ │ ├── index.html.erb │ │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ │ ├── new.html.erb │ │ │ │ │ │ ├── show.html.erb │ │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ ├── home │ │ │ │ │ └── index.html.erb │ │ │ │ │ ├── layouts │ │ │ │ │ ├── application.html.erb │ │ │ │ │ ├── mailer.html.erb │ │ │ │ │ └── mailer.text.erb │ │ │ │ │ └── planets │ │ │ │ │ ├── exoplanets │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── _planets_exoplanet.json.jbuilder │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ └── rogue_planets │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── _planets_rogue_planet.json.jbuilder │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ ├── bin │ │ │ │ ├── bundle │ │ │ │ ├── rails │ │ │ │ ├── rake │ │ │ │ ├── setup │ │ │ │ ├── spring │ │ │ │ └── update │ │ │ ├── config.ru │ │ │ ├── config │ │ │ │ ├── application.rb │ │ │ │ ├── boot.rb │ │ │ │ ├── cable.yml │ │ │ │ ├── database.yml │ │ │ │ ├── environment.rb │ │ │ │ ├── environments │ │ │ │ │ ├── development.rb │ │ │ │ │ ├── production.rb │ │ │ │ │ └── test.rb │ │ │ │ ├── initializers │ │ │ │ │ ├── application_controller_renderer.rb │ │ │ │ │ ├── assets.rb │ │ │ │ │ ├── backtrace_silencers.rb │ │ │ │ │ ├── cookies_serializer.rb │ │ │ │ │ ├── filter_parameter_logging.rb │ │ │ │ │ ├── inflections.rb │ │ │ │ │ ├── mime_types.rb │ │ │ │ │ ├── new_framework_defaults.rb │ │ │ │ │ ├── session_store.rb │ │ │ │ │ └── wrap_parameters.rb │ │ │ │ ├── locales │ │ │ │ │ └── en.yml │ │ │ │ ├── puma.rb │ │ │ │ ├── routes.rb │ │ │ │ ├── secrets.yml │ │ │ │ └── spring.rb │ │ │ ├── db │ │ │ │ ├── migrate │ │ │ │ │ ├── 20160806175600_create_galaxies_elliptical_galaxies.rb │ │ │ │ │ ├── 20160806175603_create_galaxies_lenticular_galaxies.rb │ │ │ │ │ ├── 20160806175605_create_galaxies_spiral_galaxies.rb │ │ │ │ │ ├── 20160806175608_create_planets_exoplanets.rb │ │ │ │ │ └── 20160806175611_create_planets_rogue_planets.rb │ │ │ │ ├── schema.rb │ │ │ │ └── seeds.rb │ │ │ ├── lib │ │ │ │ ├── assets │ │ │ │ │ └── .keep │ │ │ │ └── tasks │ │ │ │ │ ├── .keep │ │ │ │ │ └── testing.rake │ │ │ ├── log │ │ │ │ └── .keep │ │ │ ├── public │ │ │ │ ├── 404.html │ │ │ │ ├── 422.html │ │ │ │ ├── 500.html │ │ │ │ ├── apple-touch-icon-precomposed.png │ │ │ │ ├── apple-touch-icon.png │ │ │ │ ├── favicon.ico │ │ │ │ └── robots.txt │ │ │ ├── spec │ │ │ │ ├── features │ │ │ │ │ ├── front_page_spec.rb │ │ │ │ │ └── multiple_tabsets_spec.rb │ │ │ │ ├── spec_helper.rb │ │ │ │ └── support │ │ │ │ │ ├── should_be_clickable.rb │ │ │ │ │ └── tab_helpers.rb │ │ │ ├── test │ │ │ │ ├── controllers │ │ │ │ │ └── .keep │ │ │ │ ├── fixtures │ │ │ │ │ ├── .keep │ │ │ │ │ └── files │ │ │ │ │ │ └── .keep │ │ │ │ ├── helpers │ │ │ │ │ └── .keep │ │ │ │ ├── integration │ │ │ │ │ └── .keep │ │ │ │ ├── mailers │ │ │ │ │ └── .keep │ │ │ │ ├── models │ │ │ │ │ └── .keep │ │ │ │ └── test_helper.rb │ │ │ ├── tmp │ │ │ │ └── .keep │ │ │ └── vendor │ │ │ │ └── assets │ │ │ │ ├── javascripts │ │ │ │ └── .keep │ │ │ │ └── stylesheets │ │ │ │ └── .keep │ │ └── shared │ │ │ ├── app │ │ │ └── tabs │ │ │ │ └── tabulous.rb │ │ │ └── spec │ │ │ └── features │ │ │ └── multiple_tabsets_spec.rb │ ├── shims.rb │ ├── simple_tabs │ │ ├── application_template.rb │ │ ├── rails_4-0-5 │ │ │ ├── .gitignore │ │ │ ├── Gemfile │ │ │ ├── README.rdoc │ │ │ ├── Rakefile │ │ │ ├── app │ │ │ │ ├── assets │ │ │ │ │ ├── images │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── javascripts │ │ │ │ │ │ ├── application.js │ │ │ │ │ │ ├── galaxies.js.coffee │ │ │ │ │ │ ├── home.js.coffee │ │ │ │ │ │ ├── planets.js.coffee │ │ │ │ │ │ └── stars.js.coffee │ │ │ │ │ └── stylesheets │ │ │ │ │ │ ├── application.css │ │ │ │ │ │ ├── galaxies.css.scss │ │ │ │ │ │ ├── home.css.scss │ │ │ │ │ │ ├── planets.css.scss │ │ │ │ │ │ ├── scaffolds.css.scss │ │ │ │ │ │ └── stars.css.scss │ │ │ │ ├── controllers │ │ │ │ │ ├── application_controller.rb │ │ │ │ │ ├── concerns │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── galaxies_controller.rb │ │ │ │ │ ├── home_controller.rb │ │ │ │ │ ├── planets_controller.rb │ │ │ │ │ └── stars_controller.rb │ │ │ │ ├── helpers │ │ │ │ │ ├── application_helper.rb │ │ │ │ │ ├── galaxies_helper.rb │ │ │ │ │ ├── home_helper.rb │ │ │ │ │ ├── planets_helper.rb │ │ │ │ │ └── stars_helper.rb │ │ │ │ ├── mailers │ │ │ │ │ └── .keep │ │ │ │ ├── models │ │ │ │ │ ├── .keep │ │ │ │ │ ├── concerns │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── galaxy.rb │ │ │ │ │ ├── planet.rb │ │ │ │ │ └── star.rb │ │ │ │ ├── tabs │ │ │ │ │ └── tabulous.rb │ │ │ │ └── views │ │ │ │ │ ├── galaxies │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ ├── home │ │ │ │ │ └── index.html.erb │ │ │ │ │ ├── layouts │ │ │ │ │ └── application.html.erb │ │ │ │ │ ├── planets │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ └── stars │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ ├── bin │ │ │ │ ├── bundle │ │ │ │ ├── rails │ │ │ │ └── rake │ │ │ ├── config.ru │ │ │ ├── config │ │ │ │ ├── application.rb │ │ │ │ ├── boot.rb │ │ │ │ ├── database.yml │ │ │ │ ├── environment.rb │ │ │ │ ├── environments │ │ │ │ │ ├── development.rb │ │ │ │ │ ├── production.rb │ │ │ │ │ └── test.rb │ │ │ │ ├── initializers │ │ │ │ │ ├── backtrace_silencers.rb │ │ │ │ │ ├── filter_parameter_logging.rb │ │ │ │ │ ├── inflections.rb │ │ │ │ │ ├── mime_types.rb │ │ │ │ │ ├── secret_token.rb │ │ │ │ │ ├── session_store.rb │ │ │ │ │ └── wrap_parameters.rb │ │ │ │ ├── locales │ │ │ │ │ └── en.yml │ │ │ │ └── routes.rb │ │ │ ├── db │ │ │ │ ├── migrate │ │ │ │ │ ├── 20140529011911_create_galaxies.rb │ │ │ │ │ ├── 20140529011913_create_planets.rb │ │ │ │ │ └── 20140529011914_create_stars.rb │ │ │ │ ├── schema.rb │ │ │ │ └── seeds.rb │ │ │ ├── lib │ │ │ │ ├── assets │ │ │ │ │ └── .keep │ │ │ │ └── tasks │ │ │ │ │ ├── .keep │ │ │ │ │ └── testing.rake │ │ │ ├── log │ │ │ │ └── .keep │ │ │ ├── public │ │ │ │ ├── 404.html │ │ │ │ ├── 422.html │ │ │ │ ├── 500.html │ │ │ │ ├── favicon.ico │ │ │ │ └── robots.txt │ │ │ ├── spec │ │ │ │ ├── features │ │ │ │ │ ├── front_page_spec.rb │ │ │ │ │ └── simple_tabs_spec.rb │ │ │ │ ├── spec_helper.rb │ │ │ │ └── support │ │ │ │ │ ├── should_be_clickable.rb │ │ │ │ │ └── tab_helpers.rb │ │ │ ├── test │ │ │ │ ├── controllers │ │ │ │ │ └── .keep │ │ │ │ ├── fixtures │ │ │ │ │ └── .keep │ │ │ │ ├── helpers │ │ │ │ │ └── .keep │ │ │ │ ├── integration │ │ │ │ │ └── .keep │ │ │ │ ├── mailers │ │ │ │ │ └── .keep │ │ │ │ ├── models │ │ │ │ │ └── .keep │ │ │ │ └── test_helper.rb │ │ │ └── vendor │ │ │ │ └── assets │ │ │ │ ├── javascripts │ │ │ │ └── .keep │ │ │ │ └── stylesheets │ │ │ │ └── .keep │ │ ├── rails_4-1-1 │ │ │ ├── .gitignore │ │ │ ├── Gemfile │ │ │ ├── README.rdoc │ │ │ ├── Rakefile │ │ │ ├── app │ │ │ │ ├── assets │ │ │ │ │ ├── images │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── javascripts │ │ │ │ │ │ ├── application.js │ │ │ │ │ │ ├── galaxies.js.coffee │ │ │ │ │ │ ├── home.js.coffee │ │ │ │ │ │ ├── planets.js.coffee │ │ │ │ │ │ └── stars.js.coffee │ │ │ │ │ └── stylesheets │ │ │ │ │ │ ├── application.css │ │ │ │ │ │ ├── galaxies.css.scss │ │ │ │ │ │ ├── home.css.scss │ │ │ │ │ │ ├── planets.css.scss │ │ │ │ │ │ ├── scaffolds.css.scss │ │ │ │ │ │ └── stars.css.scss │ │ │ │ ├── controllers │ │ │ │ │ ├── application_controller.rb │ │ │ │ │ ├── concerns │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── galaxies_controller.rb │ │ │ │ │ ├── home_controller.rb │ │ │ │ │ ├── planets_controller.rb │ │ │ │ │ └── stars_controller.rb │ │ │ │ ├── helpers │ │ │ │ │ ├── application_helper.rb │ │ │ │ │ ├── galaxies_helper.rb │ │ │ │ │ ├── home_helper.rb │ │ │ │ │ ├── planets_helper.rb │ │ │ │ │ └── stars_helper.rb │ │ │ │ ├── mailers │ │ │ │ │ └── .keep │ │ │ │ ├── models │ │ │ │ │ ├── .keep │ │ │ │ │ ├── concerns │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── galaxy.rb │ │ │ │ │ ├── planet.rb │ │ │ │ │ └── star.rb │ │ │ │ ├── tabs │ │ │ │ │ └── tabulous.rb │ │ │ │ └── views │ │ │ │ │ ├── galaxies │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ ├── home │ │ │ │ │ └── index.html.erb │ │ │ │ │ ├── layouts │ │ │ │ │ └── application.html.erb │ │ │ │ │ ├── planets │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ └── stars │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ ├── bin │ │ │ │ ├── bundle │ │ │ │ ├── rails │ │ │ │ ├── rake │ │ │ │ └── spring │ │ │ ├── config.ru │ │ │ ├── config │ │ │ │ ├── application.rb │ │ │ │ ├── boot.rb │ │ │ │ ├── database.yml │ │ │ │ ├── environment.rb │ │ │ │ ├── environments │ │ │ │ │ ├── development.rb │ │ │ │ │ ├── production.rb │ │ │ │ │ └── test.rb │ │ │ │ ├── initializers │ │ │ │ │ ├── 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 │ │ │ │ ├── migrate │ │ │ │ │ ├── 20140529014512_create_galaxies.rb │ │ │ │ │ ├── 20140529014515_create_planets.rb │ │ │ │ │ └── 20140529014517_create_stars.rb │ │ │ │ ├── schema.rb │ │ │ │ └── seeds.rb │ │ │ ├── lib │ │ │ │ ├── assets │ │ │ │ │ └── .keep │ │ │ │ └── tasks │ │ │ │ │ ├── .keep │ │ │ │ │ └── testing.rake │ │ │ ├── log │ │ │ │ └── .keep │ │ │ ├── public │ │ │ │ ├── 404.html │ │ │ │ ├── 422.html │ │ │ │ ├── 500.html │ │ │ │ ├── favicon.ico │ │ │ │ └── robots.txt │ │ │ ├── spec │ │ │ │ ├── features │ │ │ │ │ ├── front_page_spec.rb │ │ │ │ │ └── simple_tabs_spec.rb │ │ │ │ ├── spec_helper.rb │ │ │ │ └── support │ │ │ │ │ ├── should_be_clickable.rb │ │ │ │ │ └── tab_helpers.rb │ │ │ ├── test │ │ │ │ ├── controllers │ │ │ │ │ └── .keep │ │ │ │ ├── fixtures │ │ │ │ │ └── .keep │ │ │ │ ├── helpers │ │ │ │ │ └── .keep │ │ │ │ ├── integration │ │ │ │ │ └── .keep │ │ │ │ ├── mailers │ │ │ │ │ └── .keep │ │ │ │ ├── models │ │ │ │ │ └── .keep │ │ │ │ └── test_helper.rb │ │ │ └── vendor │ │ │ │ └── assets │ │ │ │ ├── javascripts │ │ │ │ └── .keep │ │ │ │ └── stylesheets │ │ │ │ └── .keep │ │ ├── rails_4-2-0 │ │ │ ├── .gitignore │ │ │ ├── Gemfile │ │ │ ├── README.rdoc │ │ │ ├── Rakefile │ │ │ ├── app │ │ │ │ ├── assets │ │ │ │ │ ├── images │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── javascripts │ │ │ │ │ │ ├── application.js │ │ │ │ │ │ ├── galaxies.coffee │ │ │ │ │ │ ├── home.coffee │ │ │ │ │ │ ├── planets.coffee │ │ │ │ │ │ └── stars.coffee │ │ │ │ │ └── stylesheets │ │ │ │ │ │ ├── application.css │ │ │ │ │ │ ├── galaxies.scss │ │ │ │ │ │ ├── home.scss │ │ │ │ │ │ ├── planets.scss │ │ │ │ │ │ ├── scaffolds.scss │ │ │ │ │ │ └── stars.scss │ │ │ │ ├── controllers │ │ │ │ │ ├── application_controller.rb │ │ │ │ │ ├── concerns │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── galaxies_controller.rb │ │ │ │ │ ├── home_controller.rb │ │ │ │ │ ├── planets_controller.rb │ │ │ │ │ └── stars_controller.rb │ │ │ │ ├── helpers │ │ │ │ │ ├── application_helper.rb │ │ │ │ │ ├── galaxies_helper.rb │ │ │ │ │ ├── home_helper.rb │ │ │ │ │ ├── planets_helper.rb │ │ │ │ │ └── stars_helper.rb │ │ │ │ ├── mailers │ │ │ │ │ └── .keep │ │ │ │ ├── models │ │ │ │ │ ├── .keep │ │ │ │ │ ├── concerns │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── galaxy.rb │ │ │ │ │ ├── planet.rb │ │ │ │ │ └── star.rb │ │ │ │ ├── tabs │ │ │ │ │ └── tabulous.rb │ │ │ │ └── views │ │ │ │ │ ├── galaxies │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ ├── home │ │ │ │ │ └── index.html.erb │ │ │ │ │ ├── layouts │ │ │ │ │ └── application.html.erb │ │ │ │ │ ├── planets │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ └── stars │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ ├── bin │ │ │ │ ├── bundle │ │ │ │ ├── rails │ │ │ │ ├── rake │ │ │ │ ├── setup │ │ │ │ └── spring │ │ │ ├── config.ru │ │ │ ├── config │ │ │ │ ├── application.rb │ │ │ │ ├── boot.rb │ │ │ │ ├── database.yml │ │ │ │ ├── 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 │ │ │ │ ├── migrate │ │ │ │ │ ├── 20141222135007_create_galaxies.rb │ │ │ │ │ ├── 20141222135009_create_planets.rb │ │ │ │ │ └── 20141222135011_create_stars.rb │ │ │ │ ├── schema.rb │ │ │ │ └── seeds.rb │ │ │ ├── lib │ │ │ │ ├── assets │ │ │ │ │ └── .keep │ │ │ │ └── tasks │ │ │ │ │ ├── .keep │ │ │ │ │ └── testing.rake │ │ │ ├── log │ │ │ │ └── .keep │ │ │ ├── public │ │ │ │ ├── 404.html │ │ │ │ ├── 422.html │ │ │ │ ├── 500.html │ │ │ │ ├── favicon.ico │ │ │ │ └── robots.txt │ │ │ ├── spec │ │ │ │ ├── features │ │ │ │ │ ├── front_page_spec.rb │ │ │ │ │ └── simple_tabs_spec.rb │ │ │ │ ├── spec_helper.rb │ │ │ │ └── support │ │ │ │ │ ├── should_be_clickable.rb │ │ │ │ │ └── tab_helpers.rb │ │ │ ├── test │ │ │ │ ├── controllers │ │ │ │ │ └── .keep │ │ │ │ ├── fixtures │ │ │ │ │ └── .keep │ │ │ │ ├── helpers │ │ │ │ │ └── .keep │ │ │ │ ├── integration │ │ │ │ │ └── .keep │ │ │ │ ├── mailers │ │ │ │ │ └── .keep │ │ │ │ ├── models │ │ │ │ │ └── .keep │ │ │ │ └── test_helper.rb │ │ │ └── vendor │ │ │ │ └── assets │ │ │ │ ├── javascripts │ │ │ │ └── .keep │ │ │ │ └── stylesheets │ │ │ │ └── .keep │ │ ├── rails_5-0-0 │ │ │ ├── .gitignore │ │ │ ├── Gemfile │ │ │ ├── README.md │ │ │ ├── Rakefile │ │ │ ├── app │ │ │ │ ├── assets │ │ │ │ │ ├── config │ │ │ │ │ │ └── manifest.js │ │ │ │ │ ├── images │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── javascripts │ │ │ │ │ │ ├── application.js │ │ │ │ │ │ ├── cable.js │ │ │ │ │ │ ├── channels │ │ │ │ │ │ │ └── .keep │ │ │ │ │ │ ├── galaxies.coffee │ │ │ │ │ │ ├── home.coffee │ │ │ │ │ │ ├── planets.coffee │ │ │ │ │ │ └── stars.coffee │ │ │ │ │ └── stylesheets │ │ │ │ │ │ ├── application.css │ │ │ │ │ │ ├── galaxies.scss │ │ │ │ │ │ ├── home.scss │ │ │ │ │ │ ├── planets.scss │ │ │ │ │ │ ├── scaffolds.scss │ │ │ │ │ │ └── stars.scss │ │ │ │ ├── channels │ │ │ │ │ └── application_cable │ │ │ │ │ │ ├── channel.rb │ │ │ │ │ │ └── connection.rb │ │ │ │ ├── controllers │ │ │ │ │ ├── application_controller.rb │ │ │ │ │ ├── concerns │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── galaxies_controller.rb │ │ │ │ │ ├── home_controller.rb │ │ │ │ │ ├── planets_controller.rb │ │ │ │ │ └── stars_controller.rb │ │ │ │ ├── helpers │ │ │ │ │ ├── application_helper.rb │ │ │ │ │ ├── galaxies_helper.rb │ │ │ │ │ ├── home_helper.rb │ │ │ │ │ ├── planets_helper.rb │ │ │ │ │ └── stars_helper.rb │ │ │ │ ├── jobs │ │ │ │ │ └── application_job.rb │ │ │ │ ├── mailers │ │ │ │ │ └── application_mailer.rb │ │ │ │ ├── models │ │ │ │ │ ├── application_record.rb │ │ │ │ │ ├── concerns │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── galaxy.rb │ │ │ │ │ ├── planet.rb │ │ │ │ │ └── star.rb │ │ │ │ ├── tabs │ │ │ │ │ └── tabulous.rb │ │ │ │ └── views │ │ │ │ │ ├── galaxies │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── _galaxy.json.jbuilder │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ ├── home │ │ │ │ │ └── index.html.erb │ │ │ │ │ ├── layouts │ │ │ │ │ ├── application.html.erb │ │ │ │ │ ├── mailer.html.erb │ │ │ │ │ └── mailer.text.erb │ │ │ │ │ ├── planets │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── _planet.json.jbuilder │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ └── stars │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── _star.json.jbuilder │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ ├── bin │ │ │ │ ├── bundle │ │ │ │ ├── rails │ │ │ │ ├── rake │ │ │ │ ├── setup │ │ │ │ ├── spring │ │ │ │ └── update │ │ │ ├── config.ru │ │ │ ├── config │ │ │ │ ├── application.rb │ │ │ │ ├── boot.rb │ │ │ │ ├── cable.yml │ │ │ │ ├── database.yml │ │ │ │ ├── environment.rb │ │ │ │ ├── environments │ │ │ │ │ ├── development.rb │ │ │ │ │ ├── production.rb │ │ │ │ │ └── test.rb │ │ │ │ ├── initializers │ │ │ │ │ ├── application_controller_renderer.rb │ │ │ │ │ ├── assets.rb │ │ │ │ │ ├── backtrace_silencers.rb │ │ │ │ │ ├── cookies_serializer.rb │ │ │ │ │ ├── filter_parameter_logging.rb │ │ │ │ │ ├── inflections.rb │ │ │ │ │ ├── mime_types.rb │ │ │ │ │ ├── new_framework_defaults.rb │ │ │ │ │ ├── session_store.rb │ │ │ │ │ └── wrap_parameters.rb │ │ │ │ ├── locales │ │ │ │ │ └── en.yml │ │ │ │ ├── puma.rb │ │ │ │ ├── routes.rb │ │ │ │ ├── secrets.yml │ │ │ │ └── spring.rb │ │ │ ├── db │ │ │ │ ├── migrate │ │ │ │ │ ├── 20160806173947_create_galaxies.rb │ │ │ │ │ ├── 20160806173950_create_planets.rb │ │ │ │ │ └── 20160806173952_create_stars.rb │ │ │ │ ├── schema.rb │ │ │ │ └── seeds.rb │ │ │ ├── lib │ │ │ │ ├── assets │ │ │ │ │ └── .keep │ │ │ │ └── tasks │ │ │ │ │ ├── .keep │ │ │ │ │ └── testing.rake │ │ │ ├── log │ │ │ │ └── .keep │ │ │ ├── public │ │ │ │ ├── 404.html │ │ │ │ ├── 422.html │ │ │ │ ├── 500.html │ │ │ │ ├── apple-touch-icon-precomposed.png │ │ │ │ ├── apple-touch-icon.png │ │ │ │ ├── favicon.ico │ │ │ │ └── robots.txt │ │ │ ├── spec │ │ │ │ ├── features │ │ │ │ │ ├── front_page_spec.rb │ │ │ │ │ └── simple_tabs_spec.rb │ │ │ │ ├── spec_helper.rb │ │ │ │ └── support │ │ │ │ │ ├── should_be_clickable.rb │ │ │ │ │ └── tab_helpers.rb │ │ │ ├── test │ │ │ │ ├── controllers │ │ │ │ │ └── .keep │ │ │ │ ├── fixtures │ │ │ │ │ ├── .keep │ │ │ │ │ └── files │ │ │ │ │ │ └── .keep │ │ │ │ ├── helpers │ │ │ │ │ └── .keep │ │ │ │ ├── integration │ │ │ │ │ └── .keep │ │ │ │ ├── mailers │ │ │ │ │ └── .keep │ │ │ │ ├── models │ │ │ │ │ └── .keep │ │ │ │ └── test_helper.rb │ │ │ ├── tmp │ │ │ │ └── .keep │ │ │ └── vendor │ │ │ │ └── assets │ │ │ │ ├── javascripts │ │ │ │ └── .keep │ │ │ │ └── stylesheets │ │ │ │ └── .keep │ │ └── shared │ │ │ ├── app │ │ │ └── tabs │ │ │ │ └── tabulous.rb │ │ │ └── spec │ │ │ └── features │ │ │ └── simple_tabs_spec.rb │ ├── subtabs │ │ ├── application_template.rb │ │ ├── rails_4-0-5 │ │ │ ├── .gitignore │ │ │ ├── Gemfile │ │ │ ├── README.rdoc │ │ │ ├── Rakefile │ │ │ ├── app │ │ │ │ ├── assets │ │ │ │ │ ├── images │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── javascripts │ │ │ │ │ │ ├── application.js │ │ │ │ │ │ ├── exoplanets.js.coffee │ │ │ │ │ │ ├── galaxies │ │ │ │ │ │ │ ├── elliptical_galaxies.js.coffee │ │ │ │ │ │ │ ├── lenticular_galaxies.js.coffee │ │ │ │ │ │ │ └── spiral_galaxies.js.coffee │ │ │ │ │ │ ├── home.js.coffee │ │ │ │ │ │ ├── misc.js.coffee │ │ │ │ │ │ ├── rogue_planets.js.coffee │ │ │ │ │ │ └── stars.js.coffee │ │ │ │ │ └── stylesheets │ │ │ │ │ │ ├── application.css │ │ │ │ │ │ ├── exoplanets.css.scss │ │ │ │ │ │ ├── galaxies │ │ │ │ │ │ ├── elliptical_galaxies.css.scss │ │ │ │ │ │ ├── lenticular_galaxies.css.scss │ │ │ │ │ │ └── spiral_galaxies.css.scss │ │ │ │ │ │ ├── home.css.scss │ │ │ │ │ │ ├── misc.css.scss │ │ │ │ │ │ ├── reset.css │ │ │ │ │ │ ├── rogue_planets.css.scss │ │ │ │ │ │ ├── scaffolds.css.scss │ │ │ │ │ │ └── stars.css.scss │ │ │ │ ├── controllers │ │ │ │ │ ├── application_controller.rb │ │ │ │ │ ├── concerns │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── exoplanets_controller.rb │ │ │ │ │ ├── galaxies │ │ │ │ │ │ ├── elliptical_galaxies_controller.rb │ │ │ │ │ │ ├── lenticular_galaxies_controller.rb │ │ │ │ │ │ └── spiral_galaxies_controller.rb │ │ │ │ │ ├── home_controller.rb │ │ │ │ │ ├── misc_controller.rb │ │ │ │ │ ├── rogue_planets_controller.rb │ │ │ │ │ └── stars_controller.rb │ │ │ │ ├── helpers │ │ │ │ │ ├── application_helper.rb │ │ │ │ │ ├── exoplanets_helper.rb │ │ │ │ │ ├── galaxies │ │ │ │ │ │ ├── elliptical_galaxies_helper.rb │ │ │ │ │ │ ├── lenticular_galaxies_helper.rb │ │ │ │ │ │ └── spiral_galaxies_helper.rb │ │ │ │ │ ├── home_helper.rb │ │ │ │ │ ├── misc_helper.rb │ │ │ │ │ ├── rogue_planets_helper.rb │ │ │ │ │ └── stars_helper.rb │ │ │ │ ├── mailers │ │ │ │ │ └── .keep │ │ │ │ ├── models │ │ │ │ │ ├── .keep │ │ │ │ │ ├── concerns │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── exoplanet.rb │ │ │ │ │ ├── galaxies.rb │ │ │ │ │ ├── galaxies │ │ │ │ │ │ ├── elliptical_galaxy.rb │ │ │ │ │ │ ├── lenticular_galaxy.rb │ │ │ │ │ │ └── spiral_galaxy.rb │ │ │ │ │ ├── galaxy.rb │ │ │ │ │ ├── planet.rb │ │ │ │ │ ├── rogue_planet.rb │ │ │ │ │ └── star.rb │ │ │ │ ├── tabs │ │ │ │ │ └── tabulous.rb │ │ │ │ └── views │ │ │ │ │ ├── exoplanets │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ ├── galaxies │ │ │ │ │ ├── elliptical_galaxies │ │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ │ ├── index.html.erb │ │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ │ ├── new.html.erb │ │ │ │ │ │ ├── show.html.erb │ │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ ├── lenticular_galaxies │ │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ │ ├── index.html.erb │ │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ │ ├── new.html.erb │ │ │ │ │ │ ├── show.html.erb │ │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ └── spiral_galaxies │ │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ │ ├── index.html.erb │ │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ │ ├── new.html.erb │ │ │ │ │ │ ├── show.html.erb │ │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ ├── home │ │ │ │ │ └── index.html.erb │ │ │ │ │ ├── layouts │ │ │ │ │ └── application.html.erb │ │ │ │ │ ├── misc │ │ │ │ │ ├── always_disabled.html.erb │ │ │ │ │ ├── always_enabled.html.erb │ │ │ │ │ ├── always_hidden.html.erb │ │ │ │ │ └── always_visible.html.erb │ │ │ │ │ ├── rogue_planets │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ └── stars │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ ├── bin │ │ │ │ ├── bundle │ │ │ │ ├── rails │ │ │ │ └── rake │ │ │ ├── config.ru │ │ │ ├── config │ │ │ │ ├── application.rb │ │ │ │ ├── boot.rb │ │ │ │ ├── database.yml │ │ │ │ ├── environment.rb │ │ │ │ ├── environments │ │ │ │ │ ├── development.rb │ │ │ │ │ ├── production.rb │ │ │ │ │ └── test.rb │ │ │ │ ├── initializers │ │ │ │ │ ├── backtrace_silencers.rb │ │ │ │ │ ├── filter_parameter_logging.rb │ │ │ │ │ ├── inflections.rb │ │ │ │ │ ├── mime_types.rb │ │ │ │ │ ├── secret_token.rb │ │ │ │ │ ├── session_store.rb │ │ │ │ │ └── wrap_parameters.rb │ │ │ │ ├── locales │ │ │ │ │ └── en.yml │ │ │ │ └── routes.rb │ │ │ ├── db │ │ │ │ ├── migrate │ │ │ │ │ ├── 20140529011942_create_galaxies.rb │ │ │ │ │ ├── 20140529011943_create_galaxies_elliptical_galaxies.rb │ │ │ │ │ ├── 20140529011945_create_galaxies_lenticular_galaxies.rb │ │ │ │ │ ├── 20140529011947_create_galaxies_spiral_galaxies.rb │ │ │ │ │ ├── 20140529011949_create_planets.rb │ │ │ │ │ ├── 20140529011951_create_exoplanets.rb │ │ │ │ │ ├── 20140529011952_create_rogue_planets.rb │ │ │ │ │ └── 20140529011954_create_stars.rb │ │ │ │ ├── schema.rb │ │ │ │ └── seeds.rb │ │ │ ├── lib │ │ │ │ ├── assets │ │ │ │ │ └── .keep │ │ │ │ └── tasks │ │ │ │ │ ├── .keep │ │ │ │ │ └── testing.rake │ │ │ ├── log │ │ │ │ └── .keep │ │ │ ├── public │ │ │ │ ├── 404.html │ │ │ │ ├── 422.html │ │ │ │ ├── 500.html │ │ │ │ ├── favicon.ico │ │ │ │ ├── robots.txt │ │ │ │ └── stylesheets │ │ │ │ │ ├── application.css │ │ │ │ │ └── reset.css │ │ │ ├── spec │ │ │ │ ├── features │ │ │ │ │ ├── front_page_spec.rb │ │ │ │ │ └── subtabs_spec.rb │ │ │ │ ├── spec_helper.rb │ │ │ │ └── support │ │ │ │ │ ├── should_be_clickable.rb │ │ │ │ │ └── tab_helpers.rb │ │ │ ├── test │ │ │ │ ├── controllers │ │ │ │ │ └── .keep │ │ │ │ ├── fixtures │ │ │ │ │ └── .keep │ │ │ │ ├── helpers │ │ │ │ │ └── .keep │ │ │ │ ├── integration │ │ │ │ │ └── .keep │ │ │ │ ├── mailers │ │ │ │ │ └── .keep │ │ │ │ ├── models │ │ │ │ │ └── .keep │ │ │ │ └── test_helper.rb │ │ │ └── vendor │ │ │ │ └── assets │ │ │ │ ├── javascripts │ │ │ │ └── .keep │ │ │ │ └── stylesheets │ │ │ │ └── .keep │ │ ├── rails_4-1-1 │ │ │ ├── .gitignore │ │ │ ├── Gemfile │ │ │ ├── README.rdoc │ │ │ ├── Rakefile │ │ │ ├── app │ │ │ │ ├── assets │ │ │ │ │ ├── images │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── javascripts │ │ │ │ │ │ ├── application.js │ │ │ │ │ │ ├── exoplanets.js.coffee │ │ │ │ │ │ ├── galaxies │ │ │ │ │ │ │ ├── elliptical_galaxies.js.coffee │ │ │ │ │ │ │ ├── lenticular_galaxies.js.coffee │ │ │ │ │ │ │ └── spiral_galaxies.js.coffee │ │ │ │ │ │ ├── home.js.coffee │ │ │ │ │ │ ├── misc.js.coffee │ │ │ │ │ │ ├── rogue_planets.js.coffee │ │ │ │ │ │ └── stars.js.coffee │ │ │ │ │ └── stylesheets │ │ │ │ │ │ ├── application.css │ │ │ │ │ │ ├── exoplanets.css.scss │ │ │ │ │ │ ├── galaxies │ │ │ │ │ │ ├── elliptical_galaxies.css.scss │ │ │ │ │ │ ├── lenticular_galaxies.css.scss │ │ │ │ │ │ └── spiral_galaxies.css.scss │ │ │ │ │ │ ├── home.css.scss │ │ │ │ │ │ ├── misc.css.scss │ │ │ │ │ │ ├── reset.css │ │ │ │ │ │ ├── rogue_planets.css.scss │ │ │ │ │ │ ├── scaffolds.css.scss │ │ │ │ │ │ └── stars.css.scss │ │ │ │ ├── controllers │ │ │ │ │ ├── application_controller.rb │ │ │ │ │ ├── concerns │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── exoplanets_controller.rb │ │ │ │ │ ├── galaxies │ │ │ │ │ │ ├── elliptical_galaxies_controller.rb │ │ │ │ │ │ ├── lenticular_galaxies_controller.rb │ │ │ │ │ │ └── spiral_galaxies_controller.rb │ │ │ │ │ ├── home_controller.rb │ │ │ │ │ ├── misc_controller.rb │ │ │ │ │ ├── rogue_planets_controller.rb │ │ │ │ │ └── stars_controller.rb │ │ │ │ ├── helpers │ │ │ │ │ ├── application_helper.rb │ │ │ │ │ ├── exoplanets_helper.rb │ │ │ │ │ ├── galaxies │ │ │ │ │ │ ├── elliptical_galaxies_helper.rb │ │ │ │ │ │ ├── lenticular_galaxies_helper.rb │ │ │ │ │ │ └── spiral_galaxies_helper.rb │ │ │ │ │ ├── home_helper.rb │ │ │ │ │ ├── misc_helper.rb │ │ │ │ │ ├── rogue_planets_helper.rb │ │ │ │ │ └── stars_helper.rb │ │ │ │ ├── mailers │ │ │ │ │ └── .keep │ │ │ │ ├── models │ │ │ │ │ ├── .keep │ │ │ │ │ ├── concerns │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── exoplanet.rb │ │ │ │ │ ├── galaxies.rb │ │ │ │ │ ├── galaxies │ │ │ │ │ │ ├── elliptical_galaxy.rb │ │ │ │ │ │ ├── lenticular_galaxy.rb │ │ │ │ │ │ └── spiral_galaxy.rb │ │ │ │ │ ├── galaxy.rb │ │ │ │ │ ├── planet.rb │ │ │ │ │ ├── rogue_planet.rb │ │ │ │ │ └── star.rb │ │ │ │ ├── tabs │ │ │ │ │ └── tabulous.rb │ │ │ │ └── views │ │ │ │ │ ├── exoplanets │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ ├── galaxies │ │ │ │ │ ├── elliptical_galaxies │ │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ │ ├── index.html.erb │ │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ │ ├── new.html.erb │ │ │ │ │ │ ├── show.html.erb │ │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ ├── lenticular_galaxies │ │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ │ ├── index.html.erb │ │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ │ ├── new.html.erb │ │ │ │ │ │ ├── show.html.erb │ │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ └── spiral_galaxies │ │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ │ ├── index.html.erb │ │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ │ ├── new.html.erb │ │ │ │ │ │ ├── show.html.erb │ │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ ├── home │ │ │ │ │ └── index.html.erb │ │ │ │ │ ├── layouts │ │ │ │ │ └── application.html.erb │ │ │ │ │ ├── misc │ │ │ │ │ ├── always_disabled.html.erb │ │ │ │ │ ├── always_enabled.html.erb │ │ │ │ │ ├── always_hidden.html.erb │ │ │ │ │ └── always_visible.html.erb │ │ │ │ │ ├── rogue_planets │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ └── stars │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ ├── bin │ │ │ │ ├── bundle │ │ │ │ ├── rails │ │ │ │ ├── rake │ │ │ │ └── spring │ │ │ ├── config.ru │ │ │ ├── config │ │ │ │ ├── application.rb │ │ │ │ ├── boot.rb │ │ │ │ ├── database.yml │ │ │ │ ├── environment.rb │ │ │ │ ├── environments │ │ │ │ │ ├── development.rb │ │ │ │ │ ├── production.rb │ │ │ │ │ └── test.rb │ │ │ │ ├── initializers │ │ │ │ │ ├── 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 │ │ │ │ ├── migrate │ │ │ │ │ ├── 20140529014547_create_galaxies.rb │ │ │ │ │ ├── 20140529014549_create_galaxies_elliptical_galaxies.rb │ │ │ │ │ ├── 20140529014551_create_galaxies_lenticular_galaxies.rb │ │ │ │ │ ├── 20140529014553_create_galaxies_spiral_galaxies.rb │ │ │ │ │ ├── 20140529014555_create_planets.rb │ │ │ │ │ ├── 20140529014557_create_exoplanets.rb │ │ │ │ │ ├── 20140529014559_create_rogue_planets.rb │ │ │ │ │ └── 20140529014602_create_stars.rb │ │ │ │ ├── schema.rb │ │ │ │ └── seeds.rb │ │ │ ├── lib │ │ │ │ ├── assets │ │ │ │ │ └── .keep │ │ │ │ └── tasks │ │ │ │ │ ├── .keep │ │ │ │ │ └── testing.rake │ │ │ ├── log │ │ │ │ └── .keep │ │ │ ├── public │ │ │ │ ├── 404.html │ │ │ │ ├── 422.html │ │ │ │ ├── 500.html │ │ │ │ ├── favicon.ico │ │ │ │ ├── robots.txt │ │ │ │ └── stylesheets │ │ │ │ │ ├── application.css │ │ │ │ │ └── reset.css │ │ │ ├── spec │ │ │ │ ├── features │ │ │ │ │ ├── front_page_spec.rb │ │ │ │ │ └── subtabs_spec.rb │ │ │ │ ├── spec_helper.rb │ │ │ │ └── support │ │ │ │ │ ├── should_be_clickable.rb │ │ │ │ │ └── tab_helpers.rb │ │ │ ├── test │ │ │ │ ├── controllers │ │ │ │ │ └── .keep │ │ │ │ ├── fixtures │ │ │ │ │ └── .keep │ │ │ │ ├── helpers │ │ │ │ │ └── .keep │ │ │ │ ├── integration │ │ │ │ │ └── .keep │ │ │ │ ├── mailers │ │ │ │ │ └── .keep │ │ │ │ ├── models │ │ │ │ │ └── .keep │ │ │ │ └── test_helper.rb │ │ │ └── vendor │ │ │ │ └── assets │ │ │ │ ├── javascripts │ │ │ │ └── .keep │ │ │ │ └── stylesheets │ │ │ │ └── .keep │ │ ├── rails_4-2-0 │ │ │ ├── .gitignore │ │ │ ├── Gemfile │ │ │ ├── README.rdoc │ │ │ ├── Rakefile │ │ │ ├── app │ │ │ │ ├── assets │ │ │ │ │ ├── images │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── javascripts │ │ │ │ │ │ ├── application.js │ │ │ │ │ │ ├── exoplanets.coffee │ │ │ │ │ │ ├── galaxies │ │ │ │ │ │ │ ├── elliptical_galaxies.coffee │ │ │ │ │ │ │ ├── lenticular_galaxies.coffee │ │ │ │ │ │ │ └── spiral_galaxies.coffee │ │ │ │ │ │ ├── home.coffee │ │ │ │ │ │ ├── misc.coffee │ │ │ │ │ │ ├── rogue_planets.coffee │ │ │ │ │ │ └── stars.coffee │ │ │ │ │ └── stylesheets │ │ │ │ │ │ ├── application.css │ │ │ │ │ │ ├── exoplanets.scss │ │ │ │ │ │ ├── galaxies │ │ │ │ │ │ ├── elliptical_galaxies.scss │ │ │ │ │ │ ├── lenticular_galaxies.scss │ │ │ │ │ │ └── spiral_galaxies.scss │ │ │ │ │ │ ├── home.scss │ │ │ │ │ │ ├── misc.scss │ │ │ │ │ │ ├── reset.css │ │ │ │ │ │ ├── rogue_planets.scss │ │ │ │ │ │ ├── scaffolds.scss │ │ │ │ │ │ └── stars.scss │ │ │ │ ├── controllers │ │ │ │ │ ├── application_controller.rb │ │ │ │ │ ├── concerns │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── exoplanets_controller.rb │ │ │ │ │ ├── galaxies │ │ │ │ │ │ ├── elliptical_galaxies_controller.rb │ │ │ │ │ │ ├── lenticular_galaxies_controller.rb │ │ │ │ │ │ └── spiral_galaxies_controller.rb │ │ │ │ │ ├── home_controller.rb │ │ │ │ │ ├── misc_controller.rb │ │ │ │ │ ├── rogue_planets_controller.rb │ │ │ │ │ └── stars_controller.rb │ │ │ │ ├── helpers │ │ │ │ │ ├── application_helper.rb │ │ │ │ │ ├── exoplanets_helper.rb │ │ │ │ │ ├── galaxies │ │ │ │ │ │ ├── elliptical_galaxies_helper.rb │ │ │ │ │ │ ├── lenticular_galaxies_helper.rb │ │ │ │ │ │ └── spiral_galaxies_helper.rb │ │ │ │ │ ├── home_helper.rb │ │ │ │ │ ├── misc_helper.rb │ │ │ │ │ ├── rogue_planets_helper.rb │ │ │ │ │ └── stars_helper.rb │ │ │ │ ├── mailers │ │ │ │ │ └── .keep │ │ │ │ ├── models │ │ │ │ │ ├── .keep │ │ │ │ │ ├── concerns │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── exoplanet.rb │ │ │ │ │ ├── galaxies.rb │ │ │ │ │ ├── galaxies │ │ │ │ │ │ ├── elliptical_galaxy.rb │ │ │ │ │ │ ├── lenticular_galaxy.rb │ │ │ │ │ │ └── spiral_galaxy.rb │ │ │ │ │ ├── galaxy.rb │ │ │ │ │ ├── planet.rb │ │ │ │ │ ├── rogue_planet.rb │ │ │ │ │ └── star.rb │ │ │ │ ├── tabs │ │ │ │ │ └── tabulous.rb │ │ │ │ └── views │ │ │ │ │ ├── exoplanets │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ ├── galaxies │ │ │ │ │ ├── elliptical_galaxies │ │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ │ ├── index.html.erb │ │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ │ ├── new.html.erb │ │ │ │ │ │ ├── show.html.erb │ │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ ├── lenticular_galaxies │ │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ │ ├── index.html.erb │ │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ │ ├── new.html.erb │ │ │ │ │ │ ├── show.html.erb │ │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ └── spiral_galaxies │ │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ │ ├── index.html.erb │ │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ │ ├── new.html.erb │ │ │ │ │ │ ├── show.html.erb │ │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ ├── home │ │ │ │ │ └── index.html.erb │ │ │ │ │ ├── layouts │ │ │ │ │ └── application.html.erb │ │ │ │ │ ├── misc │ │ │ │ │ ├── always_disabled.html.erb │ │ │ │ │ ├── always_enabled.html.erb │ │ │ │ │ ├── always_hidden.html.erb │ │ │ │ │ └── always_visible.html.erb │ │ │ │ │ ├── rogue_planets │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ └── stars │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ ├── bin │ │ │ │ ├── bundle │ │ │ │ ├── rails │ │ │ │ ├── rake │ │ │ │ ├── setup │ │ │ │ └── spring │ │ │ ├── config.ru │ │ │ ├── config │ │ │ │ ├── application.rb │ │ │ │ ├── boot.rb │ │ │ │ ├── database.yml │ │ │ │ ├── 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 │ │ │ │ ├── migrate │ │ │ │ │ ├── 20141222142149_create_galaxies.rb │ │ │ │ │ ├── 20141222142150_create_galaxies_elliptical_galaxies.rb │ │ │ │ │ ├── 20141222142152_create_galaxies_lenticular_galaxies.rb │ │ │ │ │ ├── 20141222142154_create_galaxies_spiral_galaxies.rb │ │ │ │ │ ├── 20141222142156_create_planets.rb │ │ │ │ │ ├── 20141222142158_create_exoplanets.rb │ │ │ │ │ ├── 20141222142200_create_rogue_planets.rb │ │ │ │ │ └── 20141222142202_create_stars.rb │ │ │ │ ├── schema.rb │ │ │ │ └── seeds.rb │ │ │ ├── lib │ │ │ │ ├── assets │ │ │ │ │ └── .keep │ │ │ │ └── tasks │ │ │ │ │ ├── .keep │ │ │ │ │ └── testing.rake │ │ │ ├── log │ │ │ │ └── .keep │ │ │ ├── public │ │ │ │ ├── 404.html │ │ │ │ ├── 422.html │ │ │ │ ├── 500.html │ │ │ │ ├── favicon.ico │ │ │ │ ├── robots.txt │ │ │ │ └── stylesheets │ │ │ │ │ ├── application.css │ │ │ │ │ └── reset.css │ │ │ ├── spec │ │ │ │ ├── features │ │ │ │ │ ├── front_page_spec.rb │ │ │ │ │ └── subtabs_spec.rb │ │ │ │ ├── spec_helper.rb │ │ │ │ └── support │ │ │ │ │ ├── should_be_clickable.rb │ │ │ │ │ └── tab_helpers.rb │ │ │ ├── test │ │ │ │ ├── controllers │ │ │ │ │ └── .keep │ │ │ │ ├── fixtures │ │ │ │ │ └── .keep │ │ │ │ ├── helpers │ │ │ │ │ └── .keep │ │ │ │ ├── integration │ │ │ │ │ └── .keep │ │ │ │ ├── mailers │ │ │ │ │ └── .keep │ │ │ │ ├── models │ │ │ │ │ └── .keep │ │ │ │ └── test_helper.rb │ │ │ └── vendor │ │ │ │ └── assets │ │ │ │ ├── javascripts │ │ │ │ └── .keep │ │ │ │ └── stylesheets │ │ │ │ └── .keep │ │ ├── rails_5-0-0 │ │ │ ├── .gitignore │ │ │ ├── Gemfile │ │ │ ├── README.md │ │ │ ├── Rakefile │ │ │ ├── app │ │ │ │ ├── assets │ │ │ │ │ ├── config │ │ │ │ │ │ └── manifest.js │ │ │ │ │ ├── images │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── javascripts │ │ │ │ │ │ ├── application.js │ │ │ │ │ │ ├── cable.js │ │ │ │ │ │ ├── channels │ │ │ │ │ │ │ └── .keep │ │ │ │ │ │ ├── exoplanets.coffee │ │ │ │ │ │ ├── galaxies │ │ │ │ │ │ │ ├── elliptical_galaxies.coffee │ │ │ │ │ │ │ ├── lenticular_galaxies.coffee │ │ │ │ │ │ │ └── spiral_galaxies.coffee │ │ │ │ │ │ ├── home.coffee │ │ │ │ │ │ ├── misc.coffee │ │ │ │ │ │ ├── rogue_planets.coffee │ │ │ │ │ │ └── stars.coffee │ │ │ │ │ └── stylesheets │ │ │ │ │ │ ├── application.css │ │ │ │ │ │ ├── exoplanets.scss │ │ │ │ │ │ ├── galaxies │ │ │ │ │ │ ├── elliptical_galaxies.scss │ │ │ │ │ │ ├── lenticular_galaxies.scss │ │ │ │ │ │ └── spiral_galaxies.scss │ │ │ │ │ │ ├── home.scss │ │ │ │ │ │ ├── misc.scss │ │ │ │ │ │ ├── reset.css │ │ │ │ │ │ ├── rogue_planets.scss │ │ │ │ │ │ ├── scaffolds.scss │ │ │ │ │ │ └── stars.scss │ │ │ │ ├── channels │ │ │ │ │ └── application_cable │ │ │ │ │ │ ├── channel.rb │ │ │ │ │ │ └── connection.rb │ │ │ │ ├── controllers │ │ │ │ │ ├── application_controller.rb │ │ │ │ │ ├── concerns │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── exoplanets_controller.rb │ │ │ │ │ ├── galaxies │ │ │ │ │ │ ├── elliptical_galaxies_controller.rb │ │ │ │ │ │ ├── lenticular_galaxies_controller.rb │ │ │ │ │ │ └── spiral_galaxies_controller.rb │ │ │ │ │ ├── home_controller.rb │ │ │ │ │ ├── misc_controller.rb │ │ │ │ │ ├── rogue_planets_controller.rb │ │ │ │ │ └── stars_controller.rb │ │ │ │ ├── helpers │ │ │ │ │ ├── application_helper.rb │ │ │ │ │ ├── exoplanets_helper.rb │ │ │ │ │ ├── galaxies │ │ │ │ │ │ ├── elliptical_galaxies_helper.rb │ │ │ │ │ │ ├── lenticular_galaxies_helper.rb │ │ │ │ │ │ └── spiral_galaxies_helper.rb │ │ │ │ │ ├── home_helper.rb │ │ │ │ │ ├── misc_helper.rb │ │ │ │ │ ├── rogue_planets_helper.rb │ │ │ │ │ └── stars_helper.rb │ │ │ │ ├── jobs │ │ │ │ │ └── application_job.rb │ │ │ │ ├── mailers │ │ │ │ │ └── application_mailer.rb │ │ │ │ ├── models │ │ │ │ │ ├── application_record.rb │ │ │ │ │ ├── concerns │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── exoplanet.rb │ │ │ │ │ ├── galaxies.rb │ │ │ │ │ ├── galaxies │ │ │ │ │ │ ├── elliptical_galaxy.rb │ │ │ │ │ │ ├── lenticular_galaxy.rb │ │ │ │ │ │ └── spiral_galaxy.rb │ │ │ │ │ ├── galaxy.rb │ │ │ │ │ ├── planet.rb │ │ │ │ │ ├── rogue_planet.rb │ │ │ │ │ └── star.rb │ │ │ │ ├── tabs │ │ │ │ │ └── tabulous.rb │ │ │ │ └── views │ │ │ │ │ ├── exoplanets │ │ │ │ │ ├── _exoplanet.json.jbuilder │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ ├── galaxies │ │ │ │ │ ├── elliptical_galaxies │ │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ │ ├── _galaxies_elliptical_galaxy.json.jbuilder │ │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ │ ├── index.html.erb │ │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ │ ├── new.html.erb │ │ │ │ │ │ ├── show.html.erb │ │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ ├── lenticular_galaxies │ │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ │ ├── _galaxies_lenticular_galaxy.json.jbuilder │ │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ │ ├── index.html.erb │ │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ │ ├── new.html.erb │ │ │ │ │ │ ├── show.html.erb │ │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ └── spiral_galaxies │ │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ │ ├── _galaxies_spiral_galaxy.json.jbuilder │ │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ │ ├── index.html.erb │ │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ │ ├── new.html.erb │ │ │ │ │ │ ├── show.html.erb │ │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ ├── home │ │ │ │ │ └── index.html.erb │ │ │ │ │ ├── layouts │ │ │ │ │ ├── application.html.erb │ │ │ │ │ ├── mailer.html.erb │ │ │ │ │ └── mailer.text.erb │ │ │ │ │ ├── misc │ │ │ │ │ ├── always_disabled.html.erb │ │ │ │ │ ├── always_enabled.html.erb │ │ │ │ │ ├── always_hidden.html.erb │ │ │ │ │ └── always_visible.html.erb │ │ │ │ │ ├── rogue_planets │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── _rogue_planet.json.jbuilder │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ │ │ └── stars │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ ├── _star.json.jbuilder │ │ │ │ │ ├── edit.html.erb │ │ │ │ │ ├── index.html.erb │ │ │ │ │ ├── index.json.jbuilder │ │ │ │ │ ├── new.html.erb │ │ │ │ │ ├── show.html.erb │ │ │ │ │ └── show.json.jbuilder │ │ │ ├── bin │ │ │ │ ├── bundle │ │ │ │ ├── rails │ │ │ │ ├── rake │ │ │ │ ├── setup │ │ │ │ ├── spring │ │ │ │ └── update │ │ │ ├── config.ru │ │ │ ├── config │ │ │ │ ├── application.rb │ │ │ │ ├── boot.rb │ │ │ │ ├── cable.yml │ │ │ │ ├── database.yml │ │ │ │ ├── environment.rb │ │ │ │ ├── environments │ │ │ │ │ ├── development.rb │ │ │ │ │ ├── production.rb │ │ │ │ │ └── test.rb │ │ │ │ ├── initializers │ │ │ │ │ ├── application_controller_renderer.rb │ │ │ │ │ ├── assets.rb │ │ │ │ │ ├── backtrace_silencers.rb │ │ │ │ │ ├── cookies_serializer.rb │ │ │ │ │ ├── filter_parameter_logging.rb │ │ │ │ │ ├── inflections.rb │ │ │ │ │ ├── mime_types.rb │ │ │ │ │ ├── new_framework_defaults.rb │ │ │ │ │ ├── session_store.rb │ │ │ │ │ └── wrap_parameters.rb │ │ │ │ ├── locales │ │ │ │ │ └── en.yml │ │ │ │ ├── puma.rb │ │ │ │ ├── routes.rb │ │ │ │ ├── secrets.yml │ │ │ │ └── spring.rb │ │ │ ├── db │ │ │ │ ├── migrate │ │ │ │ │ ├── 20160806175001_create_galaxies.rb │ │ │ │ │ ├── 20160806175003_create_galaxies_elliptical_galaxies.rb │ │ │ │ │ ├── 20160806175006_create_galaxies_lenticular_galaxies.rb │ │ │ │ │ ├── 20160806175008_create_galaxies_spiral_galaxies.rb │ │ │ │ │ ├── 20160806175011_create_planets.rb │ │ │ │ │ ├── 20160806175013_create_exoplanets.rb │ │ │ │ │ ├── 20160806175016_create_rogue_planets.rb │ │ │ │ │ └── 20160806175018_create_stars.rb │ │ │ │ ├── schema.rb │ │ │ │ └── seeds.rb │ │ │ ├── lib │ │ │ │ ├── assets │ │ │ │ │ └── .keep │ │ │ │ └── tasks │ │ │ │ │ ├── .keep │ │ │ │ │ └── testing.rake │ │ │ ├── log │ │ │ │ └── .keep │ │ │ ├── public │ │ │ │ ├── 404.html │ │ │ │ ├── 422.html │ │ │ │ ├── 500.html │ │ │ │ ├── apple-touch-icon-precomposed.png │ │ │ │ ├── apple-touch-icon.png │ │ │ │ ├── favicon.ico │ │ │ │ ├── robots.txt │ │ │ │ └── stylesheets │ │ │ │ │ ├── application.css │ │ │ │ │ └── reset.css │ │ │ ├── spec │ │ │ │ ├── features │ │ │ │ │ ├── front_page_spec.rb │ │ │ │ │ └── subtabs_spec.rb │ │ │ │ ├── spec_helper.rb │ │ │ │ └── support │ │ │ │ │ ├── should_be_clickable.rb │ │ │ │ │ └── tab_helpers.rb │ │ │ ├── test │ │ │ │ ├── controllers │ │ │ │ │ └── .keep │ │ │ │ ├── fixtures │ │ │ │ │ ├── .keep │ │ │ │ │ └── files │ │ │ │ │ │ └── .keep │ │ │ │ ├── helpers │ │ │ │ │ └── .keep │ │ │ │ ├── integration │ │ │ │ │ └── .keep │ │ │ │ ├── mailers │ │ │ │ │ └── .keep │ │ │ │ ├── models │ │ │ │ │ └── .keep │ │ │ │ └── test_helper.rb │ │ │ ├── tmp │ │ │ │ └── .keep │ │ │ └── vendor │ │ │ │ └── assets │ │ │ │ ├── javascripts │ │ │ │ └── .keep │ │ │ │ └── stylesheets │ │ │ │ └── .keep │ │ └── shared │ │ │ ├── app │ │ │ ├── assets │ │ │ │ └── stylesheets │ │ │ │ │ ├── application.css │ │ │ │ │ └── reset.css │ │ │ └── tabs │ │ │ │ └── tabulous.rb │ │ │ ├── public │ │ │ └── stylesheets │ │ │ │ ├── application.css │ │ │ │ └── reset.css │ │ │ └── spec │ │ │ └── features │ │ │ └── subtabs_spec.rb │ ├── universal │ │ ├── lib │ │ │ └── tasks │ │ │ │ └── testing.rake │ │ └── spec │ │ │ ├── features │ │ │ └── front_page_spec.rb │ │ │ ├── spec_helper.rb │ │ │ └── support │ │ │ ├── should_be_clickable.rb │ │ │ └── tab_helpers.rb │ └── universal_gemfile.rb ├── lib │ └── tabulous │ │ ├── bootstrap_navbar_renderer_spec.rb │ │ ├── bootstrap_pill_renderer_spec.rb │ │ ├── bootstrap_renderer_spec.rb │ │ ├── config_spec.rb │ │ ├── css_scaffolding_spec.rb │ │ ├── default_renderer_spec.rb │ │ ├── dsl │ │ ├── config_spec.rb │ │ ├── setup_spec.rb │ │ ├── tab_spec.rb │ │ └── tabs_spec.rb │ │ ├── html5_renderer_spec.rb │ │ ├── tab_spec.rb │ │ ├── tabset_spec.rb │ │ ├── tabsets_spec.rb │ │ ├── tabulous_spec.rb │ │ └── view_helpers_spec.rb ├── spec_helper.rb └── support │ └── test_data.rb └── tabulous.gemspec /.gitignore: -------------------------------------------------------------------------------- 1 | Gemfile.lock 2 | pkg/* 3 | *.gem 4 | .bundle 5 | .DS_Store -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | # Specify your gem's dependencies in tabulous.gemspec 4 | gemspec 5 | -------------------------------------------------------------------------------- /lib/generators/tabs/USAGE: -------------------------------------------------------------------------------- 1 | This will generate tabs for your Rails app. -------------------------------------------------------------------------------- /lib/tabulous/tabulous.rb: -------------------------------------------------------------------------------- 1 | module Tabulous 2 | class << self 3 | def setup(&block) 4 | Dsl::Setup.process(&block) 5 | end 6 | end 7 | end 8 | -------------------------------------------------------------------------------- /lib/tabulous/version.rb: -------------------------------------------------------------------------------- 1 | module Tabulous 2 | VERSION = "2.1.4" 3 | end 4 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-0-5/app/controllers/home_controller.rb: -------------------------------------------------------------------------------- 1 | class HomeController < ApplicationController 2 | def index 3 | end 4 | end 5 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-0-5/app/controllers/no_tabs_controller.rb: -------------------------------------------------------------------------------- 1 | class NoTabsController < ApplicationController 2 | def index 3 | end 4 | end 5 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-0-5/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-0-5/app/helpers/galaxies_helper.rb: -------------------------------------------------------------------------------- 1 | module GalaxiesHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-0-5/app/helpers/home_helper.rb: -------------------------------------------------------------------------------- 1 | module HomeHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-0-5/app/helpers/no_tabs_helper.rb: -------------------------------------------------------------------------------- 1 | module NoTabsHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-0-5/app/helpers/planets_helper.rb: -------------------------------------------------------------------------------- 1 | module PlanetsHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-0-5/app/helpers/stars_helper.rb: -------------------------------------------------------------------------------- 1 | module StarsHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-0-5/app/helpers/subtabs_helper.rb: -------------------------------------------------------------------------------- 1 | module SubtabsHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-0-5/app/mailers/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiferous/tabulous/1c019750a4cfbfc54216eed55851774dbac62e7a/spec/applications/bootstrap/rails_4-0-5/app/mailers/.keep -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-0-5/app/models/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiferous/tabulous/1c019750a4cfbfc54216eed55851774dbac62e7a/spec/applications/bootstrap/rails_4-0-5/app/models/.keep -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-0-5/app/models/galaxy.rb: -------------------------------------------------------------------------------- 1 | class Galaxy < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-0-5/app/models/planet.rb: -------------------------------------------------------------------------------- 1 | class Planet < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-0-5/app/models/star.rb: -------------------------------------------------------------------------------- 1 | class Star < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-0-5/app/views/galaxies/new.html.erb: -------------------------------------------------------------------------------- 1 |
Subtab #1
-------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-0-5/app/views/subtabs/three.html.erb: -------------------------------------------------------------------------------- 1 |Subtab #3
-------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-0-5/app/views/subtabs/two.html.erb: -------------------------------------------------------------------------------- 1 |Subtab #2
-------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-0-5/bin/bundle: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__) 3 | load Gem.bin_path('bundler', 'bundle') 4 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-0-5/bin/rake: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | require_relative '../config/boot' 3 | require 'rake' 4 | Rake.application.run 5 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-0-5/lib/assets/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiferous/tabulous/1c019750a4cfbfc54216eed55851774dbac62e7a/spec/applications/bootstrap/rails_4-0-5/lib/assets/.keep -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-0-5/lib/tasks/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiferous/tabulous/1c019750a4cfbfc54216eed55851774dbac62e7a/spec/applications/bootstrap/rails_4-0-5/lib/tasks/.keep -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-0-5/lib/tasks/testing.rake: -------------------------------------------------------------------------------- 1 | task :default => :test -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-0-5/log/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiferous/tabulous/1c019750a4cfbfc54216eed55851774dbac62e7a/spec/applications/bootstrap/rails_4-0-5/log/.keep -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-0-5/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiferous/tabulous/1c019750a4cfbfc54216eed55851774dbac62e7a/spec/applications/bootstrap/rails_4-0-5/public/favicon.ico -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-0-5/test/helpers/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiferous/tabulous/1c019750a4cfbfc54216eed55851774dbac62e7a/spec/applications/bootstrap/rails_4-0-5/test/helpers/.keep -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-0-5/test/mailers/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiferous/tabulous/1c019750a4cfbfc54216eed55851774dbac62e7a/spec/applications/bootstrap/rails_4-0-5/test/mailers/.keep -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-0-5/test/models/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiferous/tabulous/1c019750a4cfbfc54216eed55851774dbac62e7a/spec/applications/bootstrap/rails_4-0-5/test/models/.keep -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-1-1/app/controllers/home_controller.rb: -------------------------------------------------------------------------------- 1 | class HomeController < ApplicationController 2 | def index 3 | end 4 | end 5 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-1-1/app/controllers/no_tabs_controller.rb: -------------------------------------------------------------------------------- 1 | class NoTabsController < ApplicationController 2 | def index 3 | end 4 | end 5 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-1-1/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-1-1/app/helpers/galaxies_helper.rb: -------------------------------------------------------------------------------- 1 | module GalaxiesHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-1-1/app/helpers/home_helper.rb: -------------------------------------------------------------------------------- 1 | module HomeHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-1-1/app/helpers/no_tabs_helper.rb: -------------------------------------------------------------------------------- 1 | module NoTabsHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-1-1/app/helpers/planets_helper.rb: -------------------------------------------------------------------------------- 1 | module PlanetsHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-1-1/app/helpers/stars_helper.rb: -------------------------------------------------------------------------------- 1 | module StarsHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-1-1/app/helpers/subtabs_helper.rb: -------------------------------------------------------------------------------- 1 | module SubtabsHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-1-1/app/mailers/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiferous/tabulous/1c019750a4cfbfc54216eed55851774dbac62e7a/spec/applications/bootstrap/rails_4-1-1/app/mailers/.keep -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-1-1/app/models/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiferous/tabulous/1c019750a4cfbfc54216eed55851774dbac62e7a/spec/applications/bootstrap/rails_4-1-1/app/models/.keep -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-1-1/app/models/galaxy.rb: -------------------------------------------------------------------------------- 1 | class Galaxy < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-1-1/app/models/planet.rb: -------------------------------------------------------------------------------- 1 | class Planet < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-1-1/app/models/star.rb: -------------------------------------------------------------------------------- 1 | class Star < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-1-1/app/views/galaxies/new.html.erb: -------------------------------------------------------------------------------- 1 |Subtab #1
-------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-1-1/app/views/subtabs/three.html.erb: -------------------------------------------------------------------------------- 1 |Subtab #3
-------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-1-1/app/views/subtabs/two.html.erb: -------------------------------------------------------------------------------- 1 |Subtab #2
-------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-1-1/bin/bundle: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__) 3 | load Gem.bin_path('bundler', 'bundle') 4 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-1-1/lib/assets/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiferous/tabulous/1c019750a4cfbfc54216eed55851774dbac62e7a/spec/applications/bootstrap/rails_4-1-1/lib/assets/.keep -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-1-1/lib/tasks/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiferous/tabulous/1c019750a4cfbfc54216eed55851774dbac62e7a/spec/applications/bootstrap/rails_4-1-1/lib/tasks/.keep -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-1-1/lib/tasks/testing.rake: -------------------------------------------------------------------------------- 1 | task :default => :test -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-1-1/log/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiferous/tabulous/1c019750a4cfbfc54216eed55851774dbac62e7a/spec/applications/bootstrap/rails_4-1-1/log/.keep -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-1-1/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiferous/tabulous/1c019750a4cfbfc54216eed55851774dbac62e7a/spec/applications/bootstrap/rails_4-1-1/public/favicon.ico -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-1-1/test/helpers/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiferous/tabulous/1c019750a4cfbfc54216eed55851774dbac62e7a/spec/applications/bootstrap/rails_4-1-1/test/helpers/.keep -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-2-0/app/controllers/home_controller.rb: -------------------------------------------------------------------------------- 1 | class HomeController < ApplicationController 2 | def index 3 | end 4 | end 5 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-2-0/app/controllers/no_tabs_controller.rb: -------------------------------------------------------------------------------- 1 | class NoTabsController < ApplicationController 2 | def index 3 | end 4 | end 5 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-2-0/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-2-0/app/helpers/galaxies_helper.rb: -------------------------------------------------------------------------------- 1 | module GalaxiesHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-2-0/app/helpers/home_helper.rb: -------------------------------------------------------------------------------- 1 | module HomeHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-2-0/app/helpers/no_tabs_helper.rb: -------------------------------------------------------------------------------- 1 | module NoTabsHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-2-0/app/helpers/planets_helper.rb: -------------------------------------------------------------------------------- 1 | module PlanetsHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-2-0/app/helpers/stars_helper.rb: -------------------------------------------------------------------------------- 1 | module StarsHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-2-0/app/helpers/subtabs_helper.rb: -------------------------------------------------------------------------------- 1 | module SubtabsHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-2-0/app/models/galaxy.rb: -------------------------------------------------------------------------------- 1 | class Galaxy < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-2-0/app/models/planet.rb: -------------------------------------------------------------------------------- 1 | class Planet < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-2-0/app/models/star.rb: -------------------------------------------------------------------------------- 1 | class Star < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-2-0/app/views/galaxies/new.html.erb: -------------------------------------------------------------------------------- 1 |Subtab #1
-------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-2-0/app/views/subtabs/three.html.erb: -------------------------------------------------------------------------------- 1 |Subtab #3
-------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-2-0/app/views/subtabs/two.html.erb: -------------------------------------------------------------------------------- 1 |Subtab #2
-------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-2-0/bin/bundle: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__) 3 | load Gem.bin_path('bundler', 'bundle') 4 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-2-0/config/boot.rb: -------------------------------------------------------------------------------- 1 | ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__) 2 | 3 | require 'bundler/setup' # Set up gems listed in the Gemfile. 4 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-2-0/lib/tasks/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiferous/tabulous/1c019750a4cfbfc54216eed55851774dbac62e7a/spec/applications/bootstrap/rails_4-2-0/lib/tasks/.keep -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-2-0/lib/tasks/testing.rake: -------------------------------------------------------------------------------- 1 | task :default => :test -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_4-2-0/log/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiferous/tabulous/1c019750a4cfbfc54216eed55851774dbac62e7a/spec/applications/bootstrap/rails_4-2-0/log/.keep -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_5-0-0/app/assets/config/manifest.js: -------------------------------------------------------------------------------- 1 | //= link_tree ../images 2 | //= link_directory ../javascripts .js 3 | //= link_directory ../stylesheets .css 4 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_5-0-0/app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- 1 | module ApplicationCable 2 | class Channel < ActionCable::Channel::Base 3 | end 4 | end 5 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_5-0-0/app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- 1 | module ApplicationCable 2 | class Connection < ActionCable::Connection::Base 3 | end 4 | end 5 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_5-0-0/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- 1 | class ApplicationController < ActionController::Base 2 | protect_from_forgery with: :exception 3 | end 4 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_5-0-0/app/controllers/home_controller.rb: -------------------------------------------------------------------------------- 1 | class HomeController < ApplicationController 2 | def index 3 | end 4 | end 5 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_5-0-0/app/controllers/no_tabs_controller.rb: -------------------------------------------------------------------------------- 1 | class NoTabsController < ApplicationController 2 | def index 3 | end 4 | end 5 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_5-0-0/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_5-0-0/app/helpers/galaxies_helper.rb: -------------------------------------------------------------------------------- 1 | module GalaxiesHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_5-0-0/app/helpers/home_helper.rb: -------------------------------------------------------------------------------- 1 | module HomeHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_5-0-0/app/helpers/no_tabs_helper.rb: -------------------------------------------------------------------------------- 1 | module NoTabsHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_5-0-0/app/helpers/planets_helper.rb: -------------------------------------------------------------------------------- 1 | module PlanetsHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_5-0-0/app/helpers/stars_helper.rb: -------------------------------------------------------------------------------- 1 | module StarsHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_5-0-0/app/helpers/subtabs_helper.rb: -------------------------------------------------------------------------------- 1 | module SubtabsHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_5-0-0/app/jobs/application_job.rb: -------------------------------------------------------------------------------- 1 | class ApplicationJob < ActiveJob::Base 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_5-0-0/app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- 1 | class ApplicationMailer < ActionMailer::Base 2 | default from: 'from@example.com' 3 | layout 'mailer' 4 | end 5 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_5-0-0/app/models/application_record.rb: -------------------------------------------------------------------------------- 1 | class ApplicationRecord < ActiveRecord::Base 2 | self.abstract_class = true 3 | end 4 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_5-0-0/app/models/galaxy.rb: -------------------------------------------------------------------------------- 1 | class Galaxy < ApplicationRecord 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_5-0-0/app/models/planet.rb: -------------------------------------------------------------------------------- 1 | class Planet < ApplicationRecord 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_5-0-0/app/models/star.rb: -------------------------------------------------------------------------------- 1 | class Star < ApplicationRecord 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_5-0-0/app/views/galaxies/_galaxy.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.extract! galaxy, :id, :name, :created_at, :updated_at 2 | json.url galaxy_url(galaxy, format: :json) -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_5-0-0/app/views/galaxies/index.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.array! @galaxies, partial: 'galaxies/galaxy', as: :galaxy -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_5-0-0/app/views/galaxies/new.html.erb: -------------------------------------------------------------------------------- 1 |Subtab #1
-------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_5-0-0/app/views/subtabs/three.html.erb: -------------------------------------------------------------------------------- 1 |Subtab #3
-------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_5-0-0/app/views/subtabs/two.html.erb: -------------------------------------------------------------------------------- 1 |Subtab #2
-------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_5-0-0/bin/bundle: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__) 3 | load Gem.bin_path('bundler', 'bundle') 4 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_5-0-0/config.ru: -------------------------------------------------------------------------------- 1 | # This file is used by Rack-based servers to start the application. 2 | 3 | require_relative 'config/environment' 4 | 5 | run Rails.application 6 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_5-0-0/config/boot.rb: -------------------------------------------------------------------------------- 1 | ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__) 2 | 3 | require 'bundler/setup' # Set up gems listed in the Gemfile. 4 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_5-0-0/config/spring.rb: -------------------------------------------------------------------------------- 1 | %w( 2 | .ruby-version 3 | .rbenv-vars 4 | tmp/restart.txt 5 | tmp/caching-dev.txt 6 | ).each { |path| Spring.watch(path) } 7 | -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_5-0-0/lib/tasks/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiferous/tabulous/1c019750a4cfbfc54216eed55851774dbac62e7a/spec/applications/bootstrap/rails_5-0-0/lib/tasks/.keep -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_5-0-0/lib/tasks/testing.rake: -------------------------------------------------------------------------------- 1 | task :default => :test -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_5-0-0/log/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiferous/tabulous/1c019750a4cfbfc54216eed55851774dbac62e7a/spec/applications/bootstrap/rails_5-0-0/log/.keep -------------------------------------------------------------------------------- /spec/applications/bootstrap/rails_5-0-0/tmp/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiferous/tabulous/1c019750a4cfbfc54216eed55851774dbac62e7a/spec/applications/bootstrap/rails_5-0-0/tmp/.keep -------------------------------------------------------------------------------- /spec/applications/custom_renderer/rails_4-0-5/app/controllers/home_controller.rb: -------------------------------------------------------------------------------- 1 | class HomeController < ApplicationController 2 | def index 3 | end 4 | end 5 | -------------------------------------------------------------------------------- /spec/applications/custom_renderer/rails_4-0-5/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/custom_renderer/rails_4-0-5/app/helpers/galaxies_helper.rb: -------------------------------------------------------------------------------- 1 | module GalaxiesHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/custom_renderer/rails_4-0-5/app/helpers/home_helper.rb: -------------------------------------------------------------------------------- 1 | module HomeHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/custom_renderer/rails_4-0-5/app/helpers/planets_helper.rb: -------------------------------------------------------------------------------- 1 | module PlanetsHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/custom_renderer/rails_4-0-5/app/helpers/stars_helper.rb: -------------------------------------------------------------------------------- 1 | module StarsHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/custom_renderer/rails_4-0-5/app/models/galaxy.rb: -------------------------------------------------------------------------------- 1 | class Galaxy < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/custom_renderer/rails_4-0-5/app/models/planet.rb: -------------------------------------------------------------------------------- 1 | class Planet < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/custom_renderer/rails_4-0-5/app/models/star.rb: -------------------------------------------------------------------------------- 1 | class Star < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/custom_renderer/rails_4-0-5/app/views/galaxies/new.html.erb: -------------------------------------------------------------------------------- 1 |Subtab #1
-------------------------------------------------------------------------------- /spec/applications/main/rails_4-0-5/app/views/subtabs/three.html.erb: -------------------------------------------------------------------------------- 1 |Subtab #3
-------------------------------------------------------------------------------- /spec/applications/main/rails_4-0-5/app/views/subtabs/two.html.erb: -------------------------------------------------------------------------------- 1 |Subtab #2
-------------------------------------------------------------------------------- /spec/applications/main/rails_4-0-5/bin/bundle: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__) 3 | load Gem.bin_path('bundler', 'bundle') 4 | -------------------------------------------------------------------------------- /spec/applications/main/rails_4-0-5/bin/rake: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | require_relative '../config/boot' 3 | require 'rake' 4 | Rake.application.run 5 | -------------------------------------------------------------------------------- /spec/applications/main/rails_4-0-5/lib/assets/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiferous/tabulous/1c019750a4cfbfc54216eed55851774dbac62e7a/spec/applications/main/rails_4-0-5/lib/assets/.keep -------------------------------------------------------------------------------- /spec/applications/main/rails_4-0-5/lib/tasks/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiferous/tabulous/1c019750a4cfbfc54216eed55851774dbac62e7a/spec/applications/main/rails_4-0-5/lib/tasks/.keep -------------------------------------------------------------------------------- /spec/applications/main/rails_4-0-5/lib/tasks/testing.rake: -------------------------------------------------------------------------------- 1 | task :default => :test -------------------------------------------------------------------------------- /spec/applications/main/rails_4-0-5/log/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiferous/tabulous/1c019750a4cfbfc54216eed55851774dbac62e7a/spec/applications/main/rails_4-0-5/log/.keep -------------------------------------------------------------------------------- /spec/applications/main/rails_4-0-5/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiferous/tabulous/1c019750a4cfbfc54216eed55851774dbac62e7a/spec/applications/main/rails_4-0-5/public/favicon.ico -------------------------------------------------------------------------------- /spec/applications/main/rails_4-0-5/test/fixtures/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiferous/tabulous/1c019750a4cfbfc54216eed55851774dbac62e7a/spec/applications/main/rails_4-0-5/test/fixtures/.keep -------------------------------------------------------------------------------- /spec/applications/main/rails_4-0-5/test/helpers/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiferous/tabulous/1c019750a4cfbfc54216eed55851774dbac62e7a/spec/applications/main/rails_4-0-5/test/helpers/.keep -------------------------------------------------------------------------------- /spec/applications/main/rails_4-0-5/test/mailers/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiferous/tabulous/1c019750a4cfbfc54216eed55851774dbac62e7a/spec/applications/main/rails_4-0-5/test/mailers/.keep -------------------------------------------------------------------------------- /spec/applications/main/rails_4-0-5/test/models/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiferous/tabulous/1c019750a4cfbfc54216eed55851774dbac62e7a/spec/applications/main/rails_4-0-5/test/models/.keep -------------------------------------------------------------------------------- /spec/applications/main/rails_4-1-1/app/controllers/home_controller.rb: -------------------------------------------------------------------------------- 1 | class HomeController < ApplicationController 2 | def index 3 | end 4 | end 5 | -------------------------------------------------------------------------------- /spec/applications/main/rails_4-1-1/app/controllers/no_tabs_controller.rb: -------------------------------------------------------------------------------- 1 | class NoTabsController < ApplicationController 2 | def index 3 | end 4 | end 5 | -------------------------------------------------------------------------------- /spec/applications/main/rails_4-1-1/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/main/rails_4-1-1/app/helpers/galaxies_helper.rb: -------------------------------------------------------------------------------- 1 | module GalaxiesHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/main/rails_4-1-1/app/helpers/home_helper.rb: -------------------------------------------------------------------------------- 1 | module HomeHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/main/rails_4-1-1/app/helpers/no_tabs_helper.rb: -------------------------------------------------------------------------------- 1 | module NoTabsHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/main/rails_4-1-1/app/helpers/planets_helper.rb: -------------------------------------------------------------------------------- 1 | module PlanetsHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/main/rails_4-1-1/app/helpers/stars_helper.rb: -------------------------------------------------------------------------------- 1 | module StarsHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/main/rails_4-1-1/app/helpers/subtabs_helper.rb: -------------------------------------------------------------------------------- 1 | module SubtabsHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/main/rails_4-1-1/app/mailers/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiferous/tabulous/1c019750a4cfbfc54216eed55851774dbac62e7a/spec/applications/main/rails_4-1-1/app/mailers/.keep -------------------------------------------------------------------------------- /spec/applications/main/rails_4-1-1/app/models/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiferous/tabulous/1c019750a4cfbfc54216eed55851774dbac62e7a/spec/applications/main/rails_4-1-1/app/models/.keep -------------------------------------------------------------------------------- /spec/applications/main/rails_4-1-1/app/models/galaxy.rb: -------------------------------------------------------------------------------- 1 | class Galaxy < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/main/rails_4-1-1/app/models/planet.rb: -------------------------------------------------------------------------------- 1 | class Planet < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/main/rails_4-1-1/app/models/star.rb: -------------------------------------------------------------------------------- 1 | class Star < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/main/rails_4-1-1/app/views/galaxies/new.html.erb: -------------------------------------------------------------------------------- 1 |Subtab #1
-------------------------------------------------------------------------------- /spec/applications/main/rails_4-1-1/app/views/subtabs/three.html.erb: -------------------------------------------------------------------------------- 1 |Subtab #3
-------------------------------------------------------------------------------- /spec/applications/main/rails_4-1-1/app/views/subtabs/two.html.erb: -------------------------------------------------------------------------------- 1 |Subtab #2
-------------------------------------------------------------------------------- /spec/applications/main/rails_4-1-1/bin/bundle: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__) 3 | load Gem.bin_path('bundler', 'bundle') 4 | -------------------------------------------------------------------------------- /spec/applications/main/rails_4-1-1/lib/assets/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiferous/tabulous/1c019750a4cfbfc54216eed55851774dbac62e7a/spec/applications/main/rails_4-1-1/lib/assets/.keep -------------------------------------------------------------------------------- /spec/applications/main/rails_4-1-1/lib/tasks/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiferous/tabulous/1c019750a4cfbfc54216eed55851774dbac62e7a/spec/applications/main/rails_4-1-1/lib/tasks/.keep -------------------------------------------------------------------------------- /spec/applications/main/rails_4-1-1/lib/tasks/testing.rake: -------------------------------------------------------------------------------- 1 | task :default => :test -------------------------------------------------------------------------------- /spec/applications/main/rails_4-1-1/log/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiferous/tabulous/1c019750a4cfbfc54216eed55851774dbac62e7a/spec/applications/main/rails_4-1-1/log/.keep -------------------------------------------------------------------------------- /spec/applications/main/rails_4-1-1/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiferous/tabulous/1c019750a4cfbfc54216eed55851774dbac62e7a/spec/applications/main/rails_4-1-1/public/favicon.ico -------------------------------------------------------------------------------- /spec/applications/main/rails_4-1-1/test/fixtures/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiferous/tabulous/1c019750a4cfbfc54216eed55851774dbac62e7a/spec/applications/main/rails_4-1-1/test/fixtures/.keep -------------------------------------------------------------------------------- /spec/applications/main/rails_4-1-1/test/helpers/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiferous/tabulous/1c019750a4cfbfc54216eed55851774dbac62e7a/spec/applications/main/rails_4-1-1/test/helpers/.keep -------------------------------------------------------------------------------- /spec/applications/main/rails_4-1-1/test/mailers/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiferous/tabulous/1c019750a4cfbfc54216eed55851774dbac62e7a/spec/applications/main/rails_4-1-1/test/mailers/.keep -------------------------------------------------------------------------------- /spec/applications/main/rails_4-1-1/test/models/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiferous/tabulous/1c019750a4cfbfc54216eed55851774dbac62e7a/spec/applications/main/rails_4-1-1/test/models/.keep -------------------------------------------------------------------------------- /spec/applications/main/rails_4-2-0/app/controllers/home_controller.rb: -------------------------------------------------------------------------------- 1 | class HomeController < ApplicationController 2 | def index 3 | end 4 | end 5 | -------------------------------------------------------------------------------- /spec/applications/main/rails_4-2-0/app/controllers/no_tabs_controller.rb: -------------------------------------------------------------------------------- 1 | class NoTabsController < ApplicationController 2 | def index 3 | end 4 | end 5 | -------------------------------------------------------------------------------- /spec/applications/main/rails_4-2-0/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/main/rails_4-2-0/app/helpers/galaxies_helper.rb: -------------------------------------------------------------------------------- 1 | module GalaxiesHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/main/rails_4-2-0/app/helpers/home_helper.rb: -------------------------------------------------------------------------------- 1 | module HomeHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/main/rails_4-2-0/app/helpers/no_tabs_helper.rb: -------------------------------------------------------------------------------- 1 | module NoTabsHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/main/rails_4-2-0/app/helpers/planets_helper.rb: -------------------------------------------------------------------------------- 1 | module PlanetsHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/main/rails_4-2-0/app/helpers/stars_helper.rb: -------------------------------------------------------------------------------- 1 | module StarsHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/main/rails_4-2-0/app/helpers/subtabs_helper.rb: -------------------------------------------------------------------------------- 1 | module SubtabsHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/main/rails_4-2-0/app/mailers/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiferous/tabulous/1c019750a4cfbfc54216eed55851774dbac62e7a/spec/applications/main/rails_4-2-0/app/mailers/.keep -------------------------------------------------------------------------------- /spec/applications/main/rails_4-2-0/app/models/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiferous/tabulous/1c019750a4cfbfc54216eed55851774dbac62e7a/spec/applications/main/rails_4-2-0/app/models/.keep -------------------------------------------------------------------------------- /spec/applications/main/rails_4-2-0/app/models/galaxy.rb: -------------------------------------------------------------------------------- 1 | class Galaxy < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/main/rails_4-2-0/app/models/planet.rb: -------------------------------------------------------------------------------- 1 | class Planet < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/main/rails_4-2-0/app/models/star.rb: -------------------------------------------------------------------------------- 1 | class Star < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/main/rails_4-2-0/app/views/galaxies/new.html.erb: -------------------------------------------------------------------------------- 1 |Subtab #1
-------------------------------------------------------------------------------- /spec/applications/main/rails_4-2-0/app/views/subtabs/three.html.erb: -------------------------------------------------------------------------------- 1 |Subtab #3
-------------------------------------------------------------------------------- /spec/applications/main/rails_4-2-0/app/views/subtabs/two.html.erb: -------------------------------------------------------------------------------- 1 |Subtab #2
-------------------------------------------------------------------------------- /spec/applications/main/rails_4-2-0/bin/bundle: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__) 3 | load Gem.bin_path('bundler', 'bundle') 4 | -------------------------------------------------------------------------------- /spec/applications/main/rails_4-2-0/config/boot.rb: -------------------------------------------------------------------------------- 1 | ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__) 2 | 3 | require 'bundler/setup' # Set up gems listed in the Gemfile. 4 | -------------------------------------------------------------------------------- /spec/applications/main/rails_4-2-0/lib/assets/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiferous/tabulous/1c019750a4cfbfc54216eed55851774dbac62e7a/spec/applications/main/rails_4-2-0/lib/assets/.keep -------------------------------------------------------------------------------- /spec/applications/main/rails_4-2-0/lib/tasks/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiferous/tabulous/1c019750a4cfbfc54216eed55851774dbac62e7a/spec/applications/main/rails_4-2-0/lib/tasks/.keep -------------------------------------------------------------------------------- /spec/applications/main/rails_4-2-0/lib/tasks/testing.rake: -------------------------------------------------------------------------------- 1 | task :default => :test -------------------------------------------------------------------------------- /spec/applications/main/rails_4-2-0/log/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiferous/tabulous/1c019750a4cfbfc54216eed55851774dbac62e7a/spec/applications/main/rails_4-2-0/log/.keep -------------------------------------------------------------------------------- /spec/applications/main/rails_4-2-0/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiferous/tabulous/1c019750a4cfbfc54216eed55851774dbac62e7a/spec/applications/main/rails_4-2-0/public/favicon.ico -------------------------------------------------------------------------------- /spec/applications/main/rails_4-2-0/test/fixtures/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiferous/tabulous/1c019750a4cfbfc54216eed55851774dbac62e7a/spec/applications/main/rails_4-2-0/test/fixtures/.keep -------------------------------------------------------------------------------- /spec/applications/main/rails_4-2-0/test/helpers/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiferous/tabulous/1c019750a4cfbfc54216eed55851774dbac62e7a/spec/applications/main/rails_4-2-0/test/helpers/.keep -------------------------------------------------------------------------------- /spec/applications/main/rails_4-2-0/test/mailers/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiferous/tabulous/1c019750a4cfbfc54216eed55851774dbac62e7a/spec/applications/main/rails_4-2-0/test/mailers/.keep -------------------------------------------------------------------------------- /spec/applications/main/rails_4-2-0/test/models/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiferous/tabulous/1c019750a4cfbfc54216eed55851774dbac62e7a/spec/applications/main/rails_4-2-0/test/models/.keep -------------------------------------------------------------------------------- /spec/applications/main/rails_5-0-0/app/assets/config/manifest.js: -------------------------------------------------------------------------------- 1 | //= link_tree ../images 2 | //= link_directory ../javascripts .js 3 | //= link_directory ../stylesheets .css 4 | -------------------------------------------------------------------------------- /spec/applications/main/rails_5-0-0/app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- 1 | module ApplicationCable 2 | class Channel < ActionCable::Channel::Base 3 | end 4 | end 5 | -------------------------------------------------------------------------------- /spec/applications/main/rails_5-0-0/app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- 1 | module ApplicationCable 2 | class Connection < ActionCable::Connection::Base 3 | end 4 | end 5 | -------------------------------------------------------------------------------- /spec/applications/main/rails_5-0-0/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- 1 | class ApplicationController < ActionController::Base 2 | protect_from_forgery with: :exception 3 | end 4 | -------------------------------------------------------------------------------- /spec/applications/main/rails_5-0-0/app/controllers/home_controller.rb: -------------------------------------------------------------------------------- 1 | class HomeController < ApplicationController 2 | def index 3 | end 4 | end 5 | -------------------------------------------------------------------------------- /spec/applications/main/rails_5-0-0/app/controllers/no_tabs_controller.rb: -------------------------------------------------------------------------------- 1 | class NoTabsController < ApplicationController 2 | def index 3 | end 4 | end 5 | -------------------------------------------------------------------------------- /spec/applications/main/rails_5-0-0/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/main/rails_5-0-0/app/helpers/galaxies_helper.rb: -------------------------------------------------------------------------------- 1 | module GalaxiesHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/main/rails_5-0-0/app/helpers/home_helper.rb: -------------------------------------------------------------------------------- 1 | module HomeHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/main/rails_5-0-0/app/helpers/no_tabs_helper.rb: -------------------------------------------------------------------------------- 1 | module NoTabsHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/main/rails_5-0-0/app/helpers/planets_helper.rb: -------------------------------------------------------------------------------- 1 | module PlanetsHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/main/rails_5-0-0/app/helpers/stars_helper.rb: -------------------------------------------------------------------------------- 1 | module StarsHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/main/rails_5-0-0/app/helpers/subtabs_helper.rb: -------------------------------------------------------------------------------- 1 | module SubtabsHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/main/rails_5-0-0/app/jobs/application_job.rb: -------------------------------------------------------------------------------- 1 | class ApplicationJob < ActiveJob::Base 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/main/rails_5-0-0/app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- 1 | class ApplicationMailer < ActionMailer::Base 2 | default from: 'from@example.com' 3 | layout 'mailer' 4 | end 5 | -------------------------------------------------------------------------------- /spec/applications/main/rails_5-0-0/app/models/application_record.rb: -------------------------------------------------------------------------------- 1 | class ApplicationRecord < ActiveRecord::Base 2 | self.abstract_class = true 3 | end 4 | -------------------------------------------------------------------------------- /spec/applications/main/rails_5-0-0/app/models/galaxy.rb: -------------------------------------------------------------------------------- 1 | class Galaxy < ApplicationRecord 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/main/rails_5-0-0/app/models/planet.rb: -------------------------------------------------------------------------------- 1 | class Planet < ApplicationRecord 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/main/rails_5-0-0/app/models/star.rb: -------------------------------------------------------------------------------- 1 | class Star < ApplicationRecord 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/main/rails_5-0-0/app/views/galaxies/_galaxy.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.extract! galaxy, :id, :name, :created_at, :updated_at 2 | json.url galaxy_url(galaxy, format: :json) -------------------------------------------------------------------------------- /spec/applications/main/rails_5-0-0/app/views/galaxies/index.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.array! @galaxies, partial: 'galaxies/galaxy', as: :galaxy -------------------------------------------------------------------------------- /spec/applications/main/rails_5-0-0/app/views/galaxies/new.html.erb: -------------------------------------------------------------------------------- 1 |Subtab #1
-------------------------------------------------------------------------------- /spec/applications/main/rails_5-0-0/app/views/subtabs/three.html.erb: -------------------------------------------------------------------------------- 1 |Subtab #3
-------------------------------------------------------------------------------- /spec/applications/main/rails_5-0-0/app/views/subtabs/two.html.erb: -------------------------------------------------------------------------------- 1 |Subtab #2
-------------------------------------------------------------------------------- /spec/applications/main/rails_5-0-0/bin/bundle: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__) 3 | load Gem.bin_path('bundler', 'bundle') 4 | -------------------------------------------------------------------------------- /spec/applications/main/rails_5-0-0/config.ru: -------------------------------------------------------------------------------- 1 | # This file is used by Rack-based servers to start the application. 2 | 3 | require_relative 'config/environment' 4 | 5 | run Rails.application 6 | -------------------------------------------------------------------------------- /spec/applications/main/rails_5-0-0/config/boot.rb: -------------------------------------------------------------------------------- 1 | ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__) 2 | 3 | require 'bundler/setup' # Set up gems listed in the Gemfile. 4 | -------------------------------------------------------------------------------- /spec/applications/main/rails_5-0-0/config/spring.rb: -------------------------------------------------------------------------------- 1 | %w( 2 | .ruby-version 3 | .rbenv-vars 4 | tmp/restart.txt 5 | tmp/caching-dev.txt 6 | ).each { |path| Spring.watch(path) } 7 | -------------------------------------------------------------------------------- /spec/applications/main/rails_5-0-0/lib/assets/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiferous/tabulous/1c019750a4cfbfc54216eed55851774dbac62e7a/spec/applications/main/rails_5-0-0/lib/assets/.keep -------------------------------------------------------------------------------- /spec/applications/main/rails_5-0-0/lib/tasks/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiferous/tabulous/1c019750a4cfbfc54216eed55851774dbac62e7a/spec/applications/main/rails_5-0-0/lib/tasks/.keep -------------------------------------------------------------------------------- /spec/applications/main/rails_5-0-0/lib/tasks/testing.rake: -------------------------------------------------------------------------------- 1 | task :default => :test -------------------------------------------------------------------------------- /spec/applications/main/rails_5-0-0/log/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiferous/tabulous/1c019750a4cfbfc54216eed55851774dbac62e7a/spec/applications/main/rails_5-0-0/log/.keep -------------------------------------------------------------------------------- /spec/applications/main/rails_5-0-0/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiferous/tabulous/1c019750a4cfbfc54216eed55851774dbac62e7a/spec/applications/main/rails_5-0-0/public/favicon.ico -------------------------------------------------------------------------------- /spec/applications/main/rails_5-0-0/test/fixtures/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiferous/tabulous/1c019750a4cfbfc54216eed55851774dbac62e7a/spec/applications/main/rails_5-0-0/test/fixtures/.keep -------------------------------------------------------------------------------- /spec/applications/main/rails_5-0-0/test/helpers/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiferous/tabulous/1c019750a4cfbfc54216eed55851774dbac62e7a/spec/applications/main/rails_5-0-0/test/helpers/.keep -------------------------------------------------------------------------------- /spec/applications/main/rails_5-0-0/test/mailers/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiferous/tabulous/1c019750a4cfbfc54216eed55851774dbac62e7a/spec/applications/main/rails_5-0-0/test/mailers/.keep -------------------------------------------------------------------------------- /spec/applications/main/rails_5-0-0/test/models/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiferous/tabulous/1c019750a4cfbfc54216eed55851774dbac62e7a/spec/applications/main/rails_5-0-0/test/models/.keep -------------------------------------------------------------------------------- /spec/applications/main/rails_5-0-0/tmp/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiferous/tabulous/1c019750a4cfbfc54216eed55851774dbac62e7a/spec/applications/main/rails_5-0-0/tmp/.keep -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-0-5/app/controllers/home_controller.rb: -------------------------------------------------------------------------------- 1 | class HomeController < ApplicationController 2 | def index 3 | end 4 | end 5 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-0-5/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-0-5/app/helpers/galaxies/elliptical_galaxies_helper.rb: -------------------------------------------------------------------------------- 1 | module Galaxies::EllipticalGalaxiesHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-0-5/app/helpers/galaxies/lenticular_galaxies_helper.rb: -------------------------------------------------------------------------------- 1 | module Galaxies::LenticularGalaxiesHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-0-5/app/helpers/galaxies/spiral_galaxies_helper.rb: -------------------------------------------------------------------------------- 1 | module Galaxies::SpiralGalaxiesHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-0-5/app/helpers/home_helper.rb: -------------------------------------------------------------------------------- 1 | module HomeHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-0-5/app/helpers/planets/exoplanets_helper.rb: -------------------------------------------------------------------------------- 1 | module Planets::ExoplanetsHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-0-5/app/helpers/planets/rogue_planets_helper.rb: -------------------------------------------------------------------------------- 1 | module Planets::RoguePlanetsHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-0-5/app/models/galaxies.rb: -------------------------------------------------------------------------------- 1 | module Galaxies 2 | def self.table_name_prefix 3 | 'galaxies_' 4 | end 5 | end 6 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-0-5/app/models/galaxies/elliptical_galaxy.rb: -------------------------------------------------------------------------------- 1 | class Galaxies::EllipticalGalaxy < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-0-5/app/models/galaxies/lenticular_galaxy.rb: -------------------------------------------------------------------------------- 1 | class Galaxies::LenticularGalaxy < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-0-5/app/models/galaxies/spiral_galaxy.rb: -------------------------------------------------------------------------------- 1 | class Galaxies::SpiralGalaxy < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-0-5/app/models/planets.rb: -------------------------------------------------------------------------------- 1 | module Planets 2 | def self.table_name_prefix 3 | 'planets_' 4 | end 5 | end 6 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-0-5/app/models/planets/exoplanet.rb: -------------------------------------------------------------------------------- 1 | class Planets::Exoplanet < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-0-5/app/models/planets/rogue_planet.rb: -------------------------------------------------------------------------------- 1 | class Planets::RoguePlanet < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-0-5/app/views/galaxies/elliptical_galaxies/show.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.extract! @galaxies_elliptical_galaxy, :id, :name, :created_at, :updated_at 2 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-0-5/app/views/galaxies/lenticular_galaxies/show.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.extract! @galaxies_lenticular_galaxy, :id, :name, :created_at, :updated_at 2 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-0-5/app/views/galaxies/spiral_galaxies/show.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.extract! @galaxies_spiral_galaxy, :id, :name, :created_at, :updated_at 2 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-0-5/app/views/planets/exoplanets/show.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.extract! @planets_exoplanet, :id, :name, :created_at, :updated_at 2 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-0-5/app/views/planets/rogue_planets/show.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.extract! @planets_rogue_planet, :id, :name, :created_at, :updated_at 2 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-0-5/bin/bundle: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__) 3 | load Gem.bin_path('bundler', 'bundle') 4 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-0-5/bin/rake: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | require_relative '../config/boot' 3 | require 'rake' 4 | Rake.application.run 5 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-0-5/lib/tasks/testing.rake: -------------------------------------------------------------------------------- 1 | task :default => :test -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-1-1/app/controllers/home_controller.rb: -------------------------------------------------------------------------------- 1 | class HomeController < ApplicationController 2 | def index 3 | end 4 | end 5 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-1-1/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-1-1/app/helpers/galaxies/elliptical_galaxies_helper.rb: -------------------------------------------------------------------------------- 1 | module Galaxies::EllipticalGalaxiesHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-1-1/app/helpers/galaxies/lenticular_galaxies_helper.rb: -------------------------------------------------------------------------------- 1 | module Galaxies::LenticularGalaxiesHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-1-1/app/helpers/galaxies/spiral_galaxies_helper.rb: -------------------------------------------------------------------------------- 1 | module Galaxies::SpiralGalaxiesHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-1-1/app/helpers/home_helper.rb: -------------------------------------------------------------------------------- 1 | module HomeHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-1-1/app/helpers/planets/exoplanets_helper.rb: -------------------------------------------------------------------------------- 1 | module Planets::ExoplanetsHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-1-1/app/helpers/planets/rogue_planets_helper.rb: -------------------------------------------------------------------------------- 1 | module Planets::RoguePlanetsHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-1-1/app/models/galaxies.rb: -------------------------------------------------------------------------------- 1 | module Galaxies 2 | def self.table_name_prefix 3 | 'galaxies_' 4 | end 5 | end 6 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-1-1/app/models/galaxies/elliptical_galaxy.rb: -------------------------------------------------------------------------------- 1 | class Galaxies::EllipticalGalaxy < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-1-1/app/models/galaxies/lenticular_galaxy.rb: -------------------------------------------------------------------------------- 1 | class Galaxies::LenticularGalaxy < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-1-1/app/models/galaxies/spiral_galaxy.rb: -------------------------------------------------------------------------------- 1 | class Galaxies::SpiralGalaxy < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-1-1/app/models/planets.rb: -------------------------------------------------------------------------------- 1 | module Planets 2 | def self.table_name_prefix 3 | 'planets_' 4 | end 5 | end 6 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-1-1/app/models/planets/exoplanet.rb: -------------------------------------------------------------------------------- 1 | class Planets::Exoplanet < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-1-1/app/models/planets/rogue_planet.rb: -------------------------------------------------------------------------------- 1 | class Planets::RoguePlanet < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-1-1/app/views/galaxies/elliptical_galaxies/show.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.extract! @galaxies_elliptical_galaxy, :id, :name, :created_at, :updated_at 2 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-1-1/app/views/galaxies/lenticular_galaxies/show.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.extract! @galaxies_lenticular_galaxy, :id, :name, :created_at, :updated_at 2 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-1-1/app/views/galaxies/spiral_galaxies/show.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.extract! @galaxies_spiral_galaxy, :id, :name, :created_at, :updated_at 2 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-1-1/app/views/planets/exoplanets/show.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.extract! @planets_exoplanet, :id, :name, :created_at, :updated_at 2 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-1-1/app/views/planets/rogue_planets/show.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.extract! @planets_rogue_planet, :id, :name, :created_at, :updated_at 2 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-1-1/bin/bundle: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__) 3 | load Gem.bin_path('bundler', 'bundle') 4 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-1-1/lib/tasks/testing.rake: -------------------------------------------------------------------------------- 1 | task :default => :test -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-2-0/app/controllers/home_controller.rb: -------------------------------------------------------------------------------- 1 | class HomeController < ApplicationController 2 | def index 3 | end 4 | end 5 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-2-0/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-2-0/app/helpers/galaxies/elliptical_galaxies_helper.rb: -------------------------------------------------------------------------------- 1 | module Galaxies::EllipticalGalaxiesHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-2-0/app/helpers/galaxies/lenticular_galaxies_helper.rb: -------------------------------------------------------------------------------- 1 | module Galaxies::LenticularGalaxiesHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-2-0/app/helpers/galaxies/spiral_galaxies_helper.rb: -------------------------------------------------------------------------------- 1 | module Galaxies::SpiralGalaxiesHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-2-0/app/helpers/home_helper.rb: -------------------------------------------------------------------------------- 1 | module HomeHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-2-0/app/helpers/planets/exoplanets_helper.rb: -------------------------------------------------------------------------------- 1 | module Planets::ExoplanetsHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-2-0/app/helpers/planets/rogue_planets_helper.rb: -------------------------------------------------------------------------------- 1 | module Planets::RoguePlanetsHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-2-0/app/models/galaxies.rb: -------------------------------------------------------------------------------- 1 | module Galaxies 2 | def self.table_name_prefix 3 | 'galaxies_' 4 | end 5 | end 6 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-2-0/app/models/galaxies/elliptical_galaxy.rb: -------------------------------------------------------------------------------- 1 | class Galaxies::EllipticalGalaxy < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-2-0/app/models/galaxies/lenticular_galaxy.rb: -------------------------------------------------------------------------------- 1 | class Galaxies::LenticularGalaxy < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-2-0/app/models/galaxies/spiral_galaxy.rb: -------------------------------------------------------------------------------- 1 | class Galaxies::SpiralGalaxy < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-2-0/app/models/planets.rb: -------------------------------------------------------------------------------- 1 | module Planets 2 | def self.table_name_prefix 3 | 'planets_' 4 | end 5 | end 6 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-2-0/app/models/planets/exoplanet.rb: -------------------------------------------------------------------------------- 1 | class Planets::Exoplanet < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-2-0/app/models/planets/rogue_planet.rb: -------------------------------------------------------------------------------- 1 | class Planets::RoguePlanet < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-2-0/app/views/galaxies/elliptical_galaxies/show.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.extract! @galaxies_elliptical_galaxy, :id, :name, :created_at, :updated_at 2 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-2-0/app/views/galaxies/lenticular_galaxies/show.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.extract! @galaxies_lenticular_galaxy, :id, :name, :created_at, :updated_at 2 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-2-0/app/views/galaxies/spiral_galaxies/show.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.extract! @galaxies_spiral_galaxy, :id, :name, :created_at, :updated_at 2 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-2-0/app/views/planets/exoplanets/show.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.extract! @planets_exoplanet, :id, :name, :created_at, :updated_at 2 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-2-0/app/views/planets/rogue_planets/show.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.extract! @planets_rogue_planet, :id, :name, :created_at, :updated_at 2 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-2-0/bin/bundle: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__) 3 | load Gem.bin_path('bundler', 'bundle') 4 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_4-2-0/lib/tasks/testing.rake: -------------------------------------------------------------------------------- 1 | task :default => :test -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_5-0-0/app/assets/config/manifest.js: -------------------------------------------------------------------------------- 1 | //= link_tree ../images 2 | //= link_directory ../javascripts .js 3 | //= link_directory ../stylesheets .css 4 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_5-0-0/app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- 1 | module ApplicationCable 2 | class Channel < ActionCable::Channel::Base 3 | end 4 | end 5 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_5-0-0/app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- 1 | module ApplicationCable 2 | class Connection < ActionCable::Connection::Base 3 | end 4 | end 5 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_5-0-0/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- 1 | class ApplicationController < ActionController::Base 2 | protect_from_forgery with: :exception 3 | end 4 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_5-0-0/app/controllers/home_controller.rb: -------------------------------------------------------------------------------- 1 | class HomeController < ApplicationController 2 | def index 3 | end 4 | end 5 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_5-0-0/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_5-0-0/app/helpers/galaxies/elliptical_galaxies_helper.rb: -------------------------------------------------------------------------------- 1 | module Galaxies::EllipticalGalaxiesHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_5-0-0/app/helpers/galaxies/lenticular_galaxies_helper.rb: -------------------------------------------------------------------------------- 1 | module Galaxies::LenticularGalaxiesHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_5-0-0/app/helpers/galaxies/spiral_galaxies_helper.rb: -------------------------------------------------------------------------------- 1 | module Galaxies::SpiralGalaxiesHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_5-0-0/app/helpers/home_helper.rb: -------------------------------------------------------------------------------- 1 | module HomeHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_5-0-0/app/helpers/planets/exoplanets_helper.rb: -------------------------------------------------------------------------------- 1 | module Planets::ExoplanetsHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_5-0-0/app/helpers/planets/rogue_planets_helper.rb: -------------------------------------------------------------------------------- 1 | module Planets::RoguePlanetsHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_5-0-0/app/jobs/application_job.rb: -------------------------------------------------------------------------------- 1 | class ApplicationJob < ActiveJob::Base 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_5-0-0/app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- 1 | class ApplicationMailer < ActionMailer::Base 2 | default from: 'from@example.com' 3 | layout 'mailer' 4 | end 5 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_5-0-0/app/models/application_record.rb: -------------------------------------------------------------------------------- 1 | class ApplicationRecord < ActiveRecord::Base 2 | self.abstract_class = true 3 | end 4 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_5-0-0/app/models/galaxies.rb: -------------------------------------------------------------------------------- 1 | module Galaxies 2 | def self.table_name_prefix 3 | 'galaxies_' 4 | end 5 | end 6 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_5-0-0/app/models/galaxies/elliptical_galaxy.rb: -------------------------------------------------------------------------------- 1 | class Galaxies::EllipticalGalaxy < ApplicationRecord 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_5-0-0/app/models/galaxies/lenticular_galaxy.rb: -------------------------------------------------------------------------------- 1 | class Galaxies::LenticularGalaxy < ApplicationRecord 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_5-0-0/app/models/galaxies/spiral_galaxy.rb: -------------------------------------------------------------------------------- 1 | class Galaxies::SpiralGalaxy < ApplicationRecord 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_5-0-0/app/models/planets.rb: -------------------------------------------------------------------------------- 1 | module Planets 2 | def self.table_name_prefix 3 | 'planets_' 4 | end 5 | end 6 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_5-0-0/app/models/planets/exoplanet.rb: -------------------------------------------------------------------------------- 1 | class Planets::Exoplanet < ApplicationRecord 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_5-0-0/app/models/planets/rogue_planet.rb: -------------------------------------------------------------------------------- 1 | class Planets::RoguePlanet < ApplicationRecord 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_5-0-0/app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_5-0-0/app/views/planets/exoplanets/index.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.array! @planets_exoplanets, partial: 'planets_exoplanets/planets_exoplanet', as: :planets_exoplanet -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_5-0-0/app/views/planets/exoplanets/show.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.partial! "planets_exoplanets/planets_exoplanet", planets_exoplanet: @planets_exoplanet -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_5-0-0/app/views/planets/rogue_planets/show.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.partial! "planets_rogue_planets/planets_rogue_planet", planets_rogue_planet: @planets_rogue_planet -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_5-0-0/bin/bundle: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__) 3 | load Gem.bin_path('bundler', 'bundle') 4 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_5-0-0/config/boot.rb: -------------------------------------------------------------------------------- 1 | ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__) 2 | 3 | require 'bundler/setup' # Set up gems listed in the Gemfile. 4 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_5-0-0/config/spring.rb: -------------------------------------------------------------------------------- 1 | %w( 2 | .ruby-version 3 | .rbenv-vars 4 | tmp/restart.txt 5 | tmp/caching-dev.txt 6 | ).each { |path| Spring.watch(path) } 7 | -------------------------------------------------------------------------------- /spec/applications/multiple_tabsets/rails_5-0-0/lib/tasks/testing.rake: -------------------------------------------------------------------------------- 1 | task :default => :test -------------------------------------------------------------------------------- /spec/applications/simple_tabs/rails_4-0-5/app/controllers/home_controller.rb: -------------------------------------------------------------------------------- 1 | class HomeController < ApplicationController 2 | def index 3 | end 4 | end 5 | -------------------------------------------------------------------------------- /spec/applications/simple_tabs/rails_4-0-5/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/simple_tabs/rails_4-0-5/app/helpers/galaxies_helper.rb: -------------------------------------------------------------------------------- 1 | module GalaxiesHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/simple_tabs/rails_4-0-5/app/helpers/home_helper.rb: -------------------------------------------------------------------------------- 1 | module HomeHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/simple_tabs/rails_4-0-5/app/helpers/planets_helper.rb: -------------------------------------------------------------------------------- 1 | module PlanetsHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/simple_tabs/rails_4-0-5/app/helpers/stars_helper.rb: -------------------------------------------------------------------------------- 1 | module StarsHelper 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/simple_tabs/rails_4-0-5/app/models/galaxy.rb: -------------------------------------------------------------------------------- 1 | class Galaxy < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/simple_tabs/rails_4-0-5/app/models/planet.rb: -------------------------------------------------------------------------------- 1 | class Planet < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/simple_tabs/rails_4-0-5/app/models/star.rb: -------------------------------------------------------------------------------- 1 | class Star < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /spec/applications/simple_tabs/rails_4-0-5/app/views/galaxies/new.html.erb: -------------------------------------------------------------------------------- 1 |Find me in app/views/misc/always_disabled.html.erb
3 | -------------------------------------------------------------------------------- /spec/applications/subtabs/rails_4-0-5/app/views/misc/always_hidden.html.erb: -------------------------------------------------------------------------------- 1 |Find me in app/views/misc/always_hidden.html.erb
3 | -------------------------------------------------------------------------------- /spec/applications/subtabs/rails_4-0-5/app/views/rogue_planets/new.html.erb: -------------------------------------------------------------------------------- 1 |Find me in app/views/misc/always_disabled.html.erb
3 | -------------------------------------------------------------------------------- /spec/applications/subtabs/rails_4-1-1/app/views/misc/always_hidden.html.erb: -------------------------------------------------------------------------------- 1 |Find me in app/views/misc/always_hidden.html.erb
3 | -------------------------------------------------------------------------------- /spec/applications/subtabs/rails_4-1-1/app/views/rogue_planets/new.html.erb: -------------------------------------------------------------------------------- 1 |Find me in app/views/misc/always_disabled.html.erb
3 | -------------------------------------------------------------------------------- /spec/applications/subtabs/rails_4-2-0/app/views/misc/always_hidden.html.erb: -------------------------------------------------------------------------------- 1 |Find me in app/views/misc/always_hidden.html.erb
3 | -------------------------------------------------------------------------------- /spec/applications/subtabs/rails_4-2-0/app/views/rogue_planets/new.html.erb: -------------------------------------------------------------------------------- 1 |Find me in app/views/misc/always_disabled.html.erb
3 | -------------------------------------------------------------------------------- /spec/applications/subtabs/rails_5-0-0/app/views/misc/always_hidden.html.erb: -------------------------------------------------------------------------------- 1 |Find me in app/views/misc/always_hidden.html.erb
3 | -------------------------------------------------------------------------------- /spec/applications/subtabs/rails_5-0-0/app/views/rogue_planets/index.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.array! @rogue_planets, partial: 'rogue_planets/rogue_planet', as: :rogue_planet -------------------------------------------------------------------------------- /spec/applications/subtabs/rails_5-0-0/app/views/rogue_planets/show.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.partial! "rogue_planets/rogue_planet", rogue_planet: @rogue_planet -------------------------------------------------------------------------------- /spec/applications/subtabs/rails_5-0-0/app/views/stars/_star.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.extract! star, :id, :name, :created_at, :updated_at 2 | json.url star_url(star, format: :json) -------------------------------------------------------------------------------- /spec/applications/subtabs/rails_5-0-0/app/views/stars/index.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.array! @stars, partial: 'stars/star', as: :star -------------------------------------------------------------------------------- /spec/applications/subtabs/rails_5-0-0/app/views/stars/new.html.erb: -------------------------------------------------------------------------------- 1 |