fb_graph 1.3.7 → 1.3.8
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/VERSION +1 -1
- data/fb_graph.gemspec +5 -3
- data/lib/cert +3509 -0
- data/lib/fb_graph.rb +1 -1
- data/lib/restclient_with_ssl_support.rb +28 -0
- metadata +7 -5
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.3.
|
1
|
+
1.3.8
|
data/fb_graph.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{fb_graph}
|
8
|
-
s.version = "1.3.
|
8
|
+
s.version = "1.3.8"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["nov matake"]
|
12
|
-
s.date = %q{2011-
|
12
|
+
s.date = %q{2011-02-02}
|
13
13
|
s.description = %q{A full-stack Facebook Graph API wrapper in Ruby.}
|
14
14
|
s.email = %q{nov@matake.jp}
|
15
15
|
s.extra_rdoc_files = [
|
@@ -25,6 +25,7 @@ Gem::Specification.new do |s|
|
|
25
25
|
"assets/fb_graph.ai",
|
26
26
|
"assets/fb_graph.png",
|
27
27
|
"fb_graph.gemspec",
|
28
|
+
"lib/cert",
|
28
29
|
"lib/fb_graph.rb",
|
29
30
|
"lib/fb_graph/action.rb",
|
30
31
|
"lib/fb_graph/album.rb",
|
@@ -100,6 +101,7 @@ Gem::Specification.new do |s|
|
|
100
101
|
"lib/fb_graph/venue.rb",
|
101
102
|
"lib/fb_graph/video.rb",
|
102
103
|
"lib/fb_graph/work.rb",
|
104
|
+
"lib/restclient_with_ssl_support.rb",
|
103
105
|
"spec/fake_json/albums/photos/matake_private.json",
|
104
106
|
"spec/fake_json/albums/photos/post_with_valid_access_token.json",
|
105
107
|
"spec/fake_json/applications/subscriptions/fb_graph_private.json",
|
@@ -276,7 +278,7 @@ Gem::Specification.new do |s|
|
|
276
278
|
]
|
277
279
|
s.homepage = %q{http://github.com/nov/fb_graph}
|
278
280
|
s.require_paths = ["lib"]
|
279
|
-
s.rubygems_version = %q{1.
|
281
|
+
s.rubygems_version = %q{1.5.0}
|
280
282
|
s.summary = %q{A full-stack Facebook Graph API wrapper in Ruby.}
|
281
283
|
s.test_files = [
|
282
284
|
"spec/fb_graph/album_spec.rb",
|