fbgraph_rails 0.1.3 → 0.1.5
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/fbgraph_rails.gemspec +4 -4
- data/lib/fbgraph_rails/controller.rb +2 -2
- data/lib/fbgraph_rails/engine.rb +0 -1
- metadata +19 -4
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.5
|
data/fbgraph_rails.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{fbgraph_rails}
|
8
|
-
s.version = "0.1.
|
8
|
+
s.version = "0.1.5"
|
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 = %q{2010-05-
|
12
|
+
s.date = %q{2010-05-30}
|
13
13
|
s.description = %q{Support for sessions tied to Facebook users.}
|
14
14
|
s.email = %q{victor@costan.us}
|
15
15
|
s.extra_rdoc_files = [
|
@@ -37,7 +37,7 @@ Gem::Specification.new do |s|
|
|
37
37
|
s.homepage = %q{http://github.com/costan/fbgraph_rails}
|
38
38
|
s.rdoc_options = ["--charset=UTF-8"]
|
39
39
|
s.require_paths = ["lib"]
|
40
|
-
s.rubygems_version = %q{1.3.
|
40
|
+
s.rubygems_version = %q{1.3.7}
|
41
41
|
s.summary = %q{Rails plug-in integrating the fbgraph gem}
|
42
42
|
s.test_files = [
|
43
43
|
"test/fbgraph_rails_test.rb",
|
@@ -48,7 +48,7 @@ Gem::Specification.new do |s|
|
|
48
48
|
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
49
49
|
s.specification_version = 3
|
50
50
|
|
51
|
-
if Gem::Version.new(Gem::
|
51
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
52
52
|
s.add_runtime_dependency(%q<erubis>, [">= 2.3.5"])
|
53
53
|
s.add_runtime_dependency(%q<fbgraph>, [">= 0.0.5"])
|
54
54
|
s.add_runtime_dependency(%q<json>, [">= 1.4.2"])
|
@@ -17,7 +17,7 @@ module ControllerClassMethods
|
|
17
17
|
before_filter :probe_facebook_access_token, options
|
18
18
|
end
|
19
19
|
|
20
|
-
def requires_facebook_access_token
|
20
|
+
def requires_facebook_access_token(options = {})
|
21
21
|
send :include, ControllerInstanceMethods
|
22
22
|
before_filter :enforce_facebook_access_token, options
|
23
23
|
end
|
@@ -60,7 +60,7 @@ ActionController::Base.send :include, ControllerMixin
|
|
60
60
|
class ActionController::TestCase
|
61
61
|
# Sets the authenticated user in the test session.
|
62
62
|
def set_session_current_facebook_token(access_token)
|
63
|
-
|
63
|
+
request.session[:current_facebook_token] = access_token
|
64
64
|
end
|
65
65
|
end
|
66
66
|
|
data/lib/fbgraph_rails/engine.rb
CHANGED
@@ -9,7 +9,6 @@ class Engine < Rails::Engine
|
|
9
9
|
paths.app.controllers = "app/controllers"
|
10
10
|
paths.app.helpers = "app/helpers"
|
11
11
|
paths.app.models = "app/models"
|
12
|
-
paths.app.metals = "app/metal"
|
13
12
|
paths.app.views = "app/views"
|
14
13
|
# paths.lib = "lib"
|
15
14
|
# paths.lib.tasks = "lib/tasks"
|
metadata
CHANGED
@@ -1,12 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fbgraph_rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
+
hash: 17
|
4
5
|
prerelease: false
|
5
6
|
segments:
|
6
7
|
- 0
|
7
8
|
- 1
|
8
|
-
-
|
9
|
-
version: 0.1.
|
9
|
+
- 5
|
10
|
+
version: 0.1.5
|
10
11
|
platform: ruby
|
11
12
|
authors:
|
12
13
|
- Victor Costan
|
@@ -14,16 +15,18 @@ autorequire:
|
|
14
15
|
bindir: bin
|
15
16
|
cert_chain: []
|
16
17
|
|
17
|
-
date: 2010-05-
|
18
|
+
date: 2010-05-30 00:00:00 -04:00
|
18
19
|
default_executable:
|
19
20
|
dependencies:
|
20
21
|
- !ruby/object:Gem::Dependency
|
21
22
|
name: erubis
|
22
23
|
prerelease: false
|
23
24
|
requirement: &id001 !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
24
26
|
requirements:
|
25
27
|
- - ">="
|
26
28
|
- !ruby/object:Gem::Version
|
29
|
+
hash: 9
|
27
30
|
segments:
|
28
31
|
- 2
|
29
32
|
- 3
|
@@ -35,9 +38,11 @@ dependencies:
|
|
35
38
|
name: fbgraph
|
36
39
|
prerelease: false
|
37
40
|
requirement: &id002 !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
38
42
|
requirements:
|
39
43
|
- - ">="
|
40
44
|
- !ruby/object:Gem::Version
|
45
|
+
hash: 21
|
41
46
|
segments:
|
42
47
|
- 0
|
43
48
|
- 0
|
@@ -49,9 +54,11 @@ dependencies:
|
|
49
54
|
name: json
|
50
55
|
prerelease: false
|
51
56
|
requirement: &id003 !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
52
58
|
requirements:
|
53
59
|
- - ">="
|
54
60
|
- !ruby/object:Gem::Version
|
61
|
+
hash: 3
|
55
62
|
segments:
|
56
63
|
- 1
|
57
64
|
- 4
|
@@ -63,9 +70,11 @@ dependencies:
|
|
63
70
|
name: oauth2
|
64
71
|
prerelease: false
|
65
72
|
requirement: &id004 !ruby/object:Gem::Requirement
|
73
|
+
none: false
|
66
74
|
requirements:
|
67
75
|
- - ">="
|
68
76
|
- !ruby/object:Gem::Version
|
77
|
+
hash: 15
|
69
78
|
segments:
|
70
79
|
- 0
|
71
80
|
- 0
|
@@ -77,9 +86,11 @@ dependencies:
|
|
77
86
|
name: jeweler
|
78
87
|
prerelease: false
|
79
88
|
requirement: &id005 !ruby/object:Gem::Requirement
|
89
|
+
none: false
|
80
90
|
requirements:
|
81
91
|
- - ">="
|
82
92
|
- !ruby/object:Gem::Version
|
93
|
+
hash: 7
|
83
94
|
segments:
|
84
95
|
- 1
|
85
96
|
- 4
|
@@ -123,23 +134,27 @@ rdoc_options:
|
|
123
134
|
require_paths:
|
124
135
|
- lib
|
125
136
|
required_ruby_version: !ruby/object:Gem::Requirement
|
137
|
+
none: false
|
126
138
|
requirements:
|
127
139
|
- - ">="
|
128
140
|
- !ruby/object:Gem::Version
|
141
|
+
hash: 3
|
129
142
|
segments:
|
130
143
|
- 0
|
131
144
|
version: "0"
|
132
145
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
146
|
+
none: false
|
133
147
|
requirements:
|
134
148
|
- - ">="
|
135
149
|
- !ruby/object:Gem::Version
|
150
|
+
hash: 3
|
136
151
|
segments:
|
137
152
|
- 0
|
138
153
|
version: "0"
|
139
154
|
requirements: []
|
140
155
|
|
141
156
|
rubyforge_project:
|
142
|
-
rubygems_version: 1.3.
|
157
|
+
rubygems_version: 1.3.7
|
143
158
|
signing_key:
|
144
159
|
specification_version: 3
|
145
160
|
summary: Rails plug-in integrating the fbgraph gem
|