ddollar-twitter 0.6.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (52) hide show
  1. data/History +218 -0
  2. data/License +20 -0
  3. data/Notes +33 -0
  4. data/README.rdoc +19 -0
  5. data/Rakefile +70 -0
  6. data/VERSION.yml +4 -0
  7. data/examples/connect.rb +30 -0
  8. data/examples/friendship_existance.rb +13 -0
  9. data/examples/helpers/config_store.rb +38 -0
  10. data/examples/httpauth.rb +11 -0
  11. data/examples/ids.rb +13 -0
  12. data/examples/search.rb +15 -0
  13. data/examples/timeline.rb +19 -0
  14. data/examples/unauthorized.rb +16 -0
  15. data/examples/update.rb +11 -0
  16. data/examples/user.rb +5 -0
  17. data/lib/twitter.rb +63 -0
  18. data/lib/twitter/base.rb +165 -0
  19. data/lib/twitter/httpauth.rb +27 -0
  20. data/lib/twitter/oauth.rb +41 -0
  21. data/lib/twitter/request.rb +102 -0
  22. data/lib/twitter/search.rb +111 -0
  23. data/lib/twitter/trends.rb +29 -0
  24. data/test/fixtures/firehose.json +1 -0
  25. data/test/fixtures/follower_ids.json +1 -0
  26. data/test/fixtures/friend_ids.json +1 -0
  27. data/test/fixtures/friends_timeline.json +1 -0
  28. data/test/fixtures/rate_limit_exceeded.json +1 -0
  29. data/test/fixtures/replies.json +1 -0
  30. data/test/fixtures/search.json +1 -0
  31. data/test/fixtures/search_from_jnunemaker.json +1 -0
  32. data/test/fixtures/status.json +1 -0
  33. data/test/fixtures/status_show.json +1 -0
  34. data/test/fixtures/trends_current.json +1 -0
  35. data/test/fixtures/trends_current_exclude.json +1 -0
  36. data/test/fixtures/trends_daily.json +1 -0
  37. data/test/fixtures/trends_daily_date.json +1 -0
  38. data/test/fixtures/trends_daily_exclude.json +1 -0
  39. data/test/fixtures/trends_weekly.json +1 -0
  40. data/test/fixtures/trends_weekly_date.json +1 -0
  41. data/test/fixtures/trends_weekly_exclude.json +1 -0
  42. data/test/fixtures/user.json +1 -0
  43. data/test/fixtures/user_timeline.json +1 -0
  44. data/test/test_helper.rb +36 -0
  45. data/test/twitter/base_test.rb +95 -0
  46. data/test/twitter/httpauth_test.rb +76 -0
  47. data/test/twitter/oauth_test.rb +81 -0
  48. data/test/twitter/request_test.rb +217 -0
  49. data/test/twitter/search_test.rb +159 -0
  50. data/test/twitter/trends_test.rb +95 -0
  51. data/test/twitter_test.rb +38 -0
  52. metadata +200 -0
