simple_token_authentication 1.13.0 → 1.14.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +13 -5
- data/Appraisals +11 -1
- data/CHANGELOG.md +13 -0
- data/gemfiles/rails_4_devise_3.gemfile +3 -0
- data/gemfiles/rails_4_devise_3.gemfile.lock +163 -0
- data/gemfiles/rails_4_devise_4.gemfile.lock +159 -0
- data/gemfiles/rails_5_devise_4.gemfile +7 -0
- data/gemfiles/rails_5_devise_4.gemfile.lock +156 -0
- data/gemfiles/ruby_1.9.3_rails_3.2.gemfile +2 -0
- data/gemfiles/ruby_1.9.3_rails_3.2.gemfile.lock +150 -0
- data/lib/simple_token_authentication.rb +9 -1
- data/lib/simple_token_authentication/sign_in_handler.rb +1 -1
- data/lib/simple_token_authentication/token_authentication_handler.rb +7 -1
- data/lib/simple_token_authentication/version.rb +1 -1
- data/spec/configuration/action_controller_callbacks_options_spec.rb +87 -4
- data/spec/configuration/fallback_to_devise_option_spec.rb +128 -4
- data/spec/configuration/header_names_option_spec.rb +4 -2
- data/spec/configuration/sign_in_token_option_spec.rb +8 -3
- data/spec/configuration/skip_devise_trackable_option_spec.rb +11 -7
- data/spec/lib/simple_token_authentication/sign_in_handler_spec.rb +10 -3
- data/spec/lib/simple_token_authentication/token_authentication_handler_spec.rb +173 -1
- metadata +51 -42
checksums.yaml
CHANGED
@@ -1,7 +1,15 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
|
2
|
+
!binary "U0hBMQ==":
|
3
|
+
metadata.gz: !binary |-
|
4
|
+
NjIyYWI3MGE1N2VkNTY2ZTRhNjNmZWZjYzVmNjgwZmJkZWU2ODI3Mg==
|
5
|
+
data.tar.gz: !binary |-
|
6
|
+
OWRkMDUxNTA3MTBlNDhiYTk3NWE2ODJiOTZiMzUwZjlkYzg5MjBiNA==
|
5
7
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
|
8
|
+
metadata.gz: !binary |-
|
9
|
+
NmQ5ZWRhNjM2MzMzY2ZhYjIyNDlkOTQ5NzQ2YzMyN2I1M2JhODc4NjkwNjM0
|
10
|
+
NGU1MTkxNWE2YzgxNzE2NTg4ZWRkZWZiYmM4OWZmNDc3Mzg3NjJlYjVlYjUz
|
11
|
+
Y2Q5ZDgwOWU4NWU1ZTdmMzZkNTM1YWYzN2FmYjI2ZDEyZjc5MjM=
|
12
|
+
data.tar.gz: !binary |-
|
13
|
+
NzZlODg5ZTk1YzY3ZDA2NmNlNjgxN2U1MGJiYTQyZjM5MDg4YjE4NmQ3NjY4
|
14
|
+
YmRhMDVhZDEzNmM1NWYwYmRmZjZlODJhMjczMDAzZWUxNWI4OGY4YWY4YWY5
|
15
|
+
NDFhYjZhNWMwY2ViNWM2Y2RjNzI0ZGE1OGM2ODM5NzczN2ExZWI=
|
data/Appraisals
CHANGED
@@ -1,10 +1,20 @@
|
|
1
|
+
appraise 'rails_5_devise_4' do
|
2
|
+
# Until Mongoid 6 is released, allow Rails 5 dependencies to be installed,
|
3
|
+
# see https://github.com/gonzalo-bulnes/simple_token_authentication/issues/231
|
4
|
+
gem 'mongoid', git: 'https://github.com/mongodb/mongoid.git', branch: 'master'
|
5
|
+
end
|
6
|
+
|
1
7
|
appraise 'rails_4_devise_3' do
|
8
|
+
gem 'actionmailer', '~> 4.0'
|
9
|
+
gem 'actionpack', '~> 4.0'
|
10
|
+
gem 'activerecord', '~> 4.0'
|
2
11
|
gem 'devise', '~> 3.2'
|
3
12
|
end
|
4
13
|
|
5
14
|
appraise 'ruby_1.9.3_rails_3.2' do
|
6
15
|
gem 'actionmailer', '>= 3.2.6', '< 4'
|
16
|
+
gem 'actionpack', '>= 3.2.6', '< 4'
|
17
|
+
gem 'activerecord', '>= 3.2.6', '< 4'
|
7
18
|
gem 'mime-types', '< 3'
|
8
19
|
gem 'tins', '< 1.7.0'
|
9
20
|
end
|
10
|
-
|
data/CHANGELOG.md
CHANGED
@@ -3,6 +3,18 @@
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
This project adheres to [Semantic Versioning](http://semver.org/).
|
5
5
|
|
6
|
+
## [1.14.0] - 2016-07-09
|
7
|
+
|
8
|
+
### Added
|
9
|
+
|
10
|
+
- Rails 5 support - with help from @chrisvel, @fighterii and @jblac
|
11
|
+
|
12
|
+
### Changed
|
13
|
+
|
14
|
+
- Travis CI now only relies on [Appraisal][appraisal] for dependency management
|
15
|
+
|
16
|
+
[appraisal]: https://github.com/thoughtbot/appraisal
|
17
|
+
|
6
18
|
## [1.13.0] - 2016-04-20
|
7
19
|
|
8
20
|
### Added
|
@@ -241,6 +253,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|
241
253
|
This [gist][gist] did refactor the Jose Valim's code into an `ActiveSupport::Concern`.
|
242
254
|
|
243
255
|
[gist]: https://gist.github.com/gonzalo-bulnes/7659739
|
256
|
+
[1.14.0]: https://github.com/gonzalo-bulnes/simple_token_authentication/compare/v1.13.0...v1.14.0
|
244
257
|
[1.13.0]: https://github.com/gonzalo-bulnes/simple_token_authentication/compare/v1.12.0...v1.13.0
|
245
258
|
[1.12.0]: https://github.com/gonzalo-bulnes/simple_token_authentication/compare/v1.11.0...v1.12.0
|
246
259
|
[1.11.0]: https://github.com/gonzalo-bulnes/simple_token_authentication/compare/v1.10.1...v1.11.0
|
@@ -0,0 +1,163 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ../
|
3
|
+
specs:
|
4
|
+
simple_token_authentication (1.14.0)
|
5
|
+
actionmailer (>= 3.2.6, < 6)
|
6
|
+
actionpack (>= 3.2.6, < 6)
|
7
|
+
devise (>= 3.2, < 6)
|
8
|
+
|
9
|
+
GEM
|
10
|
+
remote: https://rubygems.org/
|
11
|
+
specs:
|
12
|
+
actionmailer (4.2.6)
|
13
|
+
actionpack (= 4.2.6)
|
14
|
+
actionview (= 4.2.6)
|
15
|
+
activejob (= 4.2.6)
|
16
|
+
mail (~> 2.5, >= 2.5.4)
|
17
|
+
rails-dom-testing (~> 1.0, >= 1.0.5)
|
18
|
+
actionpack (4.2.6)
|
19
|
+
actionview (= 4.2.6)
|
20
|
+
activesupport (= 4.2.6)
|
21
|
+
rack (~> 1.6)
|
22
|
+
rack-test (~> 0.6.2)
|
23
|
+
rails-dom-testing (~> 1.0, >= 1.0.5)
|
24
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
25
|
+
actionview (4.2.6)
|
26
|
+
activesupport (= 4.2.6)
|
27
|
+
builder (~> 3.1)
|
28
|
+
erubis (~> 2.7.0)
|
29
|
+
rails-dom-testing (~> 1.0, >= 1.0.5)
|
30
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
31
|
+
activejob (4.2.6)
|
32
|
+
activesupport (= 4.2.6)
|
33
|
+
globalid (>= 0.3.0)
|
34
|
+
activemodel (4.2.6)
|
35
|
+
activesupport (= 4.2.6)
|
36
|
+
builder (~> 3.1)
|
37
|
+
activerecord (4.2.6)
|
38
|
+
activemodel (= 4.2.6)
|
39
|
+
activesupport (= 4.2.6)
|
40
|
+
arel (~> 6.0)
|
41
|
+
activesupport (4.2.6)
|
42
|
+
i18n (~> 0.7)
|
43
|
+
json (~> 1.7, >= 1.7.7)
|
44
|
+
minitest (~> 5.1)
|
45
|
+
thread_safe (~> 0.3, >= 0.3.4)
|
46
|
+
tzinfo (~> 1.1)
|
47
|
+
appraisal (2.1.0)
|
48
|
+
bundler
|
49
|
+
rake
|
50
|
+
thor (>= 0.14.0)
|
51
|
+
arel (6.0.3)
|
52
|
+
bcrypt (3.1.11)
|
53
|
+
bson (3.2.6)
|
54
|
+
builder (3.2.2)
|
55
|
+
coderay (1.1.1)
|
56
|
+
connection_pool (2.2.0)
|
57
|
+
devise (3.5.10)
|
58
|
+
bcrypt (~> 3.0)
|
59
|
+
orm_adapter (~> 0.1)
|
60
|
+
railties (>= 3.2.6, < 5)
|
61
|
+
responders
|
62
|
+
thread_safe (~> 0.1)
|
63
|
+
warden (~> 1.2.3)
|
64
|
+
diff-lcs (1.2.5)
|
65
|
+
erubis (2.7.0)
|
66
|
+
globalid (0.3.6)
|
67
|
+
activesupport (>= 4.1.0)
|
68
|
+
i18n (0.7.0)
|
69
|
+
inch (0.7.1)
|
70
|
+
pry
|
71
|
+
sparkr (>= 0.2.0)
|
72
|
+
term-ansicolor
|
73
|
+
yard (~> 0.8.7.5)
|
74
|
+
json (1.8.3)
|
75
|
+
loofah (2.0.3)
|
76
|
+
nokogiri (>= 1.5.9)
|
77
|
+
mail (2.6.4)
|
78
|
+
mime-types (>= 1.16, < 4)
|
79
|
+
method_source (0.8.2)
|
80
|
+
mime-types (3.1)
|
81
|
+
mime-types-data (~> 3.2015)
|
82
|
+
mime-types-data (3.2016.0521)
|
83
|
+
mini_portile2 (2.0.0)
|
84
|
+
minitest (5.9.0)
|
85
|
+
mongoid (4.0.2)
|
86
|
+
activemodel (~> 4.0)
|
87
|
+
moped (~> 2.0.0)
|
88
|
+
origin (~> 2.1)
|
89
|
+
tzinfo (>= 0.3.37)
|
90
|
+
moped (2.0.7)
|
91
|
+
bson (~> 3.0)
|
92
|
+
connection_pool (~> 2.0)
|
93
|
+
optionable (~> 0.2.0)
|
94
|
+
nokogiri (1.6.7.2)
|
95
|
+
mini_portile2 (~> 2.0.0.rc2)
|
96
|
+
optionable (0.2.0)
|
97
|
+
origin (2.2.0)
|
98
|
+
orm_adapter (0.5.0)
|
99
|
+
pry (0.10.3)
|
100
|
+
coderay (~> 1.1.0)
|
101
|
+
method_source (~> 0.8.1)
|
102
|
+
slop (~> 3.4)
|
103
|
+
rack (1.6.4)
|
104
|
+
rack-test (0.6.3)
|
105
|
+
rack (>= 1.0)
|
106
|
+
rails-deprecated_sanitizer (1.0.3)
|
107
|
+
activesupport (>= 4.2.0.alpha)
|
108
|
+
rails-dom-testing (1.0.7)
|
109
|
+
activesupport (>= 4.2.0.beta, < 5.0)
|
110
|
+
nokogiri (~> 1.6.0)
|
111
|
+
rails-deprecated_sanitizer (>= 1.0.1)
|
112
|
+
rails-html-sanitizer (1.0.3)
|
113
|
+
loofah (~> 2.0)
|
114
|
+
railties (4.2.6)
|
115
|
+
actionpack (= 4.2.6)
|
116
|
+
activesupport (= 4.2.6)
|
117
|
+
rake (>= 0.8.7)
|
118
|
+
thor (>= 0.18.1, < 2.0)
|
119
|
+
rake (11.2.2)
|
120
|
+
responders (2.1.2)
|
121
|
+
railties (>= 4.2.0, < 5.1)
|
122
|
+
rspec (3.5.0)
|
123
|
+
rspec-core (~> 3.5.0)
|
124
|
+
rspec-expectations (~> 3.5.0)
|
125
|
+
rspec-mocks (~> 3.5.0)
|
126
|
+
rspec-core (3.5.0)
|
127
|
+
rspec-support (~> 3.5.0)
|
128
|
+
rspec-expectations (3.5.0)
|
129
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
130
|
+
rspec-support (~> 3.5.0)
|
131
|
+
rspec-mocks (3.5.0)
|
132
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
133
|
+
rspec-support (~> 3.5.0)
|
134
|
+
rspec-support (3.5.0)
|
135
|
+
slop (3.6.0)
|
136
|
+
sparkr (0.4.1)
|
137
|
+
term-ansicolor (1.3.2)
|
138
|
+
tins (~> 1.0)
|
139
|
+
thor (0.19.1)
|
140
|
+
thread_safe (0.3.5)
|
141
|
+
tins (1.10.2)
|
142
|
+
tzinfo (1.2.2)
|
143
|
+
thread_safe (~> 0.1)
|
144
|
+
warden (1.2.6)
|
145
|
+
rack (>= 1.0)
|
146
|
+
yard (0.8.7.6)
|
147
|
+
|
148
|
+
PLATFORMS
|
149
|
+
ruby
|
150
|
+
|
151
|
+
DEPENDENCIES
|
152
|
+
actionmailer (~> 4.0)
|
153
|
+
actionpack (~> 4.0)
|
154
|
+
activerecord (~> 4.0)
|
155
|
+
appraisal (~> 2.0)
|
156
|
+
devise (~> 3.2)
|
157
|
+
inch (~> 0.4)
|
158
|
+
mongoid (>= 3.1.0, < 7)
|
159
|
+
rspec (~> 3.0)
|
160
|
+
simple_token_authentication!
|
161
|
+
|
162
|
+
BUNDLED WITH
|
163
|
+
1.11.2
|
@@ -0,0 +1,159 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ../
|
3
|
+
specs:
|
4
|
+
simple_token_authentication (1.13.0)
|
5
|
+
actionmailer (>= 3.2.6, < 5)
|
6
|
+
actionpack (>= 3.2.6, < 5)
|
7
|
+
devise (>= 3.2, < 5)
|
8
|
+
|
9
|
+
GEM
|
10
|
+
remote: https://rubygems.org/
|
11
|
+
specs:
|
12
|
+
actionmailer (4.2.6)
|
13
|
+
actionpack (= 4.2.6)
|
14
|
+
actionview (= 4.2.6)
|
15
|
+
activejob (= 4.2.6)
|
16
|
+
mail (~> 2.5, >= 2.5.4)
|
17
|
+
rails-dom-testing (~> 1.0, >= 1.0.5)
|
18
|
+
actionpack (4.2.6)
|
19
|
+
actionview (= 4.2.6)
|
20
|
+
activesupport (= 4.2.6)
|
21
|
+
rack (~> 1.6)
|
22
|
+
rack-test (~> 0.6.2)
|
23
|
+
rails-dom-testing (~> 1.0, >= 1.0.5)
|
24
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
25
|
+
actionview (4.2.6)
|
26
|
+
activesupport (= 4.2.6)
|
27
|
+
builder (~> 3.1)
|
28
|
+
erubis (~> 2.7.0)
|
29
|
+
rails-dom-testing (~> 1.0, >= 1.0.5)
|
30
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
31
|
+
activejob (4.2.6)
|
32
|
+
activesupport (= 4.2.6)
|
33
|
+
globalid (>= 0.3.0)
|
34
|
+
activemodel (4.2.6)
|
35
|
+
activesupport (= 4.2.6)
|
36
|
+
builder (~> 3.1)
|
37
|
+
activerecord (4.2.6)
|
38
|
+
activemodel (= 4.2.6)
|
39
|
+
activesupport (= 4.2.6)
|
40
|
+
arel (~> 6.0)
|
41
|
+
activesupport (4.2.6)
|
42
|
+
i18n (~> 0.7)
|
43
|
+
json (~> 1.7, >= 1.7.7)
|
44
|
+
minitest (~> 5.1)
|
45
|
+
thread_safe (~> 0.3, >= 0.3.4)
|
46
|
+
tzinfo (~> 1.1)
|
47
|
+
appraisal (2.1.0)
|
48
|
+
bundler
|
49
|
+
rake
|
50
|
+
thor (>= 0.14.0)
|
51
|
+
arel (6.0.3)
|
52
|
+
bcrypt (3.1.11)
|
53
|
+
bson (3.2.6)
|
54
|
+
builder (3.2.2)
|
55
|
+
coderay (1.1.1)
|
56
|
+
connection_pool (2.2.0)
|
57
|
+
devise (4.0.0)
|
58
|
+
bcrypt (~> 3.0)
|
59
|
+
orm_adapter (~> 0.1)
|
60
|
+
railties (>= 4.1.0, < 5.1)
|
61
|
+
responders
|
62
|
+
warden (~> 1.2.3)
|
63
|
+
diff-lcs (1.2.5)
|
64
|
+
erubis (2.7.0)
|
65
|
+
globalid (0.3.6)
|
66
|
+
activesupport (>= 4.1.0)
|
67
|
+
i18n (0.7.0)
|
68
|
+
inch (0.7.1)
|
69
|
+
pry
|
70
|
+
sparkr (>= 0.2.0)
|
71
|
+
term-ansicolor
|
72
|
+
yard (~> 0.8.7.5)
|
73
|
+
json (1.8.3)
|
74
|
+
loofah (2.0.3)
|
75
|
+
nokogiri (>= 1.5.9)
|
76
|
+
mail (2.6.4)
|
77
|
+
mime-types (>= 1.16, < 4)
|
78
|
+
method_source (0.8.2)
|
79
|
+
mime-types (3.1)
|
80
|
+
mime-types-data (~> 3.2015)
|
81
|
+
mime-types-data (3.2016.0521)
|
82
|
+
mini_portile2 (2.0.0)
|
83
|
+
minitest (5.9.0)
|
84
|
+
mongoid (4.0.2)
|
85
|
+
activemodel (~> 4.0)
|
86
|
+
moped (~> 2.0.0)
|
87
|
+
origin (~> 2.1)
|
88
|
+
tzinfo (>= 0.3.37)
|
89
|
+
moped (2.0.7)
|
90
|
+
bson (~> 3.0)
|
91
|
+
connection_pool (~> 2.0)
|
92
|
+
optionable (~> 0.2.0)
|
93
|
+
nokogiri (1.6.7.2)
|
94
|
+
mini_portile2 (~> 2.0.0.rc2)
|
95
|
+
optionable (0.2.0)
|
96
|
+
origin (2.2.0)
|
97
|
+
orm_adapter (0.5.0)
|
98
|
+
pry (0.10.3)
|
99
|
+
coderay (~> 1.1.0)
|
100
|
+
method_source (~> 0.8.1)
|
101
|
+
slop (~> 3.4)
|
102
|
+
rack (1.6.4)
|
103
|
+
rack-test (0.6.3)
|
104
|
+
rack (>= 1.0)
|
105
|
+
rails-deprecated_sanitizer (1.0.3)
|
106
|
+
activesupport (>= 4.2.0.alpha)
|
107
|
+
rails-dom-testing (1.0.7)
|
108
|
+
activesupport (>= 4.2.0.beta, < 5.0)
|
109
|
+
nokogiri (~> 1.6.0)
|
110
|
+
rails-deprecated_sanitizer (>= 1.0.1)
|
111
|
+
rails-html-sanitizer (1.0.3)
|
112
|
+
loofah (~> 2.0)
|
113
|
+
railties (4.2.6)
|
114
|
+
actionpack (= 4.2.6)
|
115
|
+
activesupport (= 4.2.6)
|
116
|
+
rake (>= 0.8.7)
|
117
|
+
thor (>= 0.18.1, < 2.0)
|
118
|
+
rake (11.2.2)
|
119
|
+
responders (2.1.2)
|
120
|
+
railties (>= 4.2.0, < 5.1)
|
121
|
+
rspec (3.5.0)
|
122
|
+
rspec-core (~> 3.5.0)
|
123
|
+
rspec-expectations (~> 3.5.0)
|
124
|
+
rspec-mocks (~> 3.5.0)
|
125
|
+
rspec-core (3.5.0)
|
126
|
+
rspec-support (~> 3.5.0)
|
127
|
+
rspec-expectations (3.5.0)
|
128
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
129
|
+
rspec-support (~> 3.5.0)
|
130
|
+
rspec-mocks (3.5.0)
|
131
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
132
|
+
rspec-support (~> 3.5.0)
|
133
|
+
rspec-support (3.5.0)
|
134
|
+
slop (3.6.0)
|
135
|
+
sparkr (0.4.1)
|
136
|
+
term-ansicolor (1.3.2)
|
137
|
+
tins (~> 1.0)
|
138
|
+
thor (0.19.1)
|
139
|
+
thread_safe (0.3.5)
|
140
|
+
tins (1.10.2)
|
141
|
+
tzinfo (1.2.2)
|
142
|
+
thread_safe (~> 0.1)
|
143
|
+
warden (1.2.6)
|
144
|
+
rack (>= 1.0)
|
145
|
+
yard (0.8.7.6)
|
146
|
+
|
147
|
+
PLATFORMS
|
148
|
+
ruby
|
149
|
+
|
150
|
+
DEPENDENCIES
|
151
|
+
activerecord (>= 3.2.6, < 5)
|
152
|
+
appraisal (~> 2.0)
|
153
|
+
inch (~> 0.4)
|
154
|
+
mongoid (>= 3.1.0, < 5)
|
155
|
+
rspec (~> 3.0)
|
156
|
+
simple_token_authentication!
|
157
|
+
|
158
|
+
BUNDLED WITH
|
159
|
+
1.11.2
|
@@ -0,0 +1,156 @@
|
|
1
|
+
GIT
|
2
|
+
remote: https://github.com/mongodb/mongoid.git
|
3
|
+
revision: f539cc6acd284bc87b64f6f043f74897d72387ad
|
4
|
+
branch: master
|
5
|
+
specs:
|
6
|
+
mongoid (6.0.0)
|
7
|
+
activemodel (~> 5.0)
|
8
|
+
mongo (~> 2.2)
|
9
|
+
|
10
|
+
PATH
|
11
|
+
remote: ../
|
12
|
+
specs:
|
13
|
+
simple_token_authentication (1.14.0)
|
14
|
+
actionmailer (>= 3.2.6, < 6)
|
15
|
+
actionpack (>= 3.2.6, < 6)
|
16
|
+
devise (>= 3.2, < 6)
|
17
|
+
|
18
|
+
GEM
|
19
|
+
remote: https://rubygems.org/
|
20
|
+
specs:
|
21
|
+
actionmailer (5.0.0)
|
22
|
+
actionpack (= 5.0.0)
|
23
|
+
actionview (= 5.0.0)
|
24
|
+
activejob (= 5.0.0)
|
25
|
+
mail (~> 2.5, >= 2.5.4)
|
26
|
+
rails-dom-testing (~> 2.0)
|
27
|
+
actionpack (5.0.0)
|
28
|
+
actionview (= 5.0.0)
|
29
|
+
activesupport (= 5.0.0)
|
30
|
+
rack (~> 2.0)
|
31
|
+
rack-test (~> 0.6.3)
|
32
|
+
rails-dom-testing (~> 2.0)
|
33
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
34
|
+
actionview (5.0.0)
|
35
|
+
activesupport (= 5.0.0)
|
36
|
+
builder (~> 3.1)
|
37
|
+
erubis (~> 2.7.0)
|
38
|
+
rails-dom-testing (~> 2.0)
|
39
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
40
|
+
activejob (5.0.0)
|
41
|
+
activesupport (= 5.0.0)
|
42
|
+
globalid (>= 0.3.6)
|
43
|
+
activemodel (5.0.0)
|
44
|
+
activesupport (= 5.0.0)
|
45
|
+
activerecord (5.0.0)
|
46
|
+
activemodel (= 5.0.0)
|
47
|
+
activesupport (= 5.0.0)
|
48
|
+
arel (~> 7.0)
|
49
|
+
activesupport (5.0.0)
|
50
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
51
|
+
i18n (~> 0.7)
|
52
|
+
minitest (~> 5.1)
|
53
|
+
tzinfo (~> 1.1)
|
54
|
+
appraisal (2.1.0)
|
55
|
+
bundler
|
56
|
+
rake
|
57
|
+
thor (>= 0.14.0)
|
58
|
+
arel (7.0.0)
|
59
|
+
bcrypt (3.1.11)
|
60
|
+
bson (4.1.1)
|
61
|
+
builder (3.2.2)
|
62
|
+
coderay (1.1.1)
|
63
|
+
concurrent-ruby (1.0.2)
|
64
|
+
devise (4.2.0)
|
65
|
+
bcrypt (~> 3.0)
|
66
|
+
orm_adapter (~> 0.1)
|
67
|
+
railties (>= 4.1.0, < 5.1)
|
68
|
+
responders
|
69
|
+
warden (~> 1.2.3)
|
70
|
+
diff-lcs (1.2.5)
|
71
|
+
erubis (2.7.0)
|
72
|
+
globalid (0.3.6)
|
73
|
+
activesupport (>= 4.1.0)
|
74
|
+
i18n (0.7.0)
|
75
|
+
inch (0.7.1)
|
76
|
+
pry
|
77
|
+
sparkr (>= 0.2.0)
|
78
|
+
term-ansicolor
|
79
|
+
yard (~> 0.8.7.5)
|
80
|
+
loofah (2.0.3)
|
81
|
+
nokogiri (>= 1.5.9)
|
82
|
+
mail (2.6.4)
|
83
|
+
mime-types (>= 1.16, < 4)
|
84
|
+
method_source (0.8.2)
|
85
|
+
mime-types (3.1)
|
86
|
+
mime-types-data (~> 3.2015)
|
87
|
+
mime-types-data (3.2016.0521)
|
88
|
+
mini_portile2 (2.1.0)
|
89
|
+
minitest (5.9.0)
|
90
|
+
mongo (2.2.5)
|
91
|
+
bson (~> 4.0)
|
92
|
+
nokogiri (1.6.8)
|
93
|
+
mini_portile2 (~> 2.1.0)
|
94
|
+
pkg-config (~> 1.1.7)
|
95
|
+
orm_adapter (0.5.0)
|
96
|
+
pkg-config (1.1.7)
|
97
|
+
pry (0.10.3)
|
98
|
+
coderay (~> 1.1.0)
|
99
|
+
method_source (~> 0.8.1)
|
100
|
+
slop (~> 3.4)
|
101
|
+
rack (2.0.1)
|
102
|
+
rack-test (0.6.3)
|
103
|
+
rack (>= 1.0)
|
104
|
+
rails-dom-testing (2.0.1)
|
105
|
+
activesupport (>= 4.2.0, < 6.0)
|
106
|
+
nokogiri (~> 1.6.0)
|
107
|
+
rails-html-sanitizer (1.0.3)
|
108
|
+
loofah (~> 2.0)
|
109
|
+
railties (5.0.0)
|
110
|
+
actionpack (= 5.0.0)
|
111
|
+
activesupport (= 5.0.0)
|
112
|
+
method_source
|
113
|
+
rake (>= 0.8.7)
|
114
|
+
thor (>= 0.18.1, < 2.0)
|
115
|
+
rake (11.2.2)
|
116
|
+
responders (2.2.0)
|
117
|
+
railties (>= 4.2.0, < 5.1)
|
118
|
+
rspec (3.5.0)
|
119
|
+
rspec-core (~> 3.5.0)
|
120
|
+
rspec-expectations (~> 3.5.0)
|
121
|
+
rspec-mocks (~> 3.5.0)
|
122
|
+
rspec-core (3.5.1)
|
123
|
+
rspec-support (~> 3.5.0)
|
124
|
+
rspec-expectations (3.5.0)
|
125
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
126
|
+
rspec-support (~> 3.5.0)
|
127
|
+
rspec-mocks (3.5.0)
|
128
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
129
|
+
rspec-support (~> 3.5.0)
|
130
|
+
rspec-support (3.5.0)
|
131
|
+
slop (3.6.0)
|
132
|
+
sparkr (0.4.1)
|
133
|
+
term-ansicolor (1.3.2)
|
134
|
+
tins (~> 1.0)
|
135
|
+
thor (0.19.1)
|
136
|
+
thread_safe (0.3.5)
|
137
|
+
tins (1.10.2)
|
138
|
+
tzinfo (1.2.2)
|
139
|
+
thread_safe (~> 0.1)
|
140
|
+
warden (1.2.6)
|
141
|
+
rack (>= 1.0)
|
142
|
+
yard (0.8.7.6)
|
143
|
+
|
144
|
+
PLATFORMS
|
145
|
+
ruby
|
146
|
+
|
147
|
+
DEPENDENCIES
|
148
|
+
activerecord (>= 3.2.6, < 6)
|
149
|
+
appraisal (~> 2.0)
|
150
|
+
inch (~> 0.4)
|
151
|
+
mongoid!
|
152
|
+
rspec (~> 3.0)
|
153
|
+
simple_token_authentication!
|
154
|
+
|
155
|
+
BUNDLED WITH
|
156
|
+
1.11.2
|