fbgraph_rails 0.2.0 → 0.2.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/Gemfile.lock +3 -3
- data/VERSION +1 -1
- data/config/routes.rb +1 -1
- data/fbgraph_rails.gemspec +2 -2
- data/lib/fbgraph_rails.rb +0 -5
- metadata +4 -4
data/Gemfile.lock
CHANGED
|
@@ -38,7 +38,7 @@ GEM
|
|
|
38
38
|
faraday (0.7.4)
|
|
39
39
|
addressable (~> 2.2.6)
|
|
40
40
|
multipart-post (~> 1.1.0)
|
|
41
|
-
rack (
|
|
41
|
+
rack (>= 1.1.0, < 2)
|
|
42
42
|
fbgraph (1.8.0)
|
|
43
43
|
activesupport
|
|
44
44
|
activesupport
|
|
@@ -71,7 +71,7 @@ GEM
|
|
|
71
71
|
multi_json (1.0.3)
|
|
72
72
|
multipart-post (1.1.3)
|
|
73
73
|
oauth2 (0.5.0)
|
|
74
|
-
faraday (
|
|
74
|
+
faraday (>= 0.6.1, < 0.8)
|
|
75
75
|
multi_json (~> 1.0.0)
|
|
76
76
|
polyglot (0.3.2)
|
|
77
77
|
rack (1.3.3)
|
|
@@ -106,7 +106,7 @@ GEM
|
|
|
106
106
|
sprockets (2.0.0)
|
|
107
107
|
hike (~> 1.2)
|
|
108
108
|
rack (~> 1.0)
|
|
109
|
-
tilt (
|
|
109
|
+
tilt (~> 1.1, != 1.3.0)
|
|
110
110
|
sqlite3 (1.3.4)
|
|
111
111
|
thor (0.14.6)
|
|
112
112
|
tilt (1.3.3)
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.2.
|
|
1
|
+
0.2.1
|
data/config/routes.rb
CHANGED
data/fbgraph_rails.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = "fbgraph_rails"
|
|
8
|
-
s.version = "0.2.
|
|
8
|
+
s.version = "0.2.1"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Victor Costan"]
|
|
12
|
-
s.date = "2011-
|
|
12
|
+
s.date = "2011-10-03"
|
|
13
13
|
s.description = "Support for sessions tied to Facebook users."
|
|
14
14
|
s.email = "victor@costan.us"
|
|
15
15
|
s.extra_rdoc_files = [
|
data/lib/fbgraph_rails.rb
CHANGED
|
@@ -7,9 +7,4 @@ require 'fbgraph_rails/fbgraph_client.rb'
|
|
|
7
7
|
if defined?(Rails)
|
|
8
8
|
require 'fbgraph_rails/controller.rb'
|
|
9
9
|
require 'fbgraph_rails/engine.rb'
|
|
10
|
-
|
|
11
|
-
# HACK(costan): this works around a known Rails bug
|
|
12
|
-
# https://rails.lighthouseapp.com/projects/8994/tickets/1905-apphelpers-within-plugin-not-being-mixed-in
|
|
13
|
-
require File.expand_path('../../app/helpers/facebook_oauth_helper.rb', __FILE__)
|
|
14
|
-
ActionController::Base.helper FacebookOauthHelper
|
|
15
10
|
end
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fbgraph_rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 21
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 2
|
|
9
|
-
-
|
|
10
|
-
version: 0.2.
|
|
9
|
+
- 1
|
|
10
|
+
version: 0.2.1
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Victor Costan
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2011-
|
|
18
|
+
date: 2011-10-03 00:00:00 Z
|
|
19
19
|
dependencies:
|
|
20
20
|
- !ruby/object:Gem::Dependency
|
|
21
21
|
requirement: &id001 !ruby/object:Gem::Requirement
|