tumblrb 2.0.1 → 2.0.2
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/lib/tumblr/version.rb +1 -1
- data/tumblrb.gemspec +26 -4
- metadata +9 -10
- data/.rvmrc +0 -1
- data/Gemfile.lock +0 -46
data/lib/tumblr/version.rb
CHANGED
data/tumblrb.gemspec
CHANGED
|
@@ -17,11 +17,33 @@ Gem::Specification.new do |s|
|
|
|
17
17
|
s.required_rubygems_version = Gem::Requirement.new('>= 1.3.6') if s.respond_to? :required_rubygems_version=
|
|
18
18
|
s.rubyforge_project = s.name
|
|
19
19
|
s.summary = %q{Ruby wrapper for the Tumblr API}
|
|
20
|
+
s.require_paths << "lib"
|
|
20
21
|
|
|
21
|
-
s.files =
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
22
|
+
s.files = [
|
|
23
|
+
"Gemfile",
|
|
24
|
+
"README.mkd",
|
|
25
|
+
"LICENSE.mkd",
|
|
26
|
+
"tumblrb.gemspec",
|
|
27
|
+
"lib/tumblr/api.rb",
|
|
28
|
+
"lib/tumblr/blog.rb",
|
|
29
|
+
"lib/tumblr/config.rb",
|
|
30
|
+
"lib/tumblr/object.rb",
|
|
31
|
+
"lib/tumblr/query.rb",
|
|
32
|
+
"lib/tumblr/quote.rb",
|
|
33
|
+
"lib/tumblr/version.rb",
|
|
34
|
+
"lib/tumblr/middleware/params.rb",
|
|
35
|
+
"lib/tumblr/middleware/parsing.rb",
|
|
36
|
+
"lib/tumblr/objects/answer.rb",
|
|
37
|
+
"lib/tumblr/objects/audio.rb",
|
|
38
|
+
"lib/tumblr/objects/chat.rb",
|
|
39
|
+
"lib/tumblr/objects/link.rb",
|
|
40
|
+
"lib/tumblr/objects/photo.rb",
|
|
41
|
+
"lib/tumblr/objects/post.rb",
|
|
42
|
+
"lib/tumblr/objects/text.rb",
|
|
43
|
+
"lib/tumblr/objects/user.rb",
|
|
44
|
+
"lib/tumblr/objects/video.rb",
|
|
45
|
+
"lib/tumblr.rb",
|
|
46
|
+
]
|
|
25
47
|
|
|
26
48
|
s.version = Tumblr::VERSION.dup
|
|
27
49
|
end
|
metadata
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: tumblrb
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease:
|
|
5
|
-
version: 2.0.
|
|
5
|
+
version: 2.0.2
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
8
8
|
- thegorgon
|
|
@@ -88,18 +88,19 @@ extensions: []
|
|
|
88
88
|
extra_rdoc_files: []
|
|
89
89
|
|
|
90
90
|
files:
|
|
91
|
-
- .rvmrc
|
|
92
91
|
- Gemfile
|
|
93
|
-
- Gemfile.lock
|
|
94
|
-
- LICENSE.mkd
|
|
95
92
|
- README.mkd
|
|
96
|
-
-
|
|
93
|
+
- LICENSE.mkd
|
|
94
|
+
- tumblrb.gemspec
|
|
97
95
|
- lib/tumblr/api.rb
|
|
98
96
|
- lib/tumblr/blog.rb
|
|
99
97
|
- lib/tumblr/config.rb
|
|
98
|
+
- lib/tumblr/object.rb
|
|
99
|
+
- lib/tumblr/query.rb
|
|
100
|
+
- lib/tumblr/quote.rb
|
|
101
|
+
- lib/tumblr/version.rb
|
|
100
102
|
- lib/tumblr/middleware/params.rb
|
|
101
103
|
- lib/tumblr/middleware/parsing.rb
|
|
102
|
-
- lib/tumblr/object.rb
|
|
103
104
|
- lib/tumblr/objects/answer.rb
|
|
104
105
|
- lib/tumblr/objects/audio.rb
|
|
105
106
|
- lib/tumblr/objects/chat.rb
|
|
@@ -109,10 +110,7 @@ files:
|
|
|
109
110
|
- lib/tumblr/objects/text.rb
|
|
110
111
|
- lib/tumblr/objects/user.rb
|
|
111
112
|
- lib/tumblr/objects/video.rb
|
|
112
|
-
- lib/tumblr
|
|
113
|
-
- lib/tumblr/quote.rb
|
|
114
|
-
- lib/tumblr/version.rb
|
|
115
|
-
- tumblrb.gemspec
|
|
113
|
+
- lib/tumblr.rb
|
|
116
114
|
homepage: https://github.com/thegorgon/tumblrb
|
|
117
115
|
licenses: []
|
|
118
116
|
|
|
@@ -121,6 +119,7 @@ rdoc_options: []
|
|
|
121
119
|
|
|
122
120
|
require_paths:
|
|
123
121
|
- lib
|
|
122
|
+
- lib
|
|
124
123
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
125
124
|
none: false
|
|
126
125
|
requirements:
|
data/.rvmrc
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
rvm use ruby-1.9.2-p180@tumblrb
|
data/Gemfile.lock
DELETED
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
PATH
|
|
2
|
-
remote: .
|
|
3
|
-
specs:
|
|
4
|
-
tumblrb (1.1.0)
|
|
5
|
-
activesupport (~> 3.0)
|
|
6
|
-
addressable (~> 2.2.0)
|
|
7
|
-
curb (~> 0.7.15)
|
|
8
|
-
json (~> 1.6.0)
|
|
9
|
-
nokogiri (~> 1.4.4)
|
|
10
|
-
redis-objects (~> 0.5.0)
|
|
11
|
-
will_paginate (~> 3.0.0)
|
|
12
|
-
|
|
13
|
-
GEM
|
|
14
|
-
remote: http://rubygems.org/
|
|
15
|
-
specs:
|
|
16
|
-
activesupport (3.1.1)
|
|
17
|
-
multi_json (~> 1.0)
|
|
18
|
-
addressable (2.2.6)
|
|
19
|
-
curb (0.7.15)
|
|
20
|
-
faraday (0.7.5)
|
|
21
|
-
addressable (~> 2.2.6)
|
|
22
|
-
multipart-post (~> 1.1.3)
|
|
23
|
-
rack (>= 1.1.0, < 2)
|
|
24
|
-
i18n (0.6.0)
|
|
25
|
-
json (1.6.1)
|
|
26
|
-
multi_json (1.0.3)
|
|
27
|
-
multipart-post (1.1.3)
|
|
28
|
-
nokogiri (1.4.7)
|
|
29
|
-
rack (1.3.5)
|
|
30
|
-
redis (2.2.2)
|
|
31
|
-
redis-objects (0.5.2)
|
|
32
|
-
redis (>= 2.1.1)
|
|
33
|
-
will_paginate (3.0.2)
|
|
34
|
-
|
|
35
|
-
PLATFORMS
|
|
36
|
-
ruby
|
|
37
|
-
|
|
38
|
-
DEPENDENCIES
|
|
39
|
-
activesupport (~> 3.1.1)
|
|
40
|
-
addressable
|
|
41
|
-
faraday (~> 0.7.5)
|
|
42
|
-
i18n (~> 0.6.0)
|
|
43
|
-
json (~> 1.6.0)
|
|
44
|
-
redis-objects
|
|
45
|
-
tumblrb!
|
|
46
|
-
will_paginate
|