Skip to content

Commit

Permalink
not shipping tests with the packaged gem itself due to the embedded d…
Browse files Browse the repository at this point in the history
…ummy rails app required for testing
  • Loading branch information
ejdraper committed Dec 22, 2010
1 parent fda09f0 commit 9d52001
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ spec = Gem::Specification.new do |s|
s.extra_rdoc_files = %w(README.rdoc)
s.rdoc_options = %w(--main README.rdoc)

s.files = %w(MIT-LICENSE README.rdoc) + Dir.glob("{app,config,test,lib}/**/*")
s.files = %w(MIT-LICENSE README.rdoc) + Dir.glob("{app,config,lib}/**/*")
s.require_paths = ["lib"]

s.add_development_dependency("rails", "3.0.3")
Expand Down
2 changes: 1 addition & 1 deletion chameleon.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Gem::Specification.new do |s|
s.date = %q{2010-12-22}
s.email = %q{el@ejdraper.com}
s.extra_rdoc_files = ["README.rdoc"]
s.files = ["MIT-LICENSE", "README.rdoc", "app/controllers/widgets_controller.rb", "app/models/widget.rb", "app/views/widgets/number_and_secondary.xml.erb", "config/routes.rb", "test/chameleon_test.rb", "test/dummy/app/controllers/application_controller.rb", "test/dummy/app/helpers/application_helper.rb", "test/dummy/app/views/layouts/application.html.erb", "test/dummy/app/widgets/test_widget.rb", "test/dummy/app/widgets/test_widget2.rb", "test/dummy/config/application.rb", "test/dummy/config/boot.rb", "test/dummy/config/database.yml", "test/dummy/config/environment.rb", "test/dummy/config/environments/development.rb", "test/dummy/config/environments/production.rb", "test/dummy/config/environments/test.rb", "test/dummy/config/initializers/backtrace_silencers.rb", "test/dummy/config/initializers/inflections.rb", "test/dummy/config/initializers/mime_types.rb", "test/dummy/config/initializers/secret_token.rb", "test/dummy/config/initializers/session_store.rb", "test/dummy/config/locales/en.yml", "test/dummy/config/routes.rb", "test/dummy/config.ru", "test/dummy/db/test.sqlite3", "test/dummy/log/development.log", "test/dummy/log/production.log", "test/dummy/log/server.log", "test/dummy/log/test.log", "test/dummy/public/404.html", "test/dummy/public/422.html", "test/dummy/public/500.html", "test/dummy/public/favicon.ico", "test/dummy/public/javascripts/application.js", "test/dummy/public/javascripts/controls.js", "test/dummy/public/javascripts/dragdrop.js", "test/dummy/public/javascripts/effects.js", "test/dummy/public/javascripts/prototype.js", "test/dummy/public/javascripts/rails.js", "test/dummy/Rakefile", "test/dummy/script/rails", "test/functional/widgets_test.rb", "test/integration/navigation_test.rb", "test/support/integration_case.rb", "test/test_helper.rb", "test/unit/widget_test.rb", "lib/chameleon.rb", "lib/generators/chameleon/widget_generator.rb"]
s.files = ["MIT-LICENSE", "README.rdoc", "app/controllers", "app/controllers/widgets_controller.rb", "app/models", "app/models/widget.rb", "app/views", "app/views/widgets", "app/views/widgets/number_and_secondary.xml.erb", "config/routes.rb", "lib/chameleon.rb", "lib/generators", "lib/generators/chameleon", "lib/generators/chameleon/widget_generator.rb"]
s.homepage = %q{http://github.com/ejdraper/chameleon}
s.rdoc_options = ["--main", "README.rdoc"]
s.require_paths = ["lib"]
Expand Down

0 comments on commit 9d52001

Please sign in to comment.