--- !ruby/object:Gem::Specification name: tabulous version: !ruby/object:Gem::Version hash: 23 prerelease: segments: - 1 - 0 - 0 version: 1.0.0 platform: ruby authors: - Wyatt Greene autorequire: bindir: bin cert_chain: [] date: 2011-03-04 00:00:00 -05:00 default_executable: dependencies: - !ruby/object:Gem::Dependency name: colored prerelease: false requirement: &id001 !ruby/object:Gem::Requirement none: false requirements: - - ~> - !ruby/object:Gem::Version hash: 31 segments: - 1 - 2 - 0 version: 1.2.0 type: :runtime version_requirements: *id001 - !ruby/object:Gem::Dependency name: rails prerelease: false requirement: &id002 !ruby/object:Gem::Requirement none: false requirements: - - ~> - !ruby/object:Gem::Version hash: 7 segments: - 3 - 0 - 0 version: 3.0.0 type: :runtime version_requirements: *id002 - !ruby/object:Gem::Dependency name: bundler prerelease: false requirement: &id003 !ruby/object:Gem::Requirement none: false requirements: - - ~> - !ruby/object:Gem::Version hash: 3 segments: - 1 - 0 - 10 version: 1.0.10 type: :development version_requirements: *id003 - !ruby/object:Gem::Dependency name: capybara prerelease: false requirement: &id004 !ruby/object:Gem::Requirement none: false requirements: - - ~> - !ruby/object:Gem::Version hash: 111 segments: - 0 - 4 - 1 - 2 version: 0.4.1.2 type: :development version_requirements: *id004 - !ruby/object:Gem::Dependency name: redgreen prerelease: false requirement: &id005 !ruby/object:Gem::Requirement none: false requirements: - - ">=" - !ruby/object:Gem::Version hash: 3 segments: - 0 version: "0" type: :development version_requirements: *id005 - !ruby/object:Gem::Dependency name: launchy prerelease: false requirement: &id006 !ruby/object:Gem::Requirement none: false requirements: - - ">=" - !ruby/object:Gem::Version hash: 3 segments: - 0 version: "0" type: :development version_requirements: *id006 - !ruby/object:Gem::Dependency name: diffy prerelease: false requirement: &id007 !ruby/object:Gem::Requirement none: false requirements: - - ">=" - !ruby/object:Gem::Version hash: 3 segments: - 0 version: "0" type: :development version_requirements: *id007 description: Tabulous provides an easy way to add tabs to your Rails application. email: - techiferous@gmail.com executables: [] extensions: [] extra_rdoc_files: [] files: - .gitignore - CHANGELOG.rdoc - Gemfile - MIT-LICENSE - README.rdoc - Rakefile - lib/generators/tabs/USAGE - lib/generators/tabs/tabs_generator.rb - lib/generators/tabs/templates/tabulous.rb - lib/tabulous.rb - lib/tabulous/css_scaffolding.rb - lib/tabulous/errors.rb - lib/tabulous/formatter.rb - lib/tabulous/helpers.rb - lib/tabulous/options.rb - lib/tabulous/railtie.rb - lib/tabulous/tab.rb - lib/tabulous/tabulous.rb - lib/tabulous/version.rb - lib/tasks/tabulous.rake - tabulous.gemspec - test/applications/main/.gitignore - test/applications/main/Gemfile - test/applications/main/Rakefile - test/applications/main/app/controllers/application_controller.rb - test/applications/main/app/controllers/galaxies_controller.rb - test/applications/main/app/controllers/home_controller.rb - test/applications/main/app/controllers/planets_controller.rb - test/applications/main/app/controllers/stars_controller.rb - test/applications/main/app/controllers/subtabs_controller.rb - test/applications/main/app/helpers/application_helper.rb - test/applications/main/app/helpers/galaxies_helper.rb - test/applications/main/app/helpers/planets_helper.rb - test/applications/main/app/helpers/stars_helper.rb - test/applications/main/app/models/galaxy.rb - test/applications/main/app/models/planet.rb - test/applications/main/app/models/star.rb - test/applications/main/app/tabs/tabulous.rb - test/applications/main/app/views/galaxies/_form.html.erb - test/applications/main/app/views/galaxies/edit.html.erb - test/applications/main/app/views/galaxies/index.html.erb - test/applications/main/app/views/galaxies/new.html.erb - test/applications/main/app/views/galaxies/show.html.erb - test/applications/main/app/views/home/index.html.erb - test/applications/main/app/views/layouts/application.html.erb - test/applications/main/app/views/planets/_form.html.erb - test/applications/main/app/views/planets/edit.html.erb - test/applications/main/app/views/planets/index.html.erb - test/applications/main/app/views/planets/new.html.erb - test/applications/main/app/views/planets/show.html.erb - test/applications/main/app/views/stars/_form.html.erb - test/applications/main/app/views/stars/edit.html.erb - test/applications/main/app/views/stars/index.html.erb - test/applications/main/app/views/stars/new.html.erb - test/applications/main/app/views/stars/show.html.erb - test/applications/main/app/views/subtabs/one.html.erb - test/applications/main/app/views/subtabs/three.html.erb - test/applications/main/app/views/subtabs/two.html.erb - test/applications/main/config.ru - test/applications/main/config/application.rb - test/applications/main/config/boot.rb - test/applications/main/config/database.yml - test/applications/main/config/environment.rb - test/applications/main/config/environments/development.rb - test/applications/main/config/environments/production.rb - test/applications/main/config/environments/test.rb - test/applications/main/config/initializers/backtrace_silencers.rb - test/applications/main/config/initializers/inflections.rb - test/applications/main/config/initializers/mime_types.rb - test/applications/main/config/initializers/secret_token.rb - test/applications/main/config/initializers/session_store.rb - test/applications/main/config/locales/en.yml - test/applications/main/config/routes.rb - test/applications/main/db/development.sqlite3 - test/applications/main/db/migrate/20110223232547_create_galaxies.rb - test/applications/main/db/migrate/20110223232552_create_stars.rb - test/applications/main/db/migrate/20110223232557_create_planets.rb - test/applications/main/db/production.sqlite3 - test/applications/main/db/schema.rb - test/applications/main/db/test.sqlite3 - test/applications/main/public/404.html - test/applications/main/public/422.html - test/applications/main/public/500.html - test/applications/main/public/favicon.ico - test/applications/main/public/javascripts/application.js - test/applications/main/public/javascripts/controls.js - test/applications/main/public/javascripts/dragdrop.js - test/applications/main/public/javascripts/effects.js - test/applications/main/public/javascripts/prototype.js - test/applications/main/public/javascripts/rails.js - test/applications/main/public/stylesheets/.gitkeep - test/applications/main/script/rails - test/applications/main/test/integration/actions_test.rb - test/applications/main/test/integration/active_tab_clickable_test.rb - test/applications/main/test/integration/always_render_subtabs_test.rb - test/applications/main/test/integration/css_no_scaffolding_test.rb - test/applications/main/test/integration/css_scaffolding_test.rb - test/applications/main/test/integration/display_text_test.rb - test/applications/main/test/integration/enabled_test.rb - test/applications/main/test/integration/html5_test.rb - test/applications/main/test/integration/main_tabs_test.rb - test/applications/main/test/integration/path_test.rb - test/applications/main/test/integration/visible_test.rb - test/applications/main/test/integration_test_helper.rb - test/applications/main/test/test_helper.rb - test/applications/main/test/unit/tabs_generator_test.rb - test/applications/simple_tabs/.gitignore - test/applications/simple_tabs/Gemfile - test/applications/simple_tabs/Rakefile - test/applications/simple_tabs/app/controllers/application_controller.rb - test/applications/simple_tabs/app/controllers/galaxies_controller.rb - test/applications/simple_tabs/app/controllers/home_controller.rb - test/applications/simple_tabs/app/controllers/planets_controller.rb - test/applications/simple_tabs/app/controllers/stars_controller.rb - test/applications/simple_tabs/app/helpers/application_helper.rb - test/applications/simple_tabs/app/helpers/galaxies_helper.rb - test/applications/simple_tabs/app/helpers/planets_helper.rb - test/applications/simple_tabs/app/helpers/stars_helper.rb - test/applications/simple_tabs/app/models/galaxy.rb - test/applications/simple_tabs/app/models/planet.rb - test/applications/simple_tabs/app/models/star.rb - test/applications/simple_tabs/app/tabs/tabulous.rb - test/applications/simple_tabs/app/views/galaxies/_form.html.erb - test/applications/simple_tabs/app/views/galaxies/edit.html.erb - test/applications/simple_tabs/app/views/galaxies/index.html.erb - test/applications/simple_tabs/app/views/galaxies/new.html.erb - test/applications/simple_tabs/app/views/galaxies/show.html.erb - test/applications/simple_tabs/app/views/home/index.html.erb - test/applications/simple_tabs/app/views/layouts/application.html.erb - test/applications/simple_tabs/app/views/planets/_form.html.erb - test/applications/simple_tabs/app/views/planets/edit.html.erb - test/applications/simple_tabs/app/views/planets/index.html.erb - test/applications/simple_tabs/app/views/planets/new.html.erb - test/applications/simple_tabs/app/views/planets/show.html.erb - test/applications/simple_tabs/app/views/stars/_form.html.erb - test/applications/simple_tabs/app/views/stars/edit.html.erb - test/applications/simple_tabs/app/views/stars/index.html.erb - test/applications/simple_tabs/app/views/stars/new.html.erb - test/applications/simple_tabs/app/views/stars/show.html.erb - test/applications/simple_tabs/config.ru - test/applications/simple_tabs/config/application.rb - test/applications/simple_tabs/config/boot.rb - test/applications/simple_tabs/config/database.yml - test/applications/simple_tabs/config/environment.rb - test/applications/simple_tabs/config/environments/development.rb - test/applications/simple_tabs/config/environments/production.rb - test/applications/simple_tabs/config/environments/test.rb - test/applications/simple_tabs/config/initializers/backtrace_silencers.rb - test/applications/simple_tabs/config/initializers/inflections.rb - test/applications/simple_tabs/config/initializers/mime_types.rb - test/applications/simple_tabs/config/initializers/secret_token.rb - test/applications/simple_tabs/config/initializers/session_store.rb - test/applications/simple_tabs/config/locales/en.yml - test/applications/simple_tabs/config/routes.rb - test/applications/simple_tabs/db/development.sqlite3 - test/applications/simple_tabs/db/migrate/20110220170240_create_galaxies.rb - test/applications/simple_tabs/db/migrate/20110220170245_create_stars.rb - test/applications/simple_tabs/db/migrate/20110220170250_create_planets.rb - test/applications/simple_tabs/db/production.sqlite3 - test/applications/simple_tabs/db/schema.rb - test/applications/simple_tabs/db/test.sqlite3 - test/applications/simple_tabs/public/404.html - test/applications/simple_tabs/public/422.html - test/applications/simple_tabs/public/500.html - test/applications/simple_tabs/public/favicon.ico - test/applications/simple_tabs/public/javascripts/application.js - test/applications/simple_tabs/public/javascripts/controls.js - test/applications/simple_tabs/public/javascripts/dragdrop.js - test/applications/simple_tabs/public/javascripts/effects.js - test/applications/simple_tabs/public/javascripts/prototype.js - test/applications/simple_tabs/public/javascripts/rails.js - test/applications/simple_tabs/public/stylesheets/.gitkeep - test/applications/simple_tabs/script/rails - test/applications/simple_tabs/test/integration/simple_tabs_test.rb - test/applications/simple_tabs/test/integration_test_helper.rb - test/applications/simple_tabs/test/test_helper.rb - test/applications/subtabs/.gitignore - test/applications/subtabs/Gemfile - test/applications/subtabs/Rakefile - test/applications/subtabs/app/controllers/application_controller.rb - test/applications/subtabs/app/controllers/exoplanets_controller.rb - test/applications/subtabs/app/controllers/galaxies/elliptical_galaxies_controller.rb - test/applications/subtabs/app/controllers/galaxies/lenticular_galaxies_controller.rb - test/applications/subtabs/app/controllers/galaxies/spiral_galaxies_controller.rb - test/applications/subtabs/app/controllers/home_controller.rb - test/applications/subtabs/app/controllers/misc_controller.rb - test/applications/subtabs/app/controllers/rogue_planets_controller.rb - test/applications/subtabs/app/controllers/stars_controller.rb - test/applications/subtabs/app/helpers/application_helper.rb - test/applications/subtabs/app/helpers/elliptical_galaxies_helper.rb - test/applications/subtabs/app/helpers/exoplanets_helper.rb - test/applications/subtabs/app/helpers/lenticular_galaxies_helper.rb - test/applications/subtabs/app/helpers/rogue_planets_helper.rb - test/applications/subtabs/app/helpers/spiral_galaxies_helper.rb - test/applications/subtabs/app/helpers/stars_helper.rb - test/applications/subtabs/app/models/elliptical_galaxy.rb - test/applications/subtabs/app/models/exoplanet.rb - test/applications/subtabs/app/models/lenticular_galaxy.rb - test/applications/subtabs/app/models/rogue_planet.rb - test/applications/subtabs/app/models/spiral_galaxy.rb - test/applications/subtabs/app/models/star.rb - test/applications/subtabs/app/tabs/tabulous.rb - test/applications/subtabs/app/views/exoplanets/_form.html.erb - test/applications/subtabs/app/views/exoplanets/edit.html.erb - test/applications/subtabs/app/views/exoplanets/index.html.erb - test/applications/subtabs/app/views/exoplanets/new.html.erb - test/applications/subtabs/app/views/exoplanets/show.html.erb - test/applications/subtabs/app/views/galaxies/elliptical_galaxies/_form.html.erb - test/applications/subtabs/app/views/galaxies/elliptical_galaxies/edit.html.erb - test/applications/subtabs/app/views/galaxies/elliptical_galaxies/index.html.erb - test/applications/subtabs/app/views/galaxies/elliptical_galaxies/new.html.erb - test/applications/subtabs/app/views/galaxies/elliptical_galaxies/show.html.erb - test/applications/subtabs/app/views/galaxies/lenticular_galaxies/_form.html.erb - test/applications/subtabs/app/views/galaxies/lenticular_galaxies/edit.html.erb - test/applications/subtabs/app/views/galaxies/lenticular_galaxies/index.html.erb - test/applications/subtabs/app/views/galaxies/lenticular_galaxies/new.html.erb - test/applications/subtabs/app/views/galaxies/lenticular_galaxies/show.html.erb - test/applications/subtabs/app/views/galaxies/spiral_galaxies/_form.html.erb - test/applications/subtabs/app/views/galaxies/spiral_galaxies/edit.html.erb - test/applications/subtabs/app/views/galaxies/spiral_galaxies/index.html.erb - test/applications/subtabs/app/views/galaxies/spiral_galaxies/new.html.erb - test/applications/subtabs/app/views/galaxies/spiral_galaxies/show.html.erb - test/applications/subtabs/app/views/home/index.html.erb - test/applications/subtabs/app/views/layouts/application.html.erb - test/applications/subtabs/app/views/misc/always_enabled.html.erb - test/applications/subtabs/app/views/misc/always_visible.html.erb - test/applications/subtabs/app/views/rogue_planets/_form.html.erb - test/applications/subtabs/app/views/rogue_planets/edit.html.erb - test/applications/subtabs/app/views/rogue_planets/index.html.erb - test/applications/subtabs/app/views/rogue_planets/new.html.erb - test/applications/subtabs/app/views/rogue_planets/show.html.erb - test/applications/subtabs/app/views/stars/_form.html.erb - test/applications/subtabs/app/views/stars/edit.html.erb - test/applications/subtabs/app/views/stars/index.html.erb - test/applications/subtabs/app/views/stars/new.html.erb - test/applications/subtabs/app/views/stars/show.html.erb - test/applications/subtabs/config.ru - test/applications/subtabs/config/application.rb - test/applications/subtabs/config/boot.rb - test/applications/subtabs/config/database.yml - test/applications/subtabs/config/environment.rb - test/applications/subtabs/config/environments/development.rb - test/applications/subtabs/config/environments/production.rb - test/applications/subtabs/config/environments/test.rb - test/applications/subtabs/config/initializers/backtrace_silencers.rb - test/applications/subtabs/config/initializers/inflections.rb - test/applications/subtabs/config/initializers/mime_types.rb - test/applications/subtabs/config/initializers/secret_token.rb - test/applications/subtabs/config/initializers/session_store.rb - test/applications/subtabs/config/locales/en.yml - test/applications/subtabs/config/routes.rb - test/applications/subtabs/db/development.sqlite3 - test/applications/subtabs/db/migrate/20110223220628_create_galaxies.rb - test/applications/subtabs/db/migrate/20110223220634_create_stars.rb - test/applications/subtabs/db/migrate/20110223220640_create_planets.rb - test/applications/subtabs/db/migrate/20110226190125_create_rogue_planets.rb - test/applications/subtabs/db/migrate/20110226190131_create_exoplanets.rb - test/applications/subtabs/db/migrate/20110226190532_create_spiral_galaxies.rb - test/applications/subtabs/db/migrate/20110226190537_create_lenticular_galaxies.rb - test/applications/subtabs/db/migrate/20110226190543_create_elliptical_galaxies.rb - test/applications/subtabs/db/production.sqlite3 - test/applications/subtabs/db/schema.rb - test/applications/subtabs/db/test.sqlite3 - test/applications/subtabs/public/404.html - test/applications/subtabs/public/422.html - test/applications/subtabs/public/500.html - test/applications/subtabs/public/favicon.ico - test/applications/subtabs/public/javascripts/application.js - test/applications/subtabs/public/javascripts/controls.js - test/applications/subtabs/public/javascripts/dragdrop.js - test/applications/subtabs/public/javascripts/effects.js - test/applications/subtabs/public/javascripts/prototype.js - test/applications/subtabs/public/javascripts/rails.js - test/applications/subtabs/public/stylesheets/.gitkeep - test/applications/subtabs/public/stylesheets/application.css - test/applications/subtabs/public/stylesheets/reset.css - test/applications/subtabs/script/rails - test/applications/subtabs/test/integration/subtabs_test.rb - test/applications/subtabs/test/integration_test_helper.rb - test/applications/subtabs/test/test_helper.rb - test/test_application_gemfile.rb - test/test_application_integration_test_helper.rb - test/test_application_test_helper.rb - test/test_tab_files/empty - test/test_tab_files/expected - test/test_tab_files/random_horizontal_whitespace - test/test_tab_files/random_vertical_whitespace - test/test_tab_files/text - test/test_tab_files/trailing_comments - test/unit_test_helper.rb - test/units/tabulous_formatter_test.rb has_rdoc: true homepage: https://github.com/techiferous/tabulous licenses: [] post_install_message: rdoc_options: [] require_paths: - lib required_ruby_version: !ruby/object:Gem::Requirement none: false requirements: - - ">=" - !ruby/object:Gem::Version hash: 3 segments: - 0 version: "0" required_rubygems_version: !ruby/object:Gem::Requirement none: false requirements: - - ">=" - !ruby/object:Gem::Version hash: 7 segments: - 1 - 4 - 0 version: 1.4.0 requirements: [] rubyforge_project: tabulous rubygems_version: 1.4.1 signing_key: specification_version: 3 summary: Easy tabbed navigation for Rails. test_files: []