lib/jeweler.rb in technicalpickles-jeweler-0.2.0 vs lib/jeweler.rb in technicalpickles-jeweler-0.3.0
- old
+ new
@@ -3,13 +3,13 @@
require 'jeweler/bumping'
require 'jeweler/versioning'
require 'jeweler/singleton'
require 'jeweler/gemspec'
require 'jeweler/errors'
+require 'jeweler/generator'
require 'jeweler/tasks' if defined?(Rake)
-require 'jeweler/active_support' # Adds the stolen camelize and constantize
# A Jeweler helps you craft the perfect Rubygem. Give him a gemspec, and he takes care of the rest.
class Jeweler
include Jeweler::Singleton
include Jeweler::Bumping
@@ -22,9 +22,9 @@
def initialize(gemspec, base_dir = '.')
raise(GemspecError, "Can't create a Jeweler with a nil gemspec") if gemspec.nil?
@gemspec = gemspec
@base_dir = base_dir
- @gemspec.files ||= FileList["[A-Z]*.*", "{generators,lib,test,spec}/**/*"]
+ @gemspec.files ||= FileList["[A-Z]*.*", "{bin,generators,lib,test,spec}/**/*"]
end
end