lazyatom-twitter 0.4.2.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (70) hide show
  1. data/History +126 -0
  2. data/License +19 -0
  3. data/Manifest +69 -0
  4. data/README +84 -0
  5. data/Rakefile +42 -0
  6. data/bin/twitter +14 -0
  7. data/examples/blocks.rb +15 -0
  8. data/examples/direct_messages.rb +29 -0
  9. data/examples/favorites.rb +20 -0
  10. data/examples/friends_followers.rb +25 -0
  11. data/examples/friendships.rb +13 -0
  12. data/examples/identica_timeline.rb +7 -0
  13. data/examples/location.rb +8 -0
  14. data/examples/posting.rb +9 -0
  15. data/examples/replies.rb +27 -0
  16. data/examples/search.rb +18 -0
  17. data/examples/sent_messages.rb +27 -0
  18. data/examples/timeline.rb +34 -0
  19. data/examples/twitter.rb +27 -0
  20. data/examples/verify_credentials.rb +13 -0
  21. data/lib/twitter.rb +32 -0
  22. data/lib/twitter/base.rb +284 -0
  23. data/lib/twitter/cli.rb +334 -0
  24. data/lib/twitter/cli/config.rb +9 -0
  25. data/lib/twitter/cli/helpers.rb +109 -0
  26. data/lib/twitter/cli/migrations/20080722194500_create_accounts.rb +13 -0
  27. data/lib/twitter/cli/migrations/20080722194508_create_tweets.rb +16 -0
  28. data/lib/twitter/cli/migrations/20080722214605_add_account_id_to_tweets.rb +9 -0
  29. data/lib/twitter/cli/migrations/20080722214606_create_configurations.rb +13 -0
  30. data/lib/twitter/cli/models/account.rb +33 -0
  31. data/lib/twitter/cli/models/configuration.rb +13 -0
  32. data/lib/twitter/cli/models/tweet.rb +20 -0
  33. data/lib/twitter/direct_message.rb +22 -0
  34. data/lib/twitter/easy_class_maker.rb +43 -0
  35. data/lib/twitter/rate_limit_status.rb +19 -0
  36. data/lib/twitter/search.rb +101 -0
  37. data/lib/twitter/search_result.rb +83 -0
  38. data/lib/twitter/search_result_info.rb +82 -0
  39. data/lib/twitter/status.rb +22 -0
  40. data/lib/twitter/user.rb +38 -0
  41. data/lib/twitter/version.rb +3 -0
  42. data/spec/base_spec.rb +139 -0
  43. data/spec/cli/helper_spec.rb +49 -0
  44. data/spec/direct_message_spec.rb +35 -0
  45. data/spec/fixtures/follower_ids.xml +11 -0
  46. data/spec/fixtures/followers.xml +706 -0
  47. data/spec/fixtures/friend_ids.xml +12 -0
  48. data/spec/fixtures/friends.xml +609 -0
  49. data/spec/fixtures/friends_for.xml +584 -0
  50. data/spec/fixtures/friends_lite.xml +192 -0
  51. data/spec/fixtures/friends_timeline.xml +66 -0
  52. data/spec/fixtures/friendship_already_exists.xml +5 -0
  53. data/spec/fixtures/friendship_created.xml +12 -0
  54. data/spec/fixtures/public_timeline.xml +148 -0
  55. data/spec/fixtures/rate_limit_status.xml +7 -0
  56. data/spec/fixtures/search_result_info.yml +147 -0
  57. data/spec/fixtures/search_results.json +1 -0
  58. data/spec/fixtures/status.xml +25 -0
  59. data/spec/fixtures/user.xml +38 -0
  60. data/spec/fixtures/user_timeline.xml +465 -0
  61. data/spec/search_spec.rb +106 -0
  62. data/spec/spec.opts +1 -0
  63. data/spec/spec_helper.rb +23 -0
  64. data/spec/status_spec.rb +40 -0
  65. data/spec/user_spec.rb +44 -0
  66. data/twitter.gemspec +45 -0
  67. data/website/css/common.css +47 -0
  68. data/website/images/terminal_output.png +0 -0
  69. data/website/index.html +147 -0
  70. metadata +188 -0
