devise-encryptable 0.1.0 → 0.1.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 +1 -1
- data/Gemfile.lock +8 -14
- data/devise-encryptable.gemspec +1 -1
- data/gemfiles/Gemfile.rails-3.1.x +1 -1
- data/gemfiles/Gemfile.rails-3.1.x.lock +8 -14
- data/lib/devise/encryptable/version.rb +1 -1
- data/test/rails_app/config/environments/development.rb +0 -7
- data/test/rails_app/config/environments/test.rb +0 -3
- data/test/test_helper.rb +2 -3
- metadata +11 -5
data/Gemfile
CHANGED
@@ -3,7 +3,7 @@ source 'https://rubygems.org'
|
|
3
3
|
# Specify your gem's dependencies in encryptor.gemspec
|
4
4
|
gemspec
|
5
5
|
|
6
|
-
gem 'devise',
|
6
|
+
gem 'devise', "~> 2.1.0.rc"
|
7
7
|
gem 'minitest'
|
8
8
|
gem 'rails', "~> 3.2"
|
9
9
|
gem 'sqlite3'
|
data/Gemfile.lock
CHANGED
@@ -1,19 +1,8 @@
|
|
1
|
-
GIT
|
2
|
-
remote: git://github.com/plataformatec/devise.git
|
3
|
-
revision: 0d868b9ec1e0c7d3a041bb65c2889b5bd23d65dc
|
4
|
-
branch: removing_encryptable
|
5
|
-
specs:
|
6
|
-
devise (2.1.0.rc)
|
7
|
-
bcrypt-ruby (~> 3.0)
|
8
|
-
orm_adapter (~> 0.0.7)
|
9
|
-
railties (~> 3.1)
|
10
|
-
warden (~> 1.1.1)
|
11
|
-
|
12
1
|
PATH
|
13
2
|
remote: .
|
14
3
|
specs:
|
15
|
-
devise-encryptable (0.
|
16
|
-
devise (
|
4
|
+
devise-encryptable (0.1.1)
|
5
|
+
devise (>= 2.1.0.rc)
|
17
6
|
|
18
7
|
GEM
|
19
8
|
remote: https://rubygems.org/
|
@@ -50,6 +39,11 @@ GEM
|
|
50
39
|
bcrypt-ruby (3.0.1)
|
51
40
|
builder (3.0.0)
|
52
41
|
coderay (1.0.6)
|
42
|
+
devise (2.1.0.rc)
|
43
|
+
bcrypt-ruby (~> 3.0)
|
44
|
+
orm_adapter (~> 0.0.3)
|
45
|
+
railties (~> 3.1)
|
46
|
+
warden (~> 1.1.1)
|
53
47
|
erubis (2.7.0)
|
54
48
|
hike (1.2.1)
|
55
49
|
i18n (0.6.0)
|
@@ -123,7 +117,7 @@ PLATFORMS
|
|
123
117
|
|
124
118
|
DEPENDENCIES
|
125
119
|
awesome_print
|
126
|
-
devise
|
120
|
+
devise (~> 2.1.0.rc)
|
127
121
|
devise-encryptable!
|
128
122
|
minitest
|
129
123
|
mocha
|
data/devise-encryptable.gemspec
CHANGED
@@ -1,19 +1,8 @@
|
|
1
|
-
GIT
|
2
|
-
remote: git://github.com/plataformatec/devise.git
|
3
|
-
revision: 0d868b9ec1e0c7d3a041bb65c2889b5bd23d65dc
|
4
|
-
branch: removing_encryptable
|
5
|
-
specs:
|
6
|
-
devise (2.1.0.rc)
|
7
|
-
bcrypt-ruby (~> 3.0)
|
8
|
-
orm_adapter (~> 0.0.7)
|
9
|
-
railties (~> 3.1)
|
10
|
-
warden (~> 1.1.1)
|
11
|
-
|
12
1
|
PATH
|
13
2
|
remote: ..
|
14
3
|
specs:
|
15
|
-
devise-encryptable (0.0
|
16
|
-
devise (
|
4
|
+
devise-encryptable (0.1.0)
|
5
|
+
devise (>= 2.1.0.rc)
|
17
6
|
|
18
7
|
GEM
|
19
8
|
remote: https://rubygems.org/
|
@@ -51,6 +40,11 @@ GEM
|
|
51
40
|
bcrypt-ruby (3.0.1)
|
52
41
|
builder (3.0.0)
|
53
42
|
coderay (1.0.6)
|
43
|
+
devise (2.1.0.rc)
|
44
|
+
bcrypt-ruby (~> 3.0)
|
45
|
+
orm_adapter (~> 0.0.3)
|
46
|
+
railties (~> 3.1)
|
47
|
+
warden (~> 1.1.1)
|
54
48
|
erubis (2.7.0)
|
55
49
|
hike (1.2.1)
|
56
50
|
i18n (0.6.0)
|
@@ -125,7 +119,7 @@ PLATFORMS
|
|
125
119
|
|
126
120
|
DEPENDENCIES
|
127
121
|
awesome_print
|
128
|
-
devise
|
122
|
+
devise (>= 2.1.0.rc)
|
129
123
|
devise-encryptable!
|
130
124
|
minitest
|
131
125
|
mocha
|
@@ -22,13 +22,6 @@ RailsApp::Application.configure do
|
|
22
22
|
# Only use best-standards-support built into browsers
|
23
23
|
config.action_dispatch.best_standards_support = :builtin
|
24
24
|
|
25
|
-
# Raise exception on mass assignment protection for Active Record models
|
26
|
-
config.active_record.mass_assignment_sanitizer = :strict
|
27
|
-
|
28
|
-
# Log the query plan for queries taking more than this (works
|
29
|
-
# with SQLite, MySQL, and PostgreSQL)
|
30
|
-
config.active_record.auto_explain_threshold_in_seconds = 0.5
|
31
|
-
|
32
25
|
# Do not compress assets
|
33
26
|
config.assets.compress = false
|
34
27
|
|
@@ -29,9 +29,6 @@ RailsApp::Application.configure do
|
|
29
29
|
# ActionMailer::Base.deliveries array.
|
30
30
|
config.action_mailer.delivery_method = :test
|
31
31
|
|
32
|
-
# Raise exception on mass assignment protection for Active Record models
|
33
|
-
config.active_record.mass_assignment_sanitizer = :strict
|
34
|
-
|
35
32
|
# Print deprecation notices to the stderr
|
36
33
|
config.active_support.deprecation = :stderr
|
37
34
|
end
|
data/test/test_helper.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: devise-encryptable
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -18,17 +18,17 @@ dependencies:
|
|
18
18
|
requirement: !ruby/object:Gem::Requirement
|
19
19
|
none: false
|
20
20
|
requirements:
|
21
|
-
- -
|
21
|
+
- - ! '>='
|
22
22
|
- !ruby/object:Gem::Version
|
23
|
-
version:
|
23
|
+
version: 2.1.0.rc
|
24
24
|
type: :runtime
|
25
25
|
prerelease: false
|
26
26
|
version_requirements: !ruby/object:Gem::Requirement
|
27
27
|
none: false
|
28
28
|
requirements:
|
29
|
-
- -
|
29
|
+
- - ! '>='
|
30
30
|
- !ruby/object:Gem::Version
|
31
|
-
version:
|
31
|
+
version: 2.1.0.rc
|
32
32
|
description: Encryption solution for salted-encryptors on Devise
|
33
33
|
email: contact@plataformatec.com.br
|
34
34
|
executables: []
|
@@ -89,12 +89,18 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
89
89
|
- - ! '>='
|
90
90
|
- !ruby/object:Gem::Version
|
91
91
|
version: '0'
|
92
|
+
segments:
|
93
|
+
- 0
|
94
|
+
hash: -4589347329383548179
|
92
95
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
93
96
|
none: false
|
94
97
|
requirements:
|
95
98
|
- - ! '>='
|
96
99
|
- !ruby/object:Gem::Version
|
97
100
|
version: '0'
|
101
|
+
segments:
|
102
|
+
- 0
|
103
|
+
hash: -4589347329383548179
|
98
104
|
requirements: []
|
99
105
|
rubyforge_project:
|
100
106
|
rubygems_version: 1.8.23
|