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