Skip to content

Commit

Permalink
updated history
Browse files Browse the repository at this point in the history
  • Loading branch information
philnash committed Nov 16, 2009
1 parent 066a02d commit 7213699
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 7 deletions.
10 changes: 10 additions & 0 deletions HISTORY
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
=== 0.1.3 / 2009-11-16

* 1 minor enhancement

* Added popularity to artists and albums when they are a result of a search

* 1 bug fix

* Search results with only one result were failing

=== 0.1.2 / 2009-11-15

* 2 minor enhancements
Expand Down
22 changes: 15 additions & 7 deletions meta-spotify.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,22 @@

Gem::Specification.new do |s|
s.name = %q{meta-spotify}
s.version = "0.1.0"
s.version = "0.1.2"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Phil Nash"]
s.date = %q{2009-10-30}
s.date = %q{2009-11-16}
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",
Expand All @@ -32,6 +32,8 @@ Gem::Specification.new do |s|
"test/fixtures/album_search.xml",
"test/fixtures/artist.xml",
"test/fixtures/artist_search.xml",
"test/fixtures/artist_search_one_result.xml",
"test/fixtures/artist_with_albumdetail.xml",
"test/fixtures/track.xml",
"test/fixtures/track_search.xml",
"test/fixtures/track_search_page_2.xml",
Expand All @@ -58,15 +60,21 @@ Gem::Specification.new do |s|
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_runtime_dependency(%q<httparty>, [">= 0.4.5"])
s.add_runtime_dependency(%q<crack>, [">= 0.1.4"])
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<httparty>, [">= 0.4.5"])
s.add_dependency(%q<crack>, [">= 0.1.4"])
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<httparty>, [">= 0.4.5"])
s.add_dependency(%q<crack>, [">= 0.1.4"])
s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
s.add_dependency(%q<fakeweb>, [">= 0"])
end
end

0 comments on commit 7213699

Please sign in to comment.