Rakefile in foursquare-0.0.1 vs Rakefile in foursquare-0.1.0

- old
+ new

@@ -4,25 +4,22 @@ require 'date' require 'spec/rake/spectask' spec = Gem::Specification.new do |s| s.name = "foursquare" - s.version = "0.0.1" + s.version = "0.1.0" s.author = "Jeremy Welch" s.email = "hello@jeremyrwelch.com" - s.homepage = "http://jeremyrwelch.com" + s.homepage = "http://foursquare.rubyforge.org" s.description = s.summary = "A simple Ruby wrapper for the Foursquare API" s.platform = Gem::Platform::RUBY s.has_rdoc = true - s.extra_rdoc_files = ["README.rdoc", "LICENSE", "History"] + s.extra_rdoc_files = ["README.rdoc", "History"] - # Uncomment this to add a dependency - # s.add_dependency "foo" - s.require_path = 'lib' s.autorequire = 'foursquare' - s.files = %w(LICENSE README.rdoc Rakefile History) + Dir.glob("{lib,spec,script,examples}/**/*") + s.files = %w(README.rdoc Rakefile History) + Dir.glob("{lib,spec,script,examples}/**/*") s.add_dependency('httparty', '0.4.3') end task :default => :spec \ No newline at end of file