Skip to content

Commit

Permalink
Fix the Rakefile to use the version file and include rubundler and de…
Browse files Browse the repository at this point in the history
…pendencies
  • Loading branch information
halorgium committed Dec 18, 2008
1 parent 19a7a1e commit f77fdc6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Rakefile
Expand Up @@ -8,7 +8,7 @@ require 'date'
require 'lib/dm-salesforce/version' require 'lib/dm-salesforce/version'


GEM = "dm-salesforce" GEM = "dm-salesforce"
GEM_VERSION = "0.9.7.3" GEM_VERSION = DataMapperSalesforce::VERSION
AUTHOR = "Yehuda Katz" AUTHOR = "Yehuda Katz"
EMAIL = "wycats@gmail.com" EMAIL = "wycats@gmail.com"
HOMEPAGE = "http://www.yehudakatz.com" HOMEPAGE = "http://www.yehudakatz.com"
Expand All @@ -34,7 +34,7 @@ spec = Gem::Specification.new do |s|
end end
s.require_path = 'lib' s.require_path = 'lib'
s.autorequire = GEM s.autorequire = GEM
s.files = %w(LICENSE README.markdown Rakefile) + Dir.glob("{lib,specs}/**/*") s.files = %w(LICENSE README.markdown Rakefile config/dependencies.rb config/rubundler.rb) + Dir.glob("{lib,specs}/**/*")
end end


Rake::GemPackageTask.new(spec) do |pkg| Rake::GemPackageTask.new(spec) do |pkg|
Expand Down

0 comments on commit f77fdc6

Please sign in to comment.