hobo_devise 0.0.2 → 0.0.3
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/hobo_devise.gemspec +14 -20
- data/lib/hobo_devise.rb +1 -0
- metadata +8 -10
- data/.gitignore +0 -21
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.3
|
data/hobo_devise.gemspec
CHANGED
@@ -1,44 +1,38 @@
|
|
1
1
|
# Generated by jeweler
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
-
# Instead, edit Jeweler::Tasks in Rakefile, and run
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
4
|
# -*- encoding: utf-8 -*-
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{hobo_devise}
|
8
|
-
s.version = "0.0.
|
8
|
+
s.version = "0.0.3"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Joachim Filip Ignacy Bartosik"]
|
12
|
-
s.date = %q{2011-
|
12
|
+
s.date = %q{2011-09-28}
|
13
13
|
s.description = %q{}
|
14
14
|
s.email = %q{jbartosik@gmail.com}
|
15
15
|
s.extra_rdoc_files = [
|
16
16
|
"LICENSE",
|
17
|
-
|
17
|
+
"README"
|
18
18
|
]
|
19
19
|
s.files = [
|
20
20
|
".document",
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
"test/test_hobo_devise.rb"
|
21
|
+
"LICENSE",
|
22
|
+
"README",
|
23
|
+
"Rakefile",
|
24
|
+
"VERSION",
|
25
|
+
"hobo_devise.gemspec",
|
26
|
+
"lib/hobo_devise.rb",
|
27
|
+
"lib/hobo_devise/database_authenticable.rb",
|
28
|
+
"lib/hobo_devise/devise_oauth2_facebook.rb",
|
29
|
+
"test/helper.rb",
|
30
|
+
"test/test_hobo_devise.rb"
|
32
31
|
]
|
33
32
|
s.homepage = %q{http://github.com/ahenobarbi/hobo_devise}
|
34
|
-
s.rdoc_options = ["--charset=UTF-8"]
|
35
33
|
s.require_paths = ["lib"]
|
36
34
|
s.rubygems_version = %q{1.3.7}
|
37
35
|
s.summary = %q{Gem that adds devise based authentication to hobo-based applications}
|
38
|
-
s.test_files = [
|
39
|
-
"test/test_hobo_devise.rb",
|
40
|
-
"test/helper.rb"
|
41
|
-
]
|
42
36
|
|
43
37
|
if s.respond_to? :specification_version then
|
44
38
|
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
data/lib/hobo_devise.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hobo_devise
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 25
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 0.0.
|
9
|
+
- 3
|
10
|
+
version: 0.0.3
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Joachim Filip Ignacy Bartosik
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2011-
|
18
|
+
date: 2011-09-28 00:00:00 +02:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
@@ -76,7 +76,6 @@ extra_rdoc_files:
|
|
76
76
|
- README
|
77
77
|
files:
|
78
78
|
- .document
|
79
|
-
- .gitignore
|
80
79
|
- LICENSE
|
81
80
|
- README
|
82
81
|
- Rakefile
|
@@ -92,8 +91,8 @@ homepage: http://github.com/ahenobarbi/hobo_devise
|
|
92
91
|
licenses: []
|
93
92
|
|
94
93
|
post_install_message:
|
95
|
-
rdoc_options:
|
96
|
-
|
94
|
+
rdoc_options: []
|
95
|
+
|
97
96
|
require_paths:
|
98
97
|
- lib
|
99
98
|
required_ruby_version: !ruby/object:Gem::Requirement
|
@@ -121,6 +120,5 @@ rubygems_version: 1.3.7
|
|
121
120
|
signing_key:
|
122
121
|
specification_version: 3
|
123
122
|
summary: Gem that adds devise based authentication to hobo-based applications
|
124
|
-
test_files:
|
125
|
-
|
126
|
-
- test/helper.rb
|
123
|
+
test_files: []
|
124
|
+
|