fbgraph_rails 0.1.5 → 0.1.6
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/app/helpers/facebook_oauth_helper.rb +7 -1
- data/fbgraph_rails.gemspec +19 -21
- metadata +6 -7
- data/.gitignore +0 -3
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.6
|
|
@@ -1,4 +1,10 @@
|
|
|
1
1
|
module FacebookOauthHelper
|
|
2
2
|
attr_reader :facebook_client
|
|
3
|
-
attr_reader :current_facebook_access_token
|
|
3
|
+
attr_reader :current_facebook_access_token
|
|
4
|
+
|
|
5
|
+
def facebook_login_form
|
|
6
|
+
form_tag new_facebook_oauth_path, :method => 'get' do
|
|
7
|
+
image_submit_tag 'facebook_connect.gif', :alt => 'Connect with Facebook'
|
|
8
|
+
end
|
|
9
|
+
end
|
|
4
10
|
end
|
data/fbgraph_rails.gemspec
CHANGED
|
@@ -5,43 +5,41 @@
|
|
|
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.6"
|
|
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-
|
|
12
|
+
s.date = %q{2010-10-15}
|
|
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 = [
|
|
16
16
|
"LICENSE",
|
|
17
|
-
|
|
17
|
+
"README.rdoc"
|
|
18
18
|
]
|
|
19
19
|
s.files = [
|
|
20
|
-
".
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
"test/test_helper.rb"
|
|
20
|
+
".project",
|
|
21
|
+
"LICENSE",
|
|
22
|
+
"README.rdoc",
|
|
23
|
+
"Rakefile",
|
|
24
|
+
"VERSION",
|
|
25
|
+
"app/controllers/facebook_oauth_controller.rb",
|
|
26
|
+
"app/helpers/facebook_oauth_helper.rb",
|
|
27
|
+
"config/routes.rb",
|
|
28
|
+
"fbgraph_rails.gemspec",
|
|
29
|
+
"lib/fbgraph_rails.rb",
|
|
30
|
+
"lib/fbgraph_rails/controller.rb",
|
|
31
|
+
"lib/fbgraph_rails/engine.rb",
|
|
32
|
+
"lib/fbgraph_rails/fbgraph_client.rb",
|
|
33
|
+
"test/fbgraph_rails_test.rb",
|
|
34
|
+
"test/test_helper.rb"
|
|
36
35
|
]
|
|
37
36
|
s.homepage = %q{http://github.com/costan/fbgraph_rails}
|
|
38
|
-
s.rdoc_options = ["--charset=UTF-8"]
|
|
39
37
|
s.require_paths = ["lib"]
|
|
40
38
|
s.rubygems_version = %q{1.3.7}
|
|
41
39
|
s.summary = %q{Rails plug-in integrating the fbgraph gem}
|
|
42
40
|
s.test_files = [
|
|
43
41
|
"test/fbgraph_rails_test.rb",
|
|
44
|
-
|
|
42
|
+
"test/test_helper.rb"
|
|
45
43
|
]
|
|
46
44
|
|
|
47
45
|
if s.respond_to? :specification_version then
|
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: 23
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 1
|
|
9
|
-
-
|
|
10
|
-
version: 0.1.
|
|
9
|
+
- 6
|
|
10
|
+
version: 0.1.6
|
|
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: 2010-
|
|
18
|
+
date: 2010-10-15 00:00:00 -04:00
|
|
19
19
|
default_executable:
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|
|
@@ -108,7 +108,6 @@ extra_rdoc_files:
|
|
|
108
108
|
- LICENSE
|
|
109
109
|
- README.rdoc
|
|
110
110
|
files:
|
|
111
|
-
- .gitignore
|
|
112
111
|
- .project
|
|
113
112
|
- LICENSE
|
|
114
113
|
- README.rdoc
|
|
@@ -129,8 +128,8 @@ homepage: http://github.com/costan/fbgraph_rails
|
|
|
129
128
|
licenses: []
|
|
130
129
|
|
|
131
130
|
post_install_message:
|
|
132
|
-
rdoc_options:
|
|
133
|
-
|
|
131
|
+
rdoc_options: []
|
|
132
|
+
|
|
134
133
|
require_paths:
|
|
135
134
|
- lib
|
|
136
135
|
required_ruby_version: !ruby/object:Gem::Requirement
|
data/.gitignore
DELETED