meta-spotify.gemspec in meta-spotify-0.1.0 vs meta-spotify.gemspec in meta-spotify-0.1.1
- old
+ new
@@ -3,27 +3,26 @@
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{meta-spotify}
- s.version = "0.1.0"
+ s.version = "0.1.1"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
- s.authors = ["philnash"]
- s.date = %q{2009-10-30}
- s.description = %q{A ruby wrapper for the Spotify Metadata API}
+ s.authors = ["Phil Nash"]
+ s.date = %q{2009-11-08}
s.email = %q{philnash@gmail.com}
s.extra_rdoc_files = [
"LICENSE",
- "README.rdoc"
+ "README.markdown"
]
s.files = [
".document",
".gitignore",
"HISTORY",
"LICENSE",
- "README.rdoc",
+ "README.markdown",
"Rakefile",
"VERSION",
"lib/meta-spotify.rb",
"lib/meta-spotify/album.rb",
"lib/meta-spotify/artist.rb",
@@ -42,10 +41,11 @@
"test/test_track.rb"
]
s.homepage = %q{http://github.com/philnash/meta-spotify}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
+ s.rubyforge_project = %q{meta-spotify}
s.rubygems_version = %q{1.3.5}
s.summary = %q{A ruby wrapper for the Spotify Metadata API}
s.test_files = [
"test/helper.rb",
"test/test_album.rb",
@@ -56,14 +56,20 @@
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
+ s.add_runtime_dependency(%q<httparty>, [">= 0"])
s.add_development_dependency(%q<thoughtbot-shoulda>, [">= 0"])
+ s.add_development_dependency(%q<fakeweb>, [">= 0"])
else
+ s.add_dependency(%q<httparty>, [">= 0"])
s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
+ s.add_dependency(%q<fakeweb>, [">= 0"])
end
else
+ s.add_dependency(%q<httparty>, [">= 0"])
s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
+ s.add_dependency(%q<fakeweb>, [">= 0"])
end
end