Rakefile in appengine-tools-0.0.6 vs Rakefile in appengine-tools-0.0.7

- old
+ new

@@ -3,11 +3,11 @@ require 'rubygems/specification' require 'date' require 'spec/rake/spectask' GEM = "appengine-tools" -GEM_VERSION = "0.0.6" +GEM_VERSION = "0.0.7" AUTHOR = "Ryan Brown" EMAIL = "ribrdb@gmail.com" HOMEPAGE = "http://code.google.com/p/appengine-jruby" SUMMARY = "Tools for developing and deploying apps to Google App Engine" @@ -22,15 +22,16 @@ s.author = AUTHOR s.email = EMAIL s.homepage = HOMEPAGE s.require_path = 'lib' - s.files = %w(LICENSE README.rdoc Rakefile) + Dir.glob("{lib,spec}/**/*.rb") + s.files = %w(LICENSE README.rdoc Rakefile) + + Dir.glob("{lib,spec}/**/*.rb") + Dir.glob("lib/**/*.class") s.executables = [ 'appcfg.rb', 'dev_appserver.rb' ] s.add_dependency('appengine-rack') s.add_dependency('appengine-sdk') s.add_dependency('appengine-jruby-jars') - s.add_dependency('bundler') + s.add_dependency('bundler', ["~> 0.7.2"]) s.add_dependency('rubyzip') end task :default => :spec