bkocik-twitter 0.6.8 → 0.6.9
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.
- data/Rakefile +3 -4
- data/VERSION.yml +1 -1
- data/test/fixtures/backslash_status.json +1 -0
- data/test/fixtures/generic_response.json +1 -0
- metadata +14 -2
data/Rakefile
CHANGED
@@ -6,9 +6,9 @@ begin
|
|
6
6
|
Jeweler::Tasks.new do |gem|
|
7
7
|
gem.name = "twitter"
|
8
8
|
gem.summary = %Q{wrapper for the twitter api (oauth only)}
|
9
|
-
gem.email = "
|
10
|
-
gem.homepage = "http://github.com/
|
11
|
-
gem.authors = ["John Nunemaker"]
|
9
|
+
gem.email = "bkocik@gmail.com"
|
10
|
+
gem.homepage = "http://github.com/bkocik/twitter"
|
11
|
+
gem.authors = ["John Nunemaker", "Bill Kocik"]
|
12
12
|
gem.rubyforge_project = "twitter"
|
13
13
|
gem.files = FileList["[A-Z]*", "{examples,lib,test}/**/*"]
|
14
14
|
|
@@ -22,7 +22,6 @@ begin
|
|
22
22
|
gem.add_development_dependency('mocha')
|
23
23
|
gem.add_development_dependency('fakeweb')
|
24
24
|
gem.add_development_dependency('mash')
|
25
|
-
gem.add_development_dependency('mash')
|
26
25
|
end
|
27
26
|
rescue LoadError
|
28
27
|
puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
|
data/VERSION.yml
CHANGED
@@ -0,0 +1 @@
|
|
1
|
+
{"in_reply_to_screen_name":null,"user":{"profile_sidebar_border_color":"181A1E","description":"Loves his wife, ruby, notre dame football and iu basketball","time_zone":"Indiana (East)","utc_offset":-18000,"friends_count":161,"profile_image_url":"http:\/\/s3.amazonaws.com\/twitter_production\/profile_images\/61024905\/black250_normal.jpg","following":true,"notifications":false,"profile_background_color":"1A1B1F","url":"http:\/\/railstips.org\/about","screen_name":"jnunemaker","name":"John Nunemaker","profile_background_tile":false,"profile_text_color":"666666","followers_count":1231,"protected":false,"favourites_count":73,"created_at":"Sun Aug 13 22:56:06 +0000 2006","profile_link_color":"2FC2EF","statuses_count":4664,"profile_sidebar_fill_color":"252429","location":"Mishawaka, Indiana","id":4243,"profile_background_image_url":"http:\/\/static.twitter.com\/images\/themes\/theme9\/bg.gif"},"text":"Rob Dyrdek is the funniest man alive. That is all.\\","truncated":false,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"created_at":"Thu Apr 02 22:57:00 +0000 2009","favorited":false,"id":1441588944,"source":"<a href=\"http:\/\/www.atebits.com\/software\/tweetie\/\">Tweetie<\/a>"}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"just_giving":"json_someething_to_parse"}
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bkocik-twitter
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
4
|
+
version: 0.6.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- John Nunemaker
|
@@ -10,7 +10,7 @@ autorequire:
|
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
|
13
|
-
date: 2009-
|
13
|
+
date: 2009-05-13 00:00:00 -07:00
|
14
14
|
default_executable:
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
@@ -43,6 +43,16 @@ dependencies:
|
|
43
43
|
- !ruby/object:Gem::Version
|
44
44
|
version: 0.4.3
|
45
45
|
version:
|
46
|
+
- !ruby/object:Gem::Dependency
|
47
|
+
name: json
|
48
|
+
type: :runtime
|
49
|
+
version_requirement:
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: 1.1.6
|
55
|
+
version:
|
46
56
|
- !ruby/object:Gem::Dependency
|
47
57
|
name: thoughtbot-shoulda
|
48
58
|
type: :development
|
@@ -124,10 +134,12 @@ files:
|
|
124
134
|
- lib/twitter/oauth.rb
|
125
135
|
- lib/twitter/request.rb
|
126
136
|
- lib/twitter/search.rb
|
137
|
+
- test/fixtures/backslash_status.json
|
127
138
|
- test/fixtures/firehose.json
|
128
139
|
- test/fixtures/follower_ids.json
|
129
140
|
- test/fixtures/friend_ids.json
|
130
141
|
- test/fixtures/friends_timeline.json
|
142
|
+
- test/fixtures/generic_response.json
|
131
143
|
- test/fixtures/rate_limit_exceeded.json
|
132
144
|
- test/fixtures/replies.json
|
133
145
|
- test/fixtures/search.json
|