Skip to content

Commit

Permalink
Typo fail - fix for Article#comments and push to 1.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Edward Ocampo-Gooding committed Jun 7, 2011
1 parent c6e222f commit c5ab2ff
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
== Version 1.2.5

* Fix for Article#comments

== Version 1.2.4

* Added Article#comments
Expand Down
2 changes: 1 addition & 1 deletion lib/shopify_api.rb
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ class Article < Base
self.prefix = "/admin/blogs/:blog_id/"

def comments
Comment.find(:all, :param => { :article_id => id })
Comment.find(:all, :params => { :article_id => id })
end
end

Expand Down
2 changes: 1 addition & 1 deletion shopify_api.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Gem::Specification.new do |s|
s.name = %q{shopify_api}
s.version = "1.2.4"
s.version = "1.2.5"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Tobias L\303\274tke", "Cody Fauser", "Dennis Theisen", "Edward Ocampo-Gooding"]
Expand Down

0 comments on commit c5ab2ff

Please sign in to comment.