jnunemaker-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/README.rdoc +9 -3
- data/Rakefile +1 -1
- data/VERSION.yml +1 -1
- data/lib/twitter.rb +1 -1
- metadata +3 -3
data/README.rdoc
CHANGED
@@ -1,12 +1,18 @@
|
|
1
1
|
= twitter
|
2
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
|
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
4
|
|
5
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
6
|
|
7
|
-
|
7
|
+
== examples
|
8
8
|
|
9
|
-
|
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
|
10
16
|
|
11
17
|
== Copyright
|
12
18
|
|
data/Rakefile
CHANGED
@@ -12,7 +12,7 @@ begin
|
|
12
12
|
gem.rubyforge_project = "twitter"
|
13
13
|
gem.files = FileList["[A-Z]*", "{examples,lib,test}/**/*"]
|
14
14
|
|
15
|
-
gem.add_dependency('oauth', '0.3.
|
15
|
+
gem.add_dependency('oauth', '0.3.4')
|
16
16
|
gem.add_dependency('mash', '0.0.3')
|
17
17
|
gem.add_dependency('httparty', '0.4.3')
|
18
18
|
|
data/VERSION.yml
CHANGED
data/lib/twitter.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jnunemaker-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
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-
|
12
|
+
date: 2009-05-17 00:00:00 -07:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -20,7 +20,7 @@ dependencies:
|
|
20
20
|
requirements:
|
21
21
|
- - "="
|
22
22
|
- !ruby/object:Gem::Version
|
23
|
-
version: 0.3.
|
23
|
+
version: 0.3.4
|
24
24
|
version:
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
26
|
name: mash
|