Skip to content

Commit

Permalink
Updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Wynn Netherland committed Nov 4, 2009
1 parent bb196b6 commit d6bf8c5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ begin
gem.rubyforge_project = "twitter"
gem.files = FileList["[A-Z]*", "{examples,lib,test}/**/*"]

gem.add_dependency('oauth', '>= 0.3.5')
gem.add_dependency('mash', '0.0.3')
gem.add_dependency('httparty', '0.4.3')
gem.add_dependency('oauth', '~> 0.3.5')
gem.add_dependency('mash', '~> 0.0.3')
gem.add_dependency('httparty', '~> 0.4.3')

gem.add_development_dependency('thoughtbot-shoulda', '>= 2.10.1')
gem.add_development_dependency('jeremymcanally-matchy', '0.4.0')
Expand Down
6 changes: 3 additions & 3 deletions lib/twitter.rb
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
require 'forwardable'
require 'rubygems'

gem 'oauth', '>= 0.3.5'
gem 'oauth', '~> 0.3.5'
require 'oauth'

gem 'mash', '0.0.3'
gem 'mash', '~> 0.0.3'
require 'mash'

gem 'httparty', '0.4.3'
gem 'httparty', '~> 0.4.3'
require 'httparty'

module Twitter
Expand Down
2 changes: 1 addition & 1 deletion lib/twitter/base.rb
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def friends_timeline(query={})
perform_get('/statuses/friends_timeline.json', :query => query)
end

# Options: id, user_id, screen_name, since_id, max_id, page, since
# Options: id, user_id, screen_name, since_id, max_id, page, since, count
def user_timeline(query={})
perform_get('/statuses/user_timeline.json', :query => query)
end
Expand Down

0 comments on commit d6bf8c5

Please sign in to comment.