devise_ldap_authenticatable 0.4.1.1 → 0.4.2
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/README.md +1 -1
- data/Rakefile +2 -2
- data/VERSION +1 -1
- data/devise_ldap_authenticatable.gemspec +6 -6
- data/lib/devise_ldap_authenticatable/schema.rb +1 -1
- data/lib/devise_ldap_authenticatable/version.rb +1 -1
- data/test/rails_app/db/schema.rb +7 -6
- metadata +9 -9
data/README.md
CHANGED
|
@@ -28,7 +28,7 @@ This will *only* work for Rails 3 applications.
|
|
|
28
28
|
In the Gemfile for your application:
|
|
29
29
|
|
|
30
30
|
gem "devise", "1.1.rc2"
|
|
31
|
-
gem "devise_ldap_authenticatable", "0.4.
|
|
31
|
+
gem "devise_ldap_authenticatable", "0.4.2"
|
|
32
32
|
|
|
33
33
|
To get the latest version, pull directly from github instead of the gem:
|
|
34
34
|
|
data/Rakefile
CHANGED
|
@@ -42,9 +42,9 @@ begin
|
|
|
42
42
|
gemspec.description = "LDAP authentication module for Devise"
|
|
43
43
|
gemspec.email = "curtis.schiewek@gmail.com"
|
|
44
44
|
gemspec.homepage = "http://github.com/cschiewek/devise_ldap_authenticatable"
|
|
45
|
-
gemspec.authors = ["Curtis Schiewek"]
|
|
45
|
+
gemspec.authors = ["Curtis Schiewek", "Daniel McNevin"]
|
|
46
46
|
gemspec.add_runtime_dependency "devise", "> 1.0.4"
|
|
47
|
-
gemspec.add_runtime_dependency "net-ldap", ">= 0.
|
|
47
|
+
gemspec.add_runtime_dependency "net-ldap", ">= 0.1.1"
|
|
48
48
|
end
|
|
49
49
|
Jeweler::GemcutterTasks.new
|
|
50
50
|
rescue LoadError
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.4.
|
|
1
|
+
0.4.2
|
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{devise_ldap_authenticatable}
|
|
8
|
-
s.version = "0.4.
|
|
8
|
+
s.version = "0.4.2"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
-
s.authors = ["Curtis Schiewek"]
|
|
12
|
-
s.date = %q{2010-08-
|
|
11
|
+
s.authors = ["Curtis Schiewek", "Daniel McNevin"]
|
|
12
|
+
s.date = %q{2010-08-03}
|
|
13
13
|
s.description = %q{LDAP authentication module for Devise}
|
|
14
14
|
s.email = %q{curtis.schiewek@gmail.com}
|
|
15
15
|
s.extra_rdoc_files = [
|
|
@@ -153,14 +153,14 @@ Gem::Specification.new do |s|
|
|
|
153
153
|
|
|
154
154
|
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
155
155
|
s.add_runtime_dependency(%q<devise>, ["> 1.0.4"])
|
|
156
|
-
s.add_runtime_dependency(%q<net-ldap>, [">= 0.
|
|
156
|
+
s.add_runtime_dependency(%q<net-ldap>, [">= 0.1.1"])
|
|
157
157
|
else
|
|
158
158
|
s.add_dependency(%q<devise>, ["> 1.0.4"])
|
|
159
|
-
s.add_dependency(%q<net-ldap>, [">= 0.
|
|
159
|
+
s.add_dependency(%q<net-ldap>, [">= 0.1.1"])
|
|
160
160
|
end
|
|
161
161
|
else
|
|
162
162
|
s.add_dependency(%q<devise>, ["> 1.0.4"])
|
|
163
|
-
s.add_dependency(%q<net-ldap>, [">= 0.
|
|
163
|
+
s.add_dependency(%q<net-ldap>, [">= 0.1.1"])
|
|
164
164
|
end
|
|
165
165
|
end
|
|
166
166
|
|
data/test/rails_app/db/schema.rb
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
# This file is auto-generated from the current state of the database. Instead
|
|
2
|
-
# please use the migrations feature of Active Record to
|
|
3
|
-
# then regenerate this schema definition.
|
|
1
|
+
# This file is auto-generated from the current state of the database. Instead
|
|
2
|
+
# of editing this file, please use the migrations feature of Active Record to
|
|
3
|
+
# incrementally modify your database, and then regenerate this schema definition.
|
|
4
4
|
#
|
|
5
|
-
# Note that this schema.rb definition is the authoritative source for your
|
|
6
|
-
# to create the application database on another
|
|
7
|
-
#
|
|
5
|
+
# Note that this schema.rb definition is the authoritative source for your
|
|
6
|
+
# database schema. If you need to create the application database on another
|
|
7
|
+
# system, you should be using db:schema:load, not running all the migrations
|
|
8
|
+
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
|
|
8
9
|
# you'll amass, the slower it'll run and the greater likelihood for issues).
|
|
9
10
|
#
|
|
10
11
|
# It's strongly recommended to check this file into your version control system.
|
metadata
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: devise_ldap_authenticatable
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 11
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 4
|
|
9
|
-
-
|
|
10
|
-
|
|
11
|
-
version: 0.4.1.1
|
|
9
|
+
- 2
|
|
10
|
+
version: 0.4.2
|
|
12
11
|
platform: ruby
|
|
13
12
|
authors:
|
|
14
13
|
- Curtis Schiewek
|
|
14
|
+
- Daniel McNevin
|
|
15
15
|
autorequire:
|
|
16
16
|
bindir: bin
|
|
17
17
|
cert_chain: []
|
|
18
18
|
|
|
19
|
-
date: 2010-08-
|
|
19
|
+
date: 2010-08-03 00:00:00 -04:00
|
|
20
20
|
default_executable:
|
|
21
21
|
dependencies:
|
|
22
22
|
- !ruby/object:Gem::Dependency
|
|
@@ -43,12 +43,12 @@ dependencies:
|
|
|
43
43
|
requirements:
|
|
44
44
|
- - ">="
|
|
45
45
|
- !ruby/object:Gem::Version
|
|
46
|
-
hash:
|
|
46
|
+
hash: 25
|
|
47
47
|
segments:
|
|
48
48
|
- 0
|
|
49
|
-
-
|
|
50
|
-
-
|
|
51
|
-
version: 0.
|
|
49
|
+
- 1
|
|
50
|
+
- 1
|
|
51
|
+
version: 0.1.1
|
|
52
52
|
type: :runtime
|
|
53
53
|
version_requirements: *id002
|
|
54
54
|
description: LDAP authentication module for Devise
|