devise-secure_password 1.0.8 → 1.1.0
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.
- checksums.yaml +4 -4
- data/Changelog.md +15 -0
- data/Dockerfile +1 -1
- data/Dockerfile.prev +3 -3
- data/Gemfile +1 -0
- data/README.md +16 -5
- data/devise-secure_password.gemspec +1 -3
- data/gemfiles/rails-5_1.gemfile +5 -1
- data/gemfiles/{rails-5_0.gemfile → rails-5_2.gemfile} +7 -3
- data/lib/devise/secure_password/version.rb +1 -1
- data/pkg/devise-secure_password-1.0.8.gem +0 -0
- metadata +8 -37
- data/gemfiles/rails-5_0.gemfile.lock +0 -288
- data/gemfiles/rails-5_0_6.gemfile.lock +0 -286
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b21e4413842dec3af1181be01390da1fa5d6ea73
|
4
|
+
data.tar.gz: eb16284f0332a59314c712fab450736c5b36a32a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 762283d1f6a5c7e667938cd6d78b13e8885243c22ca032ab778146e51791720ce6309f383627b39ec6f3410d6b9b25a532fa2c3db32a4f058330aa98f99f2a42
|
7
|
+
data.tar.gz: b736ce5b905e46dc19bea1ad5f61e3dd279deb32dabf355829143c83cd78f1d7fda1752a7eadbef87b7c906f9d89a05970a3971362fb0c60c97ffa4e1cf4dc47
|
data/Changelog.md
CHANGED
@@ -1,5 +1,20 @@
|
|
1
1
|
# Changelog: devise-secure_password
|
2
2
|
|
3
|
+
## 1.1.0 / 2018-08-08
|
4
|
+
|
5
|
+
With this release, the __devise-secure_password__ gem drops official support for Rails < 5.1. Supported versions are now
|
6
|
+
Rails 5.2 (current release) and Rails 5.1 (last release).
|
7
|
+
|
8
|
+
* Update README for Rails versions tested (5.2, 5.1).
|
9
|
+
* Update circleci config for Ruby and Rails versions.
|
10
|
+
* Update default dev build to Rails 5.2.
|
11
|
+
* Add test support for Rails 5.2.
|
12
|
+
* Remove test support for Rails 5.0.
|
13
|
+
* Update Dockerfile.prev ruby to 2.4.4.
|
14
|
+
* Update Dockerfile ruby to 2.5.1.
|
15
|
+
* Sort rake targets task list output.
|
16
|
+
* Add Codecov.io for coverage tracking
|
17
|
+
|
3
18
|
## 1.0.8 / 2018-06-15
|
4
19
|
|
5
20
|
* Update README for ruby versions tested (2.5.1, 2.4.4).
|
data/Dockerfile
CHANGED
@@ -13,7 +13,7 @@
|
|
13
13
|
# NOTE: The order in which you run 'bundle install' in spec/rails and then in
|
14
14
|
# the top directory is important.
|
15
15
|
#
|
16
|
-
FROM circleci/ruby:2.5.
|
16
|
+
FROM circleci/ruby:2.5.1-browsers
|
17
17
|
LABEL maintainer="Mark Eissler <mark.eissler@valimail.com>"
|
18
18
|
|
19
19
|
ENV BUILD_HOME='/secure-password-gem'
|
data/Dockerfile.prev
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
#
|
2
2
|
# Dockerfile for devise-secure_password
|
3
3
|
#
|
4
|
-
# prompt> docker build -t secure-password-dev .
|
5
|
-
# prompt> docker run -it secure-password-dev /bin/bash
|
4
|
+
# prompt> docker build -f Dockerfile.prev -t secure-password-dev-prev .
|
5
|
+
# prompt> docker run -it secure-password-dev-prev /bin/bash
|
6
6
|
# prompt> pushd . && cd spec/rails-app-X_y_z
|
7
7
|
# prompt> gem install bundler && RAILS_TARGET=X.y.z bundle install --jobs 20 --retry 5
|
8
8
|
# prompt> RAILS_ENV='test' bundle exec rake db:migrate
|
@@ -13,7 +13,7 @@
|
|
13
13
|
# NOTE: The order in which you run 'bundle install' in spec/rails and then in
|
14
14
|
# the top directory is important.
|
15
15
|
#
|
16
|
-
FROM circleci/ruby:2.4.
|
16
|
+
FROM circleci/ruby:2.4.4-browsers
|
17
17
|
LABEL maintainer="Mark Eissler <mark.eissler@valimail.com>"
|
18
18
|
|
19
19
|
ENV BUILD_HOME='/secure-password-gem'
|
data/Gemfile
CHANGED
data/README.md
CHANGED
@@ -9,7 +9,7 @@ as well.
|
|
9
9
|
|
10
10
|
## Build Status
|
11
11
|
|
12
|
-
| Service | rails 5.
|
12
|
+
| Service | rails 5.2 |
|
13
13
|
|:-----------|:-----------:|
|
14
14
|
| Circle CI | []() |
|
15
15
|
|
@@ -32,7 +32,7 @@ The goal of this project is to provide compatibility for officially supported st
|
|
32
32
|
and [Ruby on Rails](http://guides.rubyonrails.org/maintenance_policy.html). More specifically, the following releases
|
33
33
|
are currently supported by the __Devise Secure Password Extension__:
|
34
34
|
|
35
|
-
- Ruby on Rails: __5.
|
35
|
+
- Ruby on Rails: __5.2.Z__, __5.1.Z__ (current and previous stable release)
|
36
36
|
- Ruby: __2.5.1__, __2.4.4__ (current and previous stable release)
|
37
37
|
|
38
38
|
## Installation
|
@@ -228,14 +228,14 @@ To determine the Ruby on Rails versions supported by this release, run the follo
|
|
228
228
|
prompt> gem install flay ruby2ruby rubocop rspec
|
229
229
|
prompt> rake test:spec:targets
|
230
230
|
|
231
|
-
Available Rails targets: 5.
|
231
|
+
Available Rails targets: 5.1, 5.2
|
232
232
|
```
|
233
233
|
|
234
234
|
Reconfigure the project by specifying the correct Gemfile when running bundler, followed by running tests:
|
235
235
|
|
236
236
|
```bash
|
237
|
-
prompt> BUNDLE_GEMFILE=gemfiles/rails-
|
238
|
-
prompt> BUNDLE_GEMFILE=gemfiles/rails-
|
237
|
+
prompt> BUNDLE_GEMFILE=gemfiles/rails-5_2.gemfile bundle
|
238
|
+
prompt> BUNDLE_GEMFILE=gemfiles/rails-5_2.gemfile bundle exec rake
|
239
239
|
```
|
240
240
|
|
241
241
|
The only time you need to define the `BUNDLE_GEMFILE` environment variable is when testing a non-default target.
|
@@ -339,6 +339,17 @@ initiating any development work including tests.
|
|
339
339
|
prompt> gem update bundler
|
340
340
|
```
|
341
341
|
|
342
|
+
#### Updating test.sqlite3.db
|
343
|
+
|
344
|
+
To update or generate a `db/test/sqlite3.db` database file:
|
345
|
+
|
346
|
+
```bash
|
347
|
+
prompt> cd spec/rails-app-X_y_z
|
348
|
+
prompt> bundle install
|
349
|
+
prompt> rake app:update:bin
|
350
|
+
prompt> RAILS_ENV=test bundle exec rake db:migrate
|
351
|
+
```
|
352
|
+
|
342
353
|
## Contributing
|
343
354
|
|
344
355
|
Bug reports and pull requests are welcome on GitHub at https://github.com/valimail/devise-secure_password. This project
|
@@ -39,19 +39,17 @@ Gem::Specification.new do |spec|
|
|
39
39
|
spec.add_development_dependency 'devise', '~> 4.0'
|
40
40
|
spec.add_development_dependency 'flay', '~> 2.10', '>= 2.10.0'
|
41
41
|
spec.add_development_dependency 'launchy', '~> 2.4', '>= 2.4.3'
|
42
|
-
spec.add_development_dependency 'rails', '~> 5.
|
42
|
+
spec.add_development_dependency 'rails', '~> 5.2', '>= 5.2.0'
|
43
43
|
spec.add_development_dependency 'rake', '~> 12.3'
|
44
44
|
spec.add_development_dependency 'rspec', '~> 3.7'
|
45
45
|
spec.add_development_dependency 'rspec-rails', '~> 3.7'
|
46
46
|
spec.add_development_dependency 'rspec_junit_formatter', '~> 0.3'
|
47
47
|
spec.add_development_dependency 'rubocop', '>= 0.49.0'
|
48
48
|
spec.add_development_dependency 'ruby2ruby', '~> 2.4', '>= 2.4.0'
|
49
|
-
spec.add_development_dependency 'sass-rails', '~> 5.0'
|
50
49
|
spec.add_development_dependency 'selenium-webdriver', '~> 3.7', '>= 3.7.0'
|
51
50
|
spec.add_development_dependency 'simplecov', '~> 0.15.1'
|
52
51
|
spec.add_development_dependency 'simplecov-console', '~> 0.4.2'
|
53
52
|
spec.add_development_dependency 'sqlite3', '~> 1.3', '>= 1.3.13'
|
54
|
-
spec.add_development_dependency 'therubyracer', '~> 0.12.3'
|
55
53
|
|
56
54
|
spec.required_ruby_version = '>= 2.4'
|
57
55
|
end
|
data/gemfiles/rails-5_1.gemfile
CHANGED
@@ -6,11 +6,15 @@ ENV['RAILS_TARGET'] ||= '5.1'
|
|
6
6
|
|
7
7
|
gemspec path: '../'
|
8
8
|
|
9
|
+
gem 'rails', '~> 5.1.0'
|
10
|
+
gem 'sass-rails', '~> 5.0'
|
11
|
+
gem 'therubyracer', '~> 0.12.3', platforms: :ruby
|
12
|
+
|
9
13
|
group :development, :test do
|
10
14
|
gem 'byebug', '>= 0'
|
11
15
|
end
|
12
16
|
|
13
17
|
group :test do
|
14
|
-
gem '
|
18
|
+
gem 'codecov', require: false
|
15
19
|
gem 'shoulda-matchers', git: 'https://github.com/thoughtbot/shoulda-matchers.git', branch: 'rails-5'
|
16
20
|
end
|
@@ -2,16 +2,20 @@ source 'https://rubygems.org'
|
|
2
2
|
|
3
3
|
git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
|
4
4
|
|
5
|
-
ENV['RAILS_TARGET'] ||= '5.
|
5
|
+
ENV['RAILS_TARGET'] ||= '5.2'
|
6
6
|
|
7
7
|
gemspec path: '../'
|
8
8
|
|
9
|
+
gem 'bootsnap', '>= 1.1.0', require: false
|
10
|
+
gem 'mini_racer', '~> 0.2.0', platforms: :ruby
|
11
|
+
gem 'rails', '~> 5.2.0'
|
12
|
+
gem 'sassc-rails', '~> 1.3.0'
|
13
|
+
|
9
14
|
group :development, :test do
|
10
15
|
gem 'byebug', '>= 0'
|
11
16
|
end
|
12
17
|
|
13
18
|
group :test do
|
14
|
-
gem '
|
15
|
-
gem 'rails', '~> 5.0.0'
|
19
|
+
gem 'codecov', require: false
|
16
20
|
gem 'shoulda-matchers', git: 'https://github.com/thoughtbot/shoulda-matchers.git', branch: 'rails-5'
|
17
21
|
end
|
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: devise-secure_password
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mark Eissler
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-
|
11
|
+
date: 2018-08-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: devise
|
@@ -204,20 +204,20 @@ dependencies:
|
|
204
204
|
requirements:
|
205
205
|
- - "~>"
|
206
206
|
- !ruby/object:Gem::Version
|
207
|
-
version: '5.
|
207
|
+
version: '5.2'
|
208
208
|
- - ">="
|
209
209
|
- !ruby/object:Gem::Version
|
210
|
-
version: 5.
|
210
|
+
version: 5.2.0
|
211
211
|
type: :development
|
212
212
|
prerelease: false
|
213
213
|
version_requirements: !ruby/object:Gem::Requirement
|
214
214
|
requirements:
|
215
215
|
- - "~>"
|
216
216
|
- !ruby/object:Gem::Version
|
217
|
-
version: '5.
|
217
|
+
version: '5.2'
|
218
218
|
- - ">="
|
219
219
|
- !ruby/object:Gem::Version
|
220
|
-
version: 5.
|
220
|
+
version: 5.2.0
|
221
221
|
- !ruby/object:Gem::Dependency
|
222
222
|
name: rake
|
223
223
|
requirement: !ruby/object:Gem::Requirement
|
@@ -308,20 +308,6 @@ dependencies:
|
|
308
308
|
- - ">="
|
309
309
|
- !ruby/object:Gem::Version
|
310
310
|
version: 2.4.0
|
311
|
-
- !ruby/object:Gem::Dependency
|
312
|
-
name: sass-rails
|
313
|
-
requirement: !ruby/object:Gem::Requirement
|
314
|
-
requirements:
|
315
|
-
- - "~>"
|
316
|
-
- !ruby/object:Gem::Version
|
317
|
-
version: '5.0'
|
318
|
-
type: :development
|
319
|
-
prerelease: false
|
320
|
-
version_requirements: !ruby/object:Gem::Requirement
|
321
|
-
requirements:
|
322
|
-
- - "~>"
|
323
|
-
- !ruby/object:Gem::Version
|
324
|
-
version: '5.0'
|
325
311
|
- !ruby/object:Gem::Dependency
|
326
312
|
name: selenium-webdriver
|
327
313
|
requirement: !ruby/object:Gem::Requirement
|
@@ -390,20 +376,6 @@ dependencies:
|
|
390
376
|
- - ">="
|
391
377
|
- !ruby/object:Gem::Version
|
392
378
|
version: 1.3.13
|
393
|
-
- !ruby/object:Gem::Dependency
|
394
|
-
name: therubyracer
|
395
|
-
requirement: !ruby/object:Gem::Requirement
|
396
|
-
requirements:
|
397
|
-
- - "~>"
|
398
|
-
- !ruby/object:Gem::Version
|
399
|
-
version: 0.12.3
|
400
|
-
type: :development
|
401
|
-
prerelease: false
|
402
|
-
version_requirements: !ruby/object:Gem::Requirement
|
403
|
-
requirements:
|
404
|
-
- - "~>"
|
405
|
-
- !ruby/object:Gem::Version
|
406
|
-
version: 0.12.3
|
407
379
|
description: Adds configurable password policy enforcement to devise.
|
408
380
|
email:
|
409
381
|
- mark.eissler@valimail.com
|
@@ -453,12 +425,10 @@ files:
|
|
453
425
|
- "./devise-secure_password-1.0.0.gem"
|
454
426
|
- "./devise-secure_password.gemspec"
|
455
427
|
- "./docker-entrypoint.sh"
|
456
|
-
- "./gemfiles/rails-5_0.gemfile"
|
457
|
-
- "./gemfiles/rails-5_0.gemfile.lock"
|
458
|
-
- "./gemfiles/rails-5_0_6.gemfile.lock"
|
459
428
|
- "./gemfiles/rails-5_1.gemfile"
|
460
429
|
- "./gemfiles/rails-5_1.gemfile.lock"
|
461
430
|
- "./gemfiles/rails-5_1_4.gemfile.lock"
|
431
|
+
- "./gemfiles/rails-5_2.gemfile"
|
462
432
|
- "./lib/devise/secure_password.rb"
|
463
433
|
- "./lib/devise/secure_password/controllers/devise_helpers.rb"
|
464
434
|
- "./lib/devise/secure_password/controllers/helpers.rb"
|
@@ -474,6 +444,7 @@ files:
|
|
474
444
|
- "./lib/generators/devise/templates/README.txt"
|
475
445
|
- "./lib/generators/devise/templates/secure_password.rb"
|
476
446
|
- "./lib/support/string/character_counter.rb"
|
447
|
+
- "./pkg/devise-secure_password-1.0.8.gem"
|
477
448
|
homepage: https://github.com/valimail/devise-secure_password
|
478
449
|
licenses:
|
479
450
|
- MIT
|
@@ -1,288 +0,0 @@
|
|
1
|
-
GIT
|
2
|
-
remote: https://github.com/thoughtbot/shoulda-matchers.git
|
3
|
-
revision: 4b160bd19ecca7f97d7ac22dccd5fde9b0da5a9f
|
4
|
-
branch: rails-5
|
5
|
-
specs:
|
6
|
-
shoulda-matchers (3.1.2)
|
7
|
-
activesupport (>= 4.2.0)
|
8
|
-
|
9
|
-
PATH
|
10
|
-
remote: ..
|
11
|
-
specs:
|
12
|
-
devise-secure_password (1.0.8)
|
13
|
-
devise (>= 4.0.0, < 5.0.0)
|
14
|
-
railties (>= 5.0.0, < 6.0.0)
|
15
|
-
|
16
|
-
GEM
|
17
|
-
remote: https://rubygems.org/
|
18
|
-
specs:
|
19
|
-
actioncable (5.0.7)
|
20
|
-
actionpack (= 5.0.7)
|
21
|
-
nio4r (>= 1.2, < 3.0)
|
22
|
-
websocket-driver (~> 0.6.1)
|
23
|
-
actionmailer (5.0.7)
|
24
|
-
actionpack (= 5.0.7)
|
25
|
-
actionview (= 5.0.7)
|
26
|
-
activejob (= 5.0.7)
|
27
|
-
mail (~> 2.5, >= 2.5.4)
|
28
|
-
rails-dom-testing (~> 2.0)
|
29
|
-
actionpack (5.0.7)
|
30
|
-
actionview (= 5.0.7)
|
31
|
-
activesupport (= 5.0.7)
|
32
|
-
rack (~> 2.0)
|
33
|
-
rack-test (~> 0.6.3)
|
34
|
-
rails-dom-testing (~> 2.0)
|
35
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
36
|
-
actionview (5.0.7)
|
37
|
-
activesupport (= 5.0.7)
|
38
|
-
builder (~> 3.1)
|
39
|
-
erubis (~> 2.7.0)
|
40
|
-
rails-dom-testing (~> 2.0)
|
41
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
42
|
-
activejob (5.0.7)
|
43
|
-
activesupport (= 5.0.7)
|
44
|
-
globalid (>= 0.3.6)
|
45
|
-
activemodel (5.0.7)
|
46
|
-
activesupport (= 5.0.7)
|
47
|
-
activerecord (5.0.7)
|
48
|
-
activemodel (= 5.0.7)
|
49
|
-
activesupport (= 5.0.7)
|
50
|
-
arel (~> 7.0)
|
51
|
-
activesupport (5.0.7)
|
52
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
53
|
-
i18n (>= 0.7, < 2)
|
54
|
-
minitest (~> 5.1)
|
55
|
-
tzinfo (~> 1.1)
|
56
|
-
addressable (2.5.2)
|
57
|
-
public_suffix (>= 2.0.2, < 4.0)
|
58
|
-
ansi (1.5.0)
|
59
|
-
arel (7.1.4)
|
60
|
-
ast (2.4.0)
|
61
|
-
bcrypt (3.1.12)
|
62
|
-
builder (3.2.3)
|
63
|
-
byebug (10.0.2)
|
64
|
-
capybara (2.18.0)
|
65
|
-
addressable
|
66
|
-
mini_mime (>= 0.1.3)
|
67
|
-
nokogiri (>= 1.3.3)
|
68
|
-
rack (>= 1.0.0)
|
69
|
-
rack-test (>= 0.5.4)
|
70
|
-
xpath (>= 2.0, < 4.0)
|
71
|
-
capybara-screenshot (1.0.21)
|
72
|
-
capybara (>= 1.0, < 4)
|
73
|
-
launchy
|
74
|
-
childprocess (0.9.0)
|
75
|
-
ffi (~> 1.0, >= 1.0.11)
|
76
|
-
coffee-rails (4.2.2)
|
77
|
-
coffee-script (>= 2.2.0)
|
78
|
-
railties (>= 4.0.0)
|
79
|
-
coffee-script (2.4.1)
|
80
|
-
coffee-script-source
|
81
|
-
execjs
|
82
|
-
coffee-script-source (1.12.2)
|
83
|
-
concurrent-ruby (1.0.5)
|
84
|
-
crass (1.0.4)
|
85
|
-
database_cleaner (1.7.0)
|
86
|
-
devise (4.4.3)
|
87
|
-
bcrypt (~> 3.0)
|
88
|
-
orm_adapter (~> 0.1)
|
89
|
-
railties (>= 4.1.0, < 6.0)
|
90
|
-
responders
|
91
|
-
warden (~> 1.2.3)
|
92
|
-
diff-lcs (1.3)
|
93
|
-
docile (1.1.5)
|
94
|
-
erubis (2.7.0)
|
95
|
-
execjs (2.7.0)
|
96
|
-
ffi (1.9.25)
|
97
|
-
flay (2.12.0)
|
98
|
-
erubis (~> 2.7.0)
|
99
|
-
path_expander (~> 1.0)
|
100
|
-
ruby_parser (~> 3.0)
|
101
|
-
sexp_processor (~> 4.0)
|
102
|
-
globalid (0.4.1)
|
103
|
-
activesupport (>= 4.2.0)
|
104
|
-
hirb (0.7.3)
|
105
|
-
i18n (1.0.1)
|
106
|
-
concurrent-ruby (~> 1.0)
|
107
|
-
jaro_winkler (1.5.1)
|
108
|
-
jquery-rails (4.3.3)
|
109
|
-
rails-dom-testing (>= 1, < 3)
|
110
|
-
railties (>= 4.2.0)
|
111
|
-
thor (>= 0.14, < 2.0)
|
112
|
-
json (2.1.0)
|
113
|
-
launchy (2.4.3)
|
114
|
-
addressable (~> 2.3)
|
115
|
-
libv8 (3.16.14.19)
|
116
|
-
loofah (2.2.2)
|
117
|
-
crass (~> 1.0.2)
|
118
|
-
nokogiri (>= 1.5.9)
|
119
|
-
mail (2.7.0)
|
120
|
-
mini_mime (>= 0.1.1)
|
121
|
-
method_source (0.9.0)
|
122
|
-
mini_mime (1.0.0)
|
123
|
-
mini_portile2 (2.3.0)
|
124
|
-
minitest (5.11.3)
|
125
|
-
nio4r (2.3.1)
|
126
|
-
nokogiri (1.8.2)
|
127
|
-
mini_portile2 (~> 2.3.0)
|
128
|
-
orm_adapter (0.5.0)
|
129
|
-
parallel (1.12.1)
|
130
|
-
parser (2.5.1.0)
|
131
|
-
ast (~> 2.4.0)
|
132
|
-
path_expander (1.0.3)
|
133
|
-
powerpack (0.1.2)
|
134
|
-
public_suffix (3.0.2)
|
135
|
-
rack (2.0.5)
|
136
|
-
rack-test (0.6.3)
|
137
|
-
rack (>= 1.0)
|
138
|
-
rails (5.0.7)
|
139
|
-
actioncable (= 5.0.7)
|
140
|
-
actionmailer (= 5.0.7)
|
141
|
-
actionpack (= 5.0.7)
|
142
|
-
actionview (= 5.0.7)
|
143
|
-
activejob (= 5.0.7)
|
144
|
-
activemodel (= 5.0.7)
|
145
|
-
activerecord (= 5.0.7)
|
146
|
-
activesupport (= 5.0.7)
|
147
|
-
bundler (>= 1.3.0)
|
148
|
-
railties (= 5.0.7)
|
149
|
-
sprockets-rails (>= 2.0.0)
|
150
|
-
rails-dom-testing (2.0.3)
|
151
|
-
activesupport (>= 4.2.0)
|
152
|
-
nokogiri (>= 1.6)
|
153
|
-
rails-html-sanitizer (1.0.4)
|
154
|
-
loofah (~> 2.2, >= 2.2.2)
|
155
|
-
railties (5.0.7)
|
156
|
-
actionpack (= 5.0.7)
|
157
|
-
activesupport (= 5.0.7)
|
158
|
-
method_source
|
159
|
-
rake (>= 0.8.7)
|
160
|
-
thor (>= 0.18.1, < 2.0)
|
161
|
-
rainbow (3.0.0)
|
162
|
-
rake (12.3.1)
|
163
|
-
rb-fsevent (0.10.3)
|
164
|
-
rb-inotify (0.9.10)
|
165
|
-
ffi (>= 0.5.0, < 2)
|
166
|
-
ref (2.0.0)
|
167
|
-
responders (2.4.0)
|
168
|
-
actionpack (>= 4.2.0, < 5.3)
|
169
|
-
railties (>= 4.2.0, < 5.3)
|
170
|
-
rspec (3.7.0)
|
171
|
-
rspec-core (~> 3.7.0)
|
172
|
-
rspec-expectations (~> 3.7.0)
|
173
|
-
rspec-mocks (~> 3.7.0)
|
174
|
-
rspec-core (3.7.1)
|
175
|
-
rspec-support (~> 3.7.0)
|
176
|
-
rspec-expectations (3.7.0)
|
177
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
178
|
-
rspec-support (~> 3.7.0)
|
179
|
-
rspec-mocks (3.7.0)
|
180
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
181
|
-
rspec-support (~> 3.7.0)
|
182
|
-
rspec-rails (3.7.2)
|
183
|
-
actionpack (>= 3.0)
|
184
|
-
activesupport (>= 3.0)
|
185
|
-
railties (>= 3.0)
|
186
|
-
rspec-core (~> 3.7.0)
|
187
|
-
rspec-expectations (~> 3.7.0)
|
188
|
-
rspec-mocks (~> 3.7.0)
|
189
|
-
rspec-support (~> 3.7.0)
|
190
|
-
rspec-support (3.7.1)
|
191
|
-
rspec_junit_formatter (0.4.1)
|
192
|
-
rspec-core (>= 2, < 4, != 2.12.0)
|
193
|
-
rubocop (0.57.2)
|
194
|
-
jaro_winkler (~> 1.5.1)
|
195
|
-
parallel (~> 1.10)
|
196
|
-
parser (>= 2.5)
|
197
|
-
powerpack (~> 0.1)
|
198
|
-
rainbow (>= 2.2.2, < 4.0)
|
199
|
-
ruby-progressbar (~> 1.7)
|
200
|
-
unicode-display_width (~> 1.0, >= 1.0.1)
|
201
|
-
ruby-progressbar (1.9.0)
|
202
|
-
ruby2ruby (2.4.1)
|
203
|
-
ruby_parser (~> 3.1)
|
204
|
-
sexp_processor (~> 4.6)
|
205
|
-
ruby_parser (3.11.0)
|
206
|
-
sexp_processor (~> 4.9)
|
207
|
-
rubyzip (1.2.1)
|
208
|
-
sass (3.5.6)
|
209
|
-
sass-listen (~> 4.0.0)
|
210
|
-
sass-listen (4.0.0)
|
211
|
-
rb-fsevent (~> 0.9, >= 0.9.4)
|
212
|
-
rb-inotify (~> 0.9, >= 0.9.7)
|
213
|
-
sass-rails (5.0.7)
|
214
|
-
railties (>= 4.0.0, < 6)
|
215
|
-
sass (~> 3.1)
|
216
|
-
sprockets (>= 2.8, < 4.0)
|
217
|
-
sprockets-rails (>= 2.0, < 4.0)
|
218
|
-
tilt (>= 1.1, < 3)
|
219
|
-
selenium-webdriver (3.12.0)
|
220
|
-
childprocess (~> 0.5)
|
221
|
-
rubyzip (~> 1.2)
|
222
|
-
sexp_processor (4.11.0)
|
223
|
-
simplecov (0.15.1)
|
224
|
-
docile (~> 1.1.0)
|
225
|
-
json (>= 1.8, < 3)
|
226
|
-
simplecov-html (~> 0.10.0)
|
227
|
-
simplecov-console (0.4.2)
|
228
|
-
ansi
|
229
|
-
hirb
|
230
|
-
simplecov
|
231
|
-
simplecov-html (0.10.2)
|
232
|
-
sprockets (3.7.1)
|
233
|
-
concurrent-ruby (~> 1.0)
|
234
|
-
rack (> 1, < 3)
|
235
|
-
sprockets-rails (3.2.1)
|
236
|
-
actionpack (>= 4.0)
|
237
|
-
activesupport (>= 4.0)
|
238
|
-
sprockets (>= 3.0.0)
|
239
|
-
sqlite3 (1.3.13)
|
240
|
-
therubyracer (0.12.3)
|
241
|
-
libv8 (~> 3.16.14.15)
|
242
|
-
ref
|
243
|
-
thor (0.20.0)
|
244
|
-
thread_safe (0.3.6)
|
245
|
-
tilt (2.0.8)
|
246
|
-
tzinfo (1.2.5)
|
247
|
-
thread_safe (~> 0.1)
|
248
|
-
unicode-display_width (1.4.0)
|
249
|
-
warden (1.2.7)
|
250
|
-
rack (>= 1.0)
|
251
|
-
websocket-driver (0.6.5)
|
252
|
-
websocket-extensions (>= 0.1.0)
|
253
|
-
websocket-extensions (0.1.3)
|
254
|
-
xpath (3.1.0)
|
255
|
-
nokogiri (~> 1.8)
|
256
|
-
|
257
|
-
PLATFORMS
|
258
|
-
ruby
|
259
|
-
|
260
|
-
DEPENDENCIES
|
261
|
-
bundler (~> 1.16, >= 1.16.1)
|
262
|
-
byebug
|
263
|
-
capybara (~> 2.16, >= 2.16.1)
|
264
|
-
capybara-screenshot (~> 1.0, >= 1.0.18)
|
265
|
-
coffee-rails (~> 4.2)
|
266
|
-
database_cleaner (~> 1.6, >= 1.6.2)
|
267
|
-
devise (~> 4.0)
|
268
|
-
devise-secure_password!
|
269
|
-
flay (~> 2.10, >= 2.10.0)
|
270
|
-
jquery-rails (~> 4.3.1)
|
271
|
-
launchy (~> 2.4, >= 2.4.3)
|
272
|
-
rails (~> 5.0.0)
|
273
|
-
rake (~> 12.3)
|
274
|
-
rspec (~> 3.7)
|
275
|
-
rspec-rails (~> 3.7)
|
276
|
-
rspec_junit_formatter (~> 0.3)
|
277
|
-
rubocop (>= 0.49.0)
|
278
|
-
ruby2ruby (~> 2.4, >= 2.4.0)
|
279
|
-
sass-rails (~> 5.0)
|
280
|
-
selenium-webdriver (~> 3.7, >= 3.7.0)
|
281
|
-
shoulda-matchers!
|
282
|
-
simplecov (~> 0.15.1)
|
283
|
-
simplecov-console (~> 0.4.2)
|
284
|
-
sqlite3 (~> 1.3, >= 1.3.13)
|
285
|
-
therubyracer (~> 0.12.3)
|
286
|
-
|
287
|
-
BUNDLED WITH
|
288
|
-
1.16.2
|
@@ -1,286 +0,0 @@
|
|
1
|
-
GIT
|
2
|
-
remote: https://github.com/thoughtbot/shoulda-matchers.git
|
3
|
-
revision: 4b160bd19ecca7f97d7ac22dccd5fde9b0da5a9f
|
4
|
-
branch: rails-5
|
5
|
-
specs:
|
6
|
-
shoulda-matchers (3.1.2)
|
7
|
-
activesupport (>= 4.2.0)
|
8
|
-
|
9
|
-
PATH
|
10
|
-
remote: ..
|
11
|
-
specs:
|
12
|
-
devise-secure_password (1.0.6)
|
13
|
-
devise (>= 4.0.0, < 5.0.0)
|
14
|
-
railties (>= 5.0.0, < 6.0.0)
|
15
|
-
|
16
|
-
GEM
|
17
|
-
remote: https://rubygems.org/
|
18
|
-
specs:
|
19
|
-
actioncable (5.0.7)
|
20
|
-
actionpack (= 5.0.7)
|
21
|
-
nio4r (>= 1.2, < 3.0)
|
22
|
-
websocket-driver (~> 0.6.1)
|
23
|
-
actionmailer (5.0.7)
|
24
|
-
actionpack (= 5.0.7)
|
25
|
-
actionview (= 5.0.7)
|
26
|
-
activejob (= 5.0.7)
|
27
|
-
mail (~> 2.5, >= 2.5.4)
|
28
|
-
rails-dom-testing (~> 2.0)
|
29
|
-
actionpack (5.0.7)
|
30
|
-
actionview (= 5.0.7)
|
31
|
-
activesupport (= 5.0.7)
|
32
|
-
rack (~> 2.0)
|
33
|
-
rack-test (~> 0.6.3)
|
34
|
-
rails-dom-testing (~> 2.0)
|
35
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
36
|
-
actionview (5.0.7)
|
37
|
-
activesupport (= 5.0.7)
|
38
|
-
builder (~> 3.1)
|
39
|
-
erubis (~> 2.7.0)
|
40
|
-
rails-dom-testing (~> 2.0)
|
41
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
42
|
-
activejob (5.0.7)
|
43
|
-
activesupport (= 5.0.7)
|
44
|
-
globalid (>= 0.3.6)
|
45
|
-
activemodel (5.0.7)
|
46
|
-
activesupport (= 5.0.7)
|
47
|
-
activerecord (5.0.7)
|
48
|
-
activemodel (= 5.0.7)
|
49
|
-
activesupport (= 5.0.7)
|
50
|
-
arel (~> 7.0)
|
51
|
-
activesupport (5.0.7)
|
52
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
53
|
-
i18n (>= 0.7, < 2)
|
54
|
-
minitest (~> 5.1)
|
55
|
-
tzinfo (~> 1.1)
|
56
|
-
addressable (2.5.2)
|
57
|
-
public_suffix (>= 2.0.2, < 4.0)
|
58
|
-
ansi (1.5.0)
|
59
|
-
arel (7.1.4)
|
60
|
-
ast (2.4.0)
|
61
|
-
bcrypt (3.1.11)
|
62
|
-
builder (3.2.3)
|
63
|
-
byebug (10.0.2)
|
64
|
-
capybara (2.18.0)
|
65
|
-
addressable
|
66
|
-
mini_mime (>= 0.1.3)
|
67
|
-
nokogiri (>= 1.3.3)
|
68
|
-
rack (>= 1.0.0)
|
69
|
-
rack-test (>= 0.5.4)
|
70
|
-
xpath (>= 2.0, < 4.0)
|
71
|
-
capybara-screenshot (1.0.19)
|
72
|
-
capybara (>= 1.0, < 4)
|
73
|
-
launchy
|
74
|
-
childprocess (0.9.0)
|
75
|
-
ffi (~> 1.0, >= 1.0.11)
|
76
|
-
coffee-rails (4.2.2)
|
77
|
-
coffee-script (>= 2.2.0)
|
78
|
-
railties (>= 4.0.0)
|
79
|
-
coffee-script (2.4.1)
|
80
|
-
coffee-script-source
|
81
|
-
execjs
|
82
|
-
coffee-script-source (1.12.2)
|
83
|
-
concurrent-ruby (1.0.5)
|
84
|
-
crass (1.0.4)
|
85
|
-
database_cleaner (1.7.0)
|
86
|
-
devise (4.4.3)
|
87
|
-
bcrypt (~> 3.0)
|
88
|
-
orm_adapter (~> 0.1)
|
89
|
-
railties (>= 4.1.0, < 6.0)
|
90
|
-
responders
|
91
|
-
warden (~> 1.2.3)
|
92
|
-
diff-lcs (1.3)
|
93
|
-
docile (1.1.5)
|
94
|
-
erubis (2.7.0)
|
95
|
-
execjs (2.7.0)
|
96
|
-
ffi (1.9.23)
|
97
|
-
flay (2.11.0)
|
98
|
-
erubis (~> 2.7.0)
|
99
|
-
path_expander (~> 1.0)
|
100
|
-
ruby_parser (~> 3.0)
|
101
|
-
sexp_processor (~> 4.0)
|
102
|
-
globalid (0.4.1)
|
103
|
-
activesupport (>= 4.2.0)
|
104
|
-
hirb (0.7.3)
|
105
|
-
i18n (1.0.1)
|
106
|
-
concurrent-ruby (~> 1.0)
|
107
|
-
jquery-rails (4.3.3)
|
108
|
-
rails-dom-testing (>= 1, < 3)
|
109
|
-
railties (>= 4.2.0)
|
110
|
-
thor (>= 0.14, < 2.0)
|
111
|
-
json (2.1.0)
|
112
|
-
launchy (2.4.3)
|
113
|
-
addressable (~> 2.3)
|
114
|
-
libv8 (3.16.14.19)
|
115
|
-
loofah (2.2.2)
|
116
|
-
crass (~> 1.0.2)
|
117
|
-
nokogiri (>= 1.5.9)
|
118
|
-
mail (2.7.0)
|
119
|
-
mini_mime (>= 0.1.1)
|
120
|
-
method_source (0.9.0)
|
121
|
-
mini_mime (1.0.0)
|
122
|
-
mini_portile2 (2.3.0)
|
123
|
-
minitest (5.11.3)
|
124
|
-
nio4r (2.3.0)
|
125
|
-
nokogiri (1.8.2)
|
126
|
-
mini_portile2 (~> 2.3.0)
|
127
|
-
orm_adapter (0.5.0)
|
128
|
-
parallel (1.12.1)
|
129
|
-
parser (2.5.1.0)
|
130
|
-
ast (~> 2.4.0)
|
131
|
-
path_expander (1.0.3)
|
132
|
-
powerpack (0.1.1)
|
133
|
-
public_suffix (3.0.2)
|
134
|
-
rack (2.0.5)
|
135
|
-
rack-test (0.6.3)
|
136
|
-
rack (>= 1.0)
|
137
|
-
rails (5.0.7)
|
138
|
-
actioncable (= 5.0.7)
|
139
|
-
actionmailer (= 5.0.7)
|
140
|
-
actionpack (= 5.0.7)
|
141
|
-
actionview (= 5.0.7)
|
142
|
-
activejob (= 5.0.7)
|
143
|
-
activemodel (= 5.0.7)
|
144
|
-
activerecord (= 5.0.7)
|
145
|
-
activesupport (= 5.0.7)
|
146
|
-
bundler (>= 1.3.0)
|
147
|
-
railties (= 5.0.7)
|
148
|
-
sprockets-rails (>= 2.0.0)
|
149
|
-
rails-dom-testing (2.0.3)
|
150
|
-
activesupport (>= 4.2.0)
|
151
|
-
nokogiri (>= 1.6)
|
152
|
-
rails-html-sanitizer (1.0.4)
|
153
|
-
loofah (~> 2.2, >= 2.2.2)
|
154
|
-
railties (5.0.7)
|
155
|
-
actionpack (= 5.0.7)
|
156
|
-
activesupport (= 5.0.7)
|
157
|
-
method_source
|
158
|
-
rake (>= 0.8.7)
|
159
|
-
thor (>= 0.18.1, < 2.0)
|
160
|
-
rainbow (3.0.0)
|
161
|
-
rake (12.3.1)
|
162
|
-
rb-fsevent (0.10.3)
|
163
|
-
rb-inotify (0.9.10)
|
164
|
-
ffi (>= 0.5.0, < 2)
|
165
|
-
ref (2.0.0)
|
166
|
-
responders (2.4.0)
|
167
|
-
actionpack (>= 4.2.0, < 5.3)
|
168
|
-
railties (>= 4.2.0, < 5.3)
|
169
|
-
rspec (3.7.0)
|
170
|
-
rspec-core (~> 3.7.0)
|
171
|
-
rspec-expectations (~> 3.7.0)
|
172
|
-
rspec-mocks (~> 3.7.0)
|
173
|
-
rspec-core (3.7.1)
|
174
|
-
rspec-support (~> 3.7.0)
|
175
|
-
rspec-expectations (3.7.0)
|
176
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
177
|
-
rspec-support (~> 3.7.0)
|
178
|
-
rspec-mocks (3.7.0)
|
179
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
180
|
-
rspec-support (~> 3.7.0)
|
181
|
-
rspec-rails (3.7.2)
|
182
|
-
actionpack (>= 3.0)
|
183
|
-
activesupport (>= 3.0)
|
184
|
-
railties (>= 3.0)
|
185
|
-
rspec-core (~> 3.7.0)
|
186
|
-
rspec-expectations (~> 3.7.0)
|
187
|
-
rspec-mocks (~> 3.7.0)
|
188
|
-
rspec-support (~> 3.7.0)
|
189
|
-
rspec-support (3.7.1)
|
190
|
-
rspec_junit_formatter (0.3.0)
|
191
|
-
rspec-core (>= 2, < 4, != 2.12.0)
|
192
|
-
rubocop (0.55.0)
|
193
|
-
parallel (~> 1.10)
|
194
|
-
parser (>= 2.5)
|
195
|
-
powerpack (~> 0.1)
|
196
|
-
rainbow (>= 2.2.2, < 4.0)
|
197
|
-
ruby-progressbar (~> 1.7)
|
198
|
-
unicode-display_width (~> 1.0, >= 1.0.1)
|
199
|
-
ruby-progressbar (1.9.0)
|
200
|
-
ruby2ruby (2.4.1)
|
201
|
-
ruby_parser (~> 3.1)
|
202
|
-
sexp_processor (~> 4.6)
|
203
|
-
ruby_parser (3.11.0)
|
204
|
-
sexp_processor (~> 4.9)
|
205
|
-
rubyzip (1.2.1)
|
206
|
-
sass (3.5.6)
|
207
|
-
sass-listen (~> 4.0.0)
|
208
|
-
sass-listen (4.0.0)
|
209
|
-
rb-fsevent (~> 0.9, >= 0.9.4)
|
210
|
-
rb-inotify (~> 0.9, >= 0.9.7)
|
211
|
-
sass-rails (5.0.7)
|
212
|
-
railties (>= 4.0.0, < 6)
|
213
|
-
sass (~> 3.1)
|
214
|
-
sprockets (>= 2.8, < 4.0)
|
215
|
-
sprockets-rails (>= 2.0, < 4.0)
|
216
|
-
tilt (>= 1.1, < 3)
|
217
|
-
selenium-webdriver (3.11.0)
|
218
|
-
childprocess (~> 0.5)
|
219
|
-
rubyzip (~> 1.2)
|
220
|
-
sexp_processor (4.11.0)
|
221
|
-
simplecov (0.15.1)
|
222
|
-
docile (~> 1.1.0)
|
223
|
-
json (>= 1.8, < 3)
|
224
|
-
simplecov-html (~> 0.10.0)
|
225
|
-
simplecov-console (0.4.2)
|
226
|
-
ansi
|
227
|
-
hirb
|
228
|
-
simplecov
|
229
|
-
simplecov-html (0.10.2)
|
230
|
-
sprockets (3.7.1)
|
231
|
-
concurrent-ruby (~> 1.0)
|
232
|
-
rack (> 1, < 3)
|
233
|
-
sprockets-rails (3.2.1)
|
234
|
-
actionpack (>= 4.0)
|
235
|
-
activesupport (>= 4.0)
|
236
|
-
sprockets (>= 3.0.0)
|
237
|
-
sqlite3 (1.3.13)
|
238
|
-
therubyracer (0.12.3)
|
239
|
-
libv8 (~> 3.16.14.15)
|
240
|
-
ref
|
241
|
-
thor (0.20.0)
|
242
|
-
thread_safe (0.3.6)
|
243
|
-
tilt (2.0.8)
|
244
|
-
tzinfo (1.2.5)
|
245
|
-
thread_safe (~> 0.1)
|
246
|
-
unicode-display_width (1.3.2)
|
247
|
-
warden (1.2.7)
|
248
|
-
rack (>= 1.0)
|
249
|
-
websocket-driver (0.6.5)
|
250
|
-
websocket-extensions (>= 0.1.0)
|
251
|
-
websocket-extensions (0.1.3)
|
252
|
-
xpath (3.0.0)
|
253
|
-
nokogiri (~> 1.8)
|
254
|
-
|
255
|
-
PLATFORMS
|
256
|
-
ruby
|
257
|
-
|
258
|
-
DEPENDENCIES
|
259
|
-
bundler (~> 1.16, >= 1.16.1)
|
260
|
-
byebug
|
261
|
-
capybara (~> 2.16, >= 2.16.1)
|
262
|
-
capybara-screenshot (~> 1.0, >= 1.0.18)
|
263
|
-
coffee-rails (~> 4.2)
|
264
|
-
database_cleaner (~> 1.6, >= 1.6.2)
|
265
|
-
devise (~> 4.0)
|
266
|
-
devise-secure_password!
|
267
|
-
flay (~> 2.10, >= 2.10.0)
|
268
|
-
jquery-rails (~> 4.3.1)
|
269
|
-
launchy (~> 2.4, >= 2.4.3)
|
270
|
-
rails (~> 5.0.0)
|
271
|
-
rake (~> 12.3)
|
272
|
-
rspec (~> 3.7)
|
273
|
-
rspec-rails (~> 3.7)
|
274
|
-
rspec_junit_formatter (~> 0.3)
|
275
|
-
rubocop (>= 0.49.0)
|
276
|
-
ruby2ruby (~> 2.4, >= 2.4.0)
|
277
|
-
sass-rails (~> 5.0)
|
278
|
-
selenium-webdriver (~> 3.7, >= 3.7.0)
|
279
|
-
shoulda-matchers!
|
280
|
-
simplecov (~> 0.15.1)
|
281
|
-
simplecov-console (~> 0.4.2)
|
282
|
-
sqlite3 (~> 1.3, >= 1.3.13)
|
283
|
-
therubyracer (~> 0.12.3)
|
284
|
-
|
285
|
-
BUNDLED WITH
|
286
|
-
1.16.1
|