metadata ADDED
@@ -0,0 +1,188 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: lazyatom-twitter
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.4.2.1
5
+ platform: ruby
6
+ authors:
7
+ - John Nunemaker
8
+ - James Adam
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+
13
+ date: 2009-02-11 00:00:00 -08:00
14
+ default_executable: twitter
15
+ dependencies:
16
+ - !ruby/object:Gem::Dependency
17
+ name: hpricot
18
+ type: :runtime
19
+ version_requirement:
20
+ version_requirements: !ruby/object:Gem::Requirement
21
+ requirements:
22
+ - - ">="
23
+ - !ruby/object:Gem::Version
24
+ version: "0.6"
25
+ version:
26
+ - !ruby/object:Gem::Dependency
27
+ name: activesupport
28
+ type: :runtime
29
+ version_requirement:
30
+ version_requirements: !ruby/object:Gem::Requirement
31
+ requirements:
32
+ - - ">="
33
+ - !ruby/object:Gem::Version
34
+ version: "2.1"
35
+ version:
36
+ - !ruby/object:Gem::Dependency
37
+ name: httparty
38
+ type: :runtime
39
+ version_requirement:
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ requirements:
42
+ - - ">="
43
+ - !ruby/object:Gem::Version
44
+ version: 0.2.4
45
+ version:
46
+ - !ruby/object:Gem::Dependency
47
+ name: echoe
48
+ type: :development
49
+ version_requirement:
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: "0"
55
+ version:
56
+ description: a command line interface for twitter, also a library which wraps the twitter api
57
+ email: nunemaker@gmail.com
58
+ executables:
59
+ - twitter
60
+ extensions: []
61
+
62
+ extra_rdoc_files:
63
+ - bin/twitter
64
+ - lib/twitter/base.rb
65
+ - lib/twitter/cli/config.rb
66
+ - lib/twitter/cli/helpers.rb
67
+ - lib/twitter/cli/migrations/20080722194500_create_accounts.rb
68
+ - lib/twitter/cli/migrations/20080722194508_create_tweets.rb
69
+ - lib/twitter/cli/migrations/20080722214605_add_account_id_to_tweets.rb
70
+ - lib/twitter/cli/migrations/20080722214606_create_configurations.rb
71
+ - lib/twitter/cli/models/account.rb
72
+ - lib/twitter/cli/models/configuration.rb
73
+ - lib/twitter/cli/models/tweet.rb
74
+ - lib/twitter/cli.rb
75
+ - lib/twitter/direct_message.rb
76
+ - lib/twitter/easy_class_maker.rb
77
+ - lib/twitter/rate_limit_status.rb
78
+ - lib/twitter/search.rb
79
+ - lib/twitter/search_result.rb
80
+ - lib/twitter/search_result_info.rb
81
+ - lib/twitter/status.rb
82
+ - lib/twitter/user.rb
83
+ - lib/twitter/version.rb
84
+ - lib/twitter.rb
85
+ - README
86
+ files:
87
+ - bin/twitter
88
+ - examples/blocks.rb
89
+ - examples/direct_messages.rb
90
+ - examples/favorites.rb
91
+ - examples/friends_followers.rb
92
+ - examples/friendships.rb
93
+ - examples/identica_timeline.rb
94
+ - examples/location.rb
95
+ - examples/posting.rb
96
+ - examples/replies.rb
97
+ - examples/search.rb
98
+ - examples/sent_messages.rb
99
+ - examples/timeline.rb
100
+ - examples/twitter.rb
101
+ - examples/verify_credentials.rb
102
+ - History
103
+ - lib/twitter/base.rb
104
+ - lib/twitter/cli/config.rb
105
+ - lib/twitter/cli/helpers.rb
106
+ - lib/twitter/cli/migrations/20080722194500_create_accounts.rb
107
+ - lib/twitter/cli/migrations/20080722194508_create_tweets.rb
108
+ - lib/twitter/cli/migrations/20080722214605_add_account_id_to_tweets.rb
109
+ - lib/twitter/cli/migrations/20080722214606_create_configurations.rb
110
+ - lib/twitter/cli/models/account.rb
111
+ - lib/twitter/cli/models/configuration.rb
112
+ - lib/twitter/cli/models/tweet.rb
113
+ - lib/twitter/cli.rb
114
+ - lib/twitter/direct_message.rb
115
+ - lib/twitter/easy_class_maker.rb
116
+ - lib/twitter/rate_limit_status.rb
117
+ - lib/twitter/search.rb
118
+ - lib/twitter/search_result.rb
119
+ - lib/twitter/search_result_info.rb
120
+ - lib/twitter/status.rb
121
+ - lib/twitter/user.rb
122
+ - lib/twitter/version.rb
123
+ - lib/twitter.rb
124
+ - License
125
+ - Manifest
126
+ - Rakefile
127
+ - README
128
+ - spec/base_spec.rb
129
+ - spec/cli/helper_spec.rb
130
+ - spec/direct_message_spec.rb
131
+ - spec/fixtures/follower_ids.xml
132
+ - spec/fixtures/followers.xml
133
+ - spec/fixtures/friend_ids.xml
134
+ - spec/fixtures/friends.xml
135
+ - spec/fixtures/friends_for.xml
136
+ - spec/fixtures/friends_lite.xml
137
+ - spec/fixtures/friends_timeline.xml
138
+ - spec/fixtures/friendship_already_exists.xml
139
+ - spec/fixtures/friendship_created.xml
140
+ - spec/fixtures/public_timeline.xml
141
+ - spec/fixtures/rate_limit_status.xml
142
+ - spec/fixtures/search_result_info.yml
143
+ - spec/fixtures/search_results.json
144
+ - spec/fixtures/status.xml
145
+ - spec/fixtures/user.xml
146
+ - spec/fixtures/user_timeline.xml
147
+ - spec/search_spec.rb
148
+ - spec/spec.opts
149
+ - spec/spec_helper.rb
150
+ - spec/status_spec.rb
151
+ - spec/user_spec.rb
152
+ - twitter.gemspec
153
+ - website/css/common.css
154
+ - website/images/terminal_output.png
155
+ - website/index.html
156
+ has_rdoc: true
157
+ homepage: http://twitter.rubyforge.org
158
+ post_install_message:
159
+ rdoc_options:
160
+ - --line-numbers
161
+ - --inline-source
162
+ - --title
163
+ - Twitter
164
+ - --main
165
+ - README
166
+ require_paths:
167
+ - lib
168
+ required_ruby_version: !ruby/object:Gem::Requirement
169
+ requirements:
170
+ - - ">="
171
+ - !ruby/object:Gem::Version
172
+ version: "0"
173
+ version:
174
+ required_rubygems_version: !ruby/object:Gem::Requirement
175
+ requirements:
176
+ - - ">="
177
+ - !ruby/object:Gem::Version
178
+ version: "1.2"
179
+ version:
180
+ requirements: []
181
+
182
+ rubyforge_project: twitter
183
+ rubygems_version: 1.2.0
184
+ signing_key:
185
+ specification_version: 2
186
+ summary: a command line interface for twitter, also a library which wraps the twitter api
187
+ test_files: []
188
+