Rakefile in tabs_on_rails-1.3.1 vs Rakefile in tabs_on_rails-1.3.2

- old
+ new

@@ -59,18 +59,18 @@ # as appropriate s.extra_rdoc_files = Dir.glob("*.rdoc") s.rdoc_options = %w(--main README.rdoc) # Add any extra files to include in the gem (like your README) - s.files = %w(Rakefile init.rb) + Dir.glob("*.{rdoc,gemspec}") + Dir.glob("{test,lib,rails}/**/*") + s.files = %w( Rakefile init.rb ) + Dir.glob("*.{rdoc,gemspec}") + Dir.glob("{test,lib,rails}/**/*") s.require_paths = ["lib"] # If you want to depend on other gems, add them here, along with any # relevant versions # s.add_dependency("some_other_gem", "~> 0.1.0") # If your tests use any gems, include them here - # s.add_development_dependency("mocha") # for example + s.add_development_dependency("bundler") end # This task actually builds the gem. We also regenerate a static # .gemspec file, which is useful if something (i.e. GitHub) will # be automatically building a gem for this project. If you're not