data/History ADDED
@@ -0,0 +1,218 @@
1
+ 0.6.14 - August 16, 2009
2
+ * Lowered the oauth requirement to 0.3.4 as people are complaining about 0.3.5
3
+
4
+ 0.6.13 - July 27, 2009
5
+ * 1 minor update
6
+ * Set oauth version to >= 0.3.5 so I don't have to release new gem for each oauth update, which seems to be frequent of late
7
+
8
+ 0.6.12 - June 26, 2009
9
+ * 2 minor additions
10
+ * fixed fakeweb test issue (obie fernandez)
11
+ * added user agent option to searches
12
+
13
+ 0.6.11 - May 18, 2009
14
+ * 1 minor addition
15
+ * Added the ability to sign in with twitter instead of authorizing
16
+
17
+ 0.6.10 - May 18, 2009
18
+ * 1 cool addition
19
+ * Added full support for trends - current, daily and weekly (even allowing excluding of hashtags and for specific dates)
20
+
21
+ 0.6.9 - May 17, 2009
22
+ * 1 minor tweak
23
+ * Bumped oauth dependency version to 0.3.4.
24
+
25
+ 0.6.8 - April 23, 2009
26
+ * 1 dependency fix
27
+ * forgot to update rakefile rendering previous 0.6.7 release useless. crap!
28
+
29
+ 0.6.7 - April 23, 2009
30
+ * 1 minor fix
31
+ * Bumped httparty version to 0.4.3 which allows response.message and fixes errors that the lack of response.message was causing to the twitter gem
32
+
33
+ 0.6.6 - April 16, 2009
34
+ * 1 minor enhancement
35
+ * added ability to pass query parameters to user method
36
+ * httpauth can now accept :ssl option to use https instead of http
37
+ * Added Twitter.status method for no auth calls to fetch status
38
+ * Added Twitter.friend_ids method for no auth calls to fetch status
39
+ * Added Twitter.follower_ids method for no auth calls to fetch status
40
+
41
+ 0.6.5 - April 15, 2009
42
+ * 1 bug fix
43
+ * fixed that friend_ids and follower_ids were bombing from trying to mash them. Added :mash option to Twitter::Request so I can specifically not mash certain responses from twitter
44
+
45
+ 0.6.4 - April 14, 2009
46
+ * 1 minor tweak
47
+ * More explicit about dependency versions in gemspec and when requiring.
48
+
49
+ 0.6.3 - April 14, 2009
50
+ * 1 minor addition
51
+ * Added Twitter.user method to get user's information without authenticating
52
+
53
+ 0.6.2 - April 14, 2009
54
+ * 1 minor addition
55
+ * added max to search so you can set the max id that should be used
56
+
57
+ 0.6.1 - April 12, 2009
58
+ * 1 minor fix
59
+ * Had two friend_ids functions. Renamed one of them to follower_ids.
60
+
61
+ 0.6.0 - April 11, 2009
62
+ * 1 feature addition
63
+ * Added http authentication back in. You can now use oauth or http auth as your client.
64
+
65
+ 0.5.3 - April 10, 2009
66
+ * 1 minor fix
67
+ * Twitter API assumed follow true whether true or false. Now only sending follow along to request if follow is true for calls to friendship_create.
68
+
69
+ 0.5.2 - April 8, 2009
70
+ * 4 minor fixes
71
+ * added mash as an install dependency, forgot it initially
72
+ * fixed that search wasn't taking into account a bunch of options duh!
73
+ * fixed some missing vars and stuff in exception raising
74
+ * added development dependencies to rake file to make that more explicit (technomancy)
75
+ * lame workaround for Mash#hash that allows using return objects in sets and such (technomancy)
76
+
77
+ 0.5.1 - April 5, 2009
78
+ * 1 minor change
79
+ * Added data error hash returned from twitter to a few of the exceptions to help with debugging
80
+ * Fixed friendship_exists?. Was throwing mash stringify keys error because it was returning true or false instead of hash or array.
81
+
82
+ 0.5.0 - April 3, 2009
83
+ * 1 major rewrite for OAuth
84
+ * Backwards compatibility thrown to the wind
85
+ * Proxy no longer supported (someone please add it back in, I never use proxies)
86
+ * Identica support killed with an axe (nothing against them but I don't use it)
87
+ * CLI shot to death (will be reborn at a later date using oauth and its own gem)
88
+
89
+ 0.4.3 - February 21, 2009
90
+ * 1 minor enhancement
91
+ * verify_credentials now returns a Twitter::User rather than an hpricot doc
92
+
93
+ 0.4.2 - February 10, 2009
94
+ * 1 minor enhancement
95
+ * Adding the Social Graph API methods (Josh Owens)
96
+
97
+ 0.4.1 - January 1, 2009
98
+ * 4 minor enhancements and 2 bug fixes:
99
+ * Added better exception handling (Billy Gray)
100
+ * Added page to search (Michael Ivey)
101
+ * Adding an option to display tweets on CLI in reverse order (oldest first). (Cameron Booth)
102
+ * Added in_reply_to_status_id option for replying to statuses (anthonycrumley)
103
+ * Fixed a bug where the @config was improperly set (K. Adam Christensen)
104
+ * Fix verify_credentials to include a format (breaks in laconica). (dustin)
105
+
106
+ 0.4.0 - December 23, 2008
107
+ * 3 major changes
108
+ * Removed active support as dependency
109
+ * Removed CLI dependencies from install dependency list
110
+ (they are now only installed by you manually)
111
+ * Switched to echoe for gem managment
112
+
113
+ 0.3.7 - August 26, 2008
114
+ * Fixed source param not getting through
115
+
116
+ 0.3.6 - August 11, 2008
117
+ * Fixed a few more methods that required post.
118
+ * Refactored the remaining methods that were not using #request to use it.
119
+
120
+ 0.3.5 - August 4, 2008
121
+ * Removed sqlite-ruby 1.2.2 as a dependency due to install issues on linux
122
+
123
+ 0.3.4 - August 3, 2008
124
+ * Added search support
125
+
126
+ 0.3.3 - August 3, 2008
127
+ * Now has option for host when initializing to support identi.ca (Dustin Sallings)
128
+ * Twitter changed a bunch of methods to POST only so I updated those to now work
129
+
130
+ 0.3.2 - July 26, 2008
131
+ * added the CLI gems as dependencies for now until I separate out the CLI from the API wrapper
132
+ * cleaner CLI errors for no active account or no accounts at all
133
+ * remove sets a new active account if there are none
134
+ * added username and password optional arguments to add
135
+ * added import attempt on install and on anything that uses #current_account helper
136
+
137
+ 0.3.1 - July 23, 2008
138
+ * added open to CLI twitter open jnunemaker would open default browser to http://twitter.com/jnunemaker
139
+ * added -f to timeline and replies which ignores the since_id and shows all results
140
+ * added clear_config to remove all cached since id's and such
141
+ * Majorly pimped the output of timelines and replies.
142
+
143
+ 0.3.0 - July 22, 2008
144
+ * complete rewrite of CLI. Now supports multiple accounts and changing between them.
145
+ * added source, truncated, in_reply_to_status_id, in_reply_to_user_id, and favorited to Twitter::Status
146
+ * added protected to Twitter::User
147
+ * d CLI method now takes standard input like post
148
+ * Rewrote several methods that had since parameter to now use a hash instead. This makes it more flexible as API updates.
149
+ * Rewrote the methods that took lite or since as an argument to instead take a hash.
150
+ * added Twitter::Base#friendship_exists?
151
+ * added Twitter::Base#update_location
152
+ * added Twitter::Base#update_delivery_device
153
+ * added Twitter::Base#favorites
154
+ * added Twitter::Base#create_favorite
155
+ * added Twitter::Base#destroy_favorite
156
+ * added Twitter::Base#block
157
+ * added Twitter::Base#unblock
158
+
159
+ BACKWORDS COMPATIBILITY BREAK:
160
+ Any method that you have using lite or since as an argument
161
+ will no longer work with this version. Simply change to a
162
+ hash and you'll be fine. For example:
163
+
164
+ friends(true) would now be friends(:lite => true)
165
+
166
+ 0.2.7 - June 29, 2008
167
+ * added #rate_limit_status (Daniel Morrison)
168
+ * added source parameter option to Base#post
169
+ * added twittergem as source when posting from command line
170
+ * Twitter::RateExceeded raised when you hit your limit (Jim O'Leary)
171
+ * Twitter::Unavailable raised when twitter returns 503
172
+ * Twitter::CantConnect is now more descriptive as to what is the problem when it is raised during a request
173
+ * quoting your message when using twitter post on the command line is now optional (Benoit Caccinolo)
174
+ * aliased post to p on command line so it's shorter (Benoit Caccinolo)
175
+ * unescaped html and added some color in command line view (Miles Z. Sterrett)
176
+ * added gemspec (technoweenie, Miles Z. Sterrett)
177
+ * Fixed stack trace error on first command line operation (Matt Rose)
178
+ 0.2.6 - April 2, 2008
179
+ * found a more simple way of doing stdin without any extra gem dependencies
180
+ 0.2.5 - April 2, 2008
181
+ * Command line interface can now use stdin for posting (ideas and example code from Jeremy Friesen)
182
+ $ twitter post 'test without stdin' # => twitters: test without stdin
183
+ $ echo 'test with stdin' | twitter post 'and an argv[1]' # => twitters: test with stdin and an argv[1]
184
+ $ echo 'test with stdin without any argv[1]' | twitter post # => twitters: test with stdin without any argv[1]
185
+ 0.2.4 - Mar 31, 2008
186
+ * Added lite option to friends and followers, which doesn't include the user's current status (Daniel Morrison)
187
+ * Updated since option to use HTTP header, and added the option on timeline() and replies(). (Daniel Morrison)
188
+ 0.2.3 - Jan 16, 2008
189
+ * added d to command line interface twitter d jnunemaker 'hola' (Humbucker)
190
+ * added progress dots when posting for confirmation when twitter is running slow (Hendy Irawan)
191
+ 0.2.2 - added leave and follow which are new twitter api methods for turning notifications on and off
192
+ 0.2.0 - Aug 4, 2007
193
+ * added sent_messages
194
+ * alias direct_messages to received_messages
195
+ * added create_friendship
196
+ * added destroy_friendship
197
+ * added featured to retrieve the featured twitter users
198
+ * added replies
199
+ * added destroy to destroy a status by id
200
+ * added status to find a status by id
201
+ * added active support as an extra dependency
202
+ * implemented d method to send direct messages (jnewland)
203
+ * fixed since argument in direct_messages method (jnewland)
204
+ 0.1.1 - May 20, 2007
205
+ * hpricot 0.5+ now supported; just a bug fix (Ryan Waldron is the man!)
206
+ 0.1.0 - March 31, 2007
207
+ * added d method for creating direct messages (waiting for it to work as documented)
208
+ * added featured method for getting featured users statuses (waiting for it to work as documented)
209
+ * added direct_messages method
210
+ * added friends_for method
211
+ * added a few tests
212
+ * removed relative_created_at as it is deprecated
213
+ * separated out the call method into call, request and parse methods
214
+ 0.0.5 - just a bit of code cleanup
215
+ 0.0.4 - added :location, :description, :url, :profile_image_url to user class (Alex Payne)
216
+ 0.0.3 - added a bit more informative message when things go wrong
217
+ 0.0.2 - added the command line options i forgot to add (friend and follower); improved some docs
218
+ 0.0.1 - initial release
data/License ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2009 John Nunemaker
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/Notes ADDED
@@ -0,0 +1,33 @@
1
+ *****************************************************************
2
+ * From Twitter API Docs, so I don't have to keep going to them. *
3
+ *****************************************************************
4
+
5
+ http://apiwiki.twitter.com/REST+API+Documentation
6
+
7
+ 200 OK: everything went awesome.
8
+ 304 Not Modified: there was no new data to return.
9
+ 400 Bad Request: your request is invalid, and we'll return an error message that tells you why. This is the status code returned if you've exceeded the rate limit (see below).
10
+ 401 Not Authorized: either you need to provide authentication credentials, or the credentials provided aren't valid.
11
+ 403 Forbidden: we understand your request, but are refusing to fulfill it. An accompanying error message should explain why.
12
+ 404 Not Found: either you're requesting an invalid URI or the resource in question doesn't exist (ex: no such user).
13
+ 500 Internal Server Error: we did something wrong. Please post to the group about it and the Twitter team will investigate.
14
+ 502 Bad Gateway: returned if Twitter is down or being upgraded.
15
+ 503 Service Unavailable: the Twitter servers are up, but are overloaded with requests. Try again later.
16
+
17
+ **********
18
+ * Errors *
19
+ **********
20
+
21
+ <?xml version="1.0" encoding="UTF-8"?>
22
+ <hash>
23
+ <request>/direct_messages/destroy/456.xml</request>
24
+ <error>No direct message with that ID found.</error>
25
+ </hash>
26
+
27
+ **********************
28
+ * Rate Limit Headers *
29
+ **********************
30
+
31
+ X-RateLimit-Limit the current limit in effect
32
+ X-RateLimit-Remaining the number of hits remaining before you are rate limited
33
+ X-RateLimit-Reset the time the current rate limiting period ends (in epoch time, number of seconds since 1970-01-01 00:00:00)
data/README.rdoc ADDED
@@ -0,0 +1,19 @@
1
+ = twitter
2
+
3
+ The ruby twitter gem. The gem heard round the world and famous on the streets. Haha. This gem *works with both oauth and http auth*, if you care.
4
+
5
+ For now this is just an API wrapper. The command line interface is temporarily dead until I have time to make it work with oauth. At that point, I'll make it a new gem twitter-cli or something and it will depend on this gem to work. That will keep the separation of the api wrapper and cli and fix a lot of dependency issues.
6
+
7
+ == examples
8
+
9
+ See the examples directory.
10
+
11
+ http://github.com/jnunemaker/twitter/tree/master/examples
12
+
13
+ == docs
14
+
15
+ http://rdoc.info/projects/jnunemaker/twitter
16
+
17
+ == Copyright
18
+
19
+ Copyright (c) 2009 John Nunemaker. See LICENSE for details.
data/Rakefile ADDED
@@ -0,0 +1,70 @@
1
+ require 'rubygems'
2
+ require 'rake'
3
+
4
+ begin
5
+ require 'jeweler'
6
+ Jeweler::Tasks.new do |gem|
7
+ gem.name = "twitter"
8
+ gem.summary = %Q{wrapper for the twitter api (oauth only)}
9
+ gem.email = "nunemaker@gmail.com"
10
+ gem.homepage = "http://github.com/jnunemaker/twitter"
11
+ gem.authors = ["John Nunemaker"]
12
+ gem.rubyforge_project = "twitter"
13
+ gem.files = FileList["[A-Z]*", "{examples,lib,test}/**/*"]
14
+
15
+ gem.add_dependency('oauth', '>= 0.3.4')
16
+ gem.add_dependency('mash', '0.0.3')
17
+ gem.add_dependency('httparty', '0.4.4')
18
+
19
+ gem.add_development_dependency('thoughtbot-shoulda')
20
+ gem.add_development_dependency('jeremymcanally-matchy')
21
+ gem.add_development_dependency('mocha')
22
+ gem.add_development_dependency('fakeweb')
23
+ gem.add_development_dependency('mash')
24
+ end
25
+
26
+ Jeweler::RubyforgeTasks.new do |rubyforge|
27
+ rubyforge.doc_task = "rdoc"
28
+ end
29
+ rescue LoadError
30
+ puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
31
+ end
32
+
33
+ require 'rake/testtask'
34
+ Rake::TestTask.new(:test) do |test|
35
+ test.libs << 'lib' << 'test'
36
+ test.pattern = 'test/**/*_test.rb'
37
+ test.verbose = false
38
+ end
39
+
40
+ begin
41
+ require 'rcov/rcovtask'
42
+ Rcov::RcovTask.new do |test|
43
+ test.libs << 'test'
44
+ test.pattern = 'test/**/*_test.rb'
45
+ test.verbose = true
46
+ end
47
+ rescue LoadError
48
+ task :rcov do
49
+ abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov"
50
+ end
51
+ end
52
+
53
+
54
+ task :default => :test
55
+
56
+ require 'rake/rdoctask'
57
+ Rake::RDocTask.new do |rdoc|
58
+ if File.exist?('VERSION.yml')
59
+ config = YAML.load(File.read('VERSION.yml'))
60
+ version = "#{config[:major]}.#{config[:minor]}.#{config[:patch]}"
61
+ else
62
+ version = ""
63
+ end
64
+
65
+ rdoc.rdoc_dir = 'rdoc'
66
+ rdoc.title = "twitter #{version}"
67
+ rdoc.rdoc_files.include('README*')
68
+ rdoc.rdoc_files.include('lib/**/*.rb')
69
+ end
70
+
data/VERSION.yml ADDED
@@ -0,0 +1,4 @@
1
+ ---
2
+ :major: 0
3
+ :minor: 6
4
+ :patch: 15
@@ -0,0 +1,30 @@
1
+ require File.join(File.dirname(__FILE__), '..', 'lib', 'twitter')
2
+ require File.join(File.dirname(__FILE__), 'helpers', 'config_store')
3
+ require 'pp'
4
+
5
+ config = ConfigStore.new("#{ENV['HOME']}/.twitter")
6
+ oauth = Twitter::OAuth.new(config['token'], config['secret'])
7
+
8
+ if config['atoken'] && config['asecret']
9
+ oauth.authorize_from_access(config['atoken'], config['asecret'])
10
+ twitter = Twitter::Base.new(oauth)
11
+ pp twitter.friends_timeline
12
+
13
+ elsif config['rtoken'] && config['rsecret']
14
+ oauth.authorize_from_request(config['rtoken'], config['rsecret'])
15
+ twitter = Twitter::Base.new(oauth)
16
+ pp twitter.friends_timeline
17
+
18
+ config.update({
19
+ 'atoken' => oauth.access_token.token,
20
+ 'asecret' => oauth.access_token.secret,
21
+ }).delete('rtoken', 'rsecret')
22
+ else
23
+ config.update({
24
+ 'rtoken' => oauth.request_token.token,
25
+ 'rsecret' => oauth.request_token.secret,
26
+ })
27
+
28
+ # authorize in browser
29
+ %x(open #{oauth.request_token.authorize_url})
30
+ end
@@ -0,0 +1,13 @@
1
+ require File.join(File.dirname(__FILE__), '..', 'lib', 'twitter')
2
+ require File.join(File.dirname(__FILE__), 'helpers', 'config_store')
3
+ require 'pp'
4
+
5
+ config = ConfigStore.new("#{ENV['HOME']}/.twitter")
6
+
7
+ oauth = Twitter::OAuth.new(config['token'], config['secret'])
8
+ oauth.authorize_from_access(config['atoken'], config['asecret'])
9
+
10
+ client = Twitter::Base.new(oauth)
11
+
12
+ puts client.friendship_exists?('jnunemaker', 'orderedlist')
13
+ puts client.friendship_exists?('jnunemaker', 'biz')
@@ -0,0 +1,38 @@
1
+ class ConfigStore
2
+ attr_reader :file
3
+
4
+ def initialize(file)
5
+ @file = file
6
+ end
7
+
8
+ def load
9
+ @config ||= YAML::load(open(file))
10
+ self
11
+ end
12
+
13
+ def [](key)
14
+ load
15
+ @config[key]
16
+ end
17
+
18
+ def []=(key, value)
19
+ @config[key] = value
20
+ end
21
+
22
+ def delete(*keys)
23
+ keys.each { |key| @config.delete(key) }
24
+ save
25
+ self
26
+ end
27
+
28
+ def update(c={})
29
+ @config.merge!(c)
30
+ save
31
+ self
32
+ end
33
+
34
+ def save
35
+ File.open(file, 'w') { |f| f.write(YAML.dump(@config)) }
36
+ self
37
+ end
38
+ end