devise-authy 1.7.0 → 1.8.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 +5 -13
- data/.travis.yml +4 -0
- data/Gemfile +29 -13
- data/README.md +8 -6
- data/VERSION +1 -1
- data/app/controllers/devise/devise_authy_controller.rb +3 -3
- data/authy-devise-demo/Gemfile +39 -28
- data/authy-devise-demo/Gemfile.lock +166 -113
- data/authy-devise-demo/README.md +1 -1
- data/authy-devise-demo/app/controllers/welcome_controller.rb +2 -2
- data/authy-devise-demo/app/models/admin.rb +0 -3
- data/authy-devise-demo/app/models/user.rb +0 -3
- data/authy-devise-demo/config/application.rb +5 -41
- data/authy-devise-demo/config/environments/development.rb +21 -17
- data/authy-devise-demo/config/environments/production.rb +45 -33
- data/authy-devise-demo/config/environments/test.rb +18 -13
- data/authy-devise-demo/config/initializers/session_store.rb +1 -1
- data/authy-devise-demo/config/locales/devise.authy.en.yml +4 -4
- data/authy-devise-demo/config/secrets.yml +22 -0
- data/authy-devise-demo/db/migrate/20160906221739_add_sessions_table.rb +12 -0
- data/authy-devise-demo/db/schema.rb +32 -22
- data/config/locales/en.yml +4 -4
- data/devise-authy.gemspec +44 -47
- data/lib/devise-authy/controllers/helpers.rb +1 -1
- data/lib/devise-authy/controllers/view_helpers.rb +8 -2
- data/lib/devise-authy/mapping.rb +3 -7
- data/lib/devise-authy/models/authy_authenticatable.rb +1 -1
- data/lib/devise-authy/rails.rb +1 -1
- data/lib/generators/devise_authy/install_generator.rb +7 -0
- data/spec/controllers/devise_authy_controller_spec.rb +61 -60
- data/spec/controllers/passwords_controller_spec.rb +15 -15
- data/spec/features/authy_authenticatable_spec.rb +23 -23
- data/spec/features/authy_lockable_spec.rb +6 -6
- data/spec/generators_spec.rb +11 -9
- data/spec/models/authy_authenticatable_spec.rb +3 -3
- data/spec/models/authy_lockable_spec.rb +7 -7
- data/spec/rails-app/Gemfile +4 -3
- data/spec/rails-app/Gemfile.lock +116 -91
- data/spec/rails-app/app/controllers/welcome_controller.rb +1 -1
- data/spec/rails-app/app/models/user.rb +0 -3
- data/spec/rails-app/config/application.rb +15 -34
- data/spec/rails-app/config/environments/development.rb +21 -17
- data/spec/rails-app/config/environments/production.rb +45 -33
- data/spec/rails-app/config/environments/test.rb +18 -13
- data/spec/rails-app/config/secrets.yml +22 -0
- data/spec/routing/routes_spec.rb +7 -7
- data/spec/spec_helper.rb +17 -0
- data/spec/support/helpers.rb +3 -1
- metadata +34 -59
- data/Gemfile.lock +0 -194
checksums.yaml
CHANGED
@@ -1,15 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
|
5
|
-
data.tar.gz: !binary |-
|
6
|
-
ODNmNmI0Yjc1ZjgzNTRjYmM3MDE2MDNkNmZiNTFhMTg0ZjFhYTI3ZQ==
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 66007a83c06fbc01e57550716f8b581e098c50c4
|
4
|
+
data.tar.gz: 8d4d4a2b5dcd8476a5a080b3b753b53127d08ded
|
7
5
|
SHA512:
|
8
|
-
metadata.gz:
|
9
|
-
|
10
|
-
Y2M4ZTYxZDZhOWM1MmE2NTM0ZmYwMTcwNGUzYjhmOTI3ZWE1MDZkZmUwODRl
|
11
|
-
Y2MxNWQ3ZGM0MDBkZWYwNDNhYzA5NmVhODk1MzlhODdlMzBjNWE=
|
12
|
-
data.tar.gz: !binary |-
|
13
|
-
OTg1MWYxMTMyYTI0YmZkYjJkNjU0NWY2YmZmMTJmNjFmZmUwYTlmOGZhZmYy
|
14
|
-
NDBjNmI2ZDI4MzIwNWIyMTA1ODU0NmQyYmQ2NGE0MDc5ZDg5ZDFjOWZiOTk2
|
15
|
-
ZDdiZGYxN2RiODJhMGJjMmUxMTc2OTc2M2UyOWI2NDhiZTNlMmE=
|
6
|
+
metadata.gz: 10f168bc13a07a9d34bf0228cf34202da390f5776cee20bbb14efb3b0f6e9bd5e84a7f0bcf60e0dd09395abe686fbd68ddfccd4ff16492c91985f838e87e8c73
|
7
|
+
data.tar.gz: c820d2664e45ab9ce4a460228bde73ca17b991bfb9775c1dd2851987032ba559d3396adb2b6e03aeda800b4ea731c09dfc8247233059de82bbacf98599abb706
|
data/.travis.yml
ADDED
data/Gemfile
CHANGED
@@ -1,24 +1,40 @@
|
|
1
|
-
source
|
1
|
+
source 'https://rubygems.org'
|
2
2
|
|
3
|
-
gem
|
3
|
+
gem 'devise', '>= 3.0.0'
|
4
4
|
gem 'authy'
|
5
5
|
|
6
6
|
group :development do
|
7
|
-
gem
|
8
|
-
gem
|
9
|
-
gem
|
10
|
-
gem
|
11
|
-
gem
|
12
|
-
gem
|
13
|
-
gem
|
14
|
-
gem "jquery-rails"
|
15
|
-
gem "pry"
|
7
|
+
gem 'rspec', '> 3.0.0'
|
8
|
+
gem 'yard'
|
9
|
+
gem 'rdoc'
|
10
|
+
gem 'bundler'
|
11
|
+
gem 'jeweler', '>= 2.0.1'
|
12
|
+
gem 'simplecov'
|
13
|
+
gem 'byebug'
|
16
14
|
end
|
17
15
|
|
18
16
|
group :test do
|
19
|
-
gem
|
20
|
-
gem
|
17
|
+
gem 'rails', '~> 4.2.7'
|
18
|
+
gem 'sqlite3'
|
19
|
+
|
20
|
+
# Use SCSS for stylesheets
|
21
|
+
gem 'sass-rails', '~> 5.0'
|
22
|
+
|
23
|
+
# Use Uglifier as compressor for JavaScript assets
|
24
|
+
gem 'uglifier', '>= 1.3.0'
|
25
|
+
|
26
|
+
# Use CoffeeScript for .coffee assets and views
|
27
|
+
gem 'coffee-rails', '~> 4.1.0'
|
28
|
+
|
29
|
+
# Use jquery as the JavaScript library
|
30
|
+
gem 'jquery-rails'
|
31
|
+
|
32
|
+
gem 'launchy'
|
21
33
|
gem 'rspec-rails'
|
22
34
|
gem 'database_cleaner'
|
23
35
|
gem 'capybara'
|
36
|
+
gem 'test-unit'
|
24
37
|
end
|
38
|
+
|
39
|
+
# bundle exec rake doc:rails generates the API under doc/api.
|
40
|
+
gem 'sdoc', '~> 0.4.0', group: :doc
|
data/README.md
CHANGED
@@ -13,15 +13,12 @@ See [https://github.com/authy/authy-devise/tree/master/authy-devise-demo](https:
|
|
13
13
|
|
14
14
|
## Getting started
|
15
15
|
|
16
|
-
First
|
16
|
+
First get your Authy API key from [https://www.authy.com/signup](https://www.authy.com/signup). We recommend you store your API key as an environment variable.
|
17
17
|
|
18
|
-
```
|
19
|
-
|
20
|
-
Authy.api_uri = 'https://api.authy.com/'
|
18
|
+
```bash
|
19
|
+
$ export AUTHY_API_KEY=YOUR_AUTHY_API_KEY
|
21
20
|
```
|
22
21
|
|
23
|
-
You can get the `AUTHY_API_KEY` at [https://www.authy.com/signup](https://www.authy.com/signup)
|
24
|
-
|
25
22
|
Next add the gem to your Gemfile:
|
26
23
|
|
27
24
|
```ruby
|
@@ -82,6 +79,11 @@ If you want to customise your views, you can modify the files that are located a
|
|
82
79
|
app/views/devise/devise_authy/verify_authy.html.erb
|
83
80
|
app/views/devise/devise_authy/verify_authy_installation.html.erb
|
84
81
|
|
82
|
+
### Request a phone call
|
83
|
+
|
84
|
+
The default views come with a button to force a request for an SMS message. You can also add a button that will request a phone call instead. Simply add the helper method to your view:
|
85
|
+
|
86
|
+
<%= authy_request_phone_call_link %>
|
85
87
|
|
86
88
|
## Custom Redirect Paths (eg. using modules)
|
87
89
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.8.0
|
@@ -1,11 +1,11 @@
|
|
1
1
|
class Devise::DeviseAuthyController < DeviseController
|
2
|
-
|
2
|
+
prepend_before_action :find_resource, :only => [
|
3
3
|
:request_phone_call, :request_sms
|
4
4
|
]
|
5
|
-
|
5
|
+
prepend_before_action :find_resource_and_require_password_checked, :only => [
|
6
6
|
:GET_verify_authy, :POST_verify_authy
|
7
7
|
]
|
8
|
-
|
8
|
+
prepend_before_action :authenticate_scope!, :only => [
|
9
9
|
:GET_enable_authy, :POST_enable_authy,
|
10
10
|
:GET_verify_authy_installation, :POST_verify_authy_installation,
|
11
11
|
:POST_disable_authy
|
data/authy-devise-demo/Gemfile
CHANGED
@@ -1,40 +1,51 @@
|
|
1
1
|
source 'https://rubygems.org'
|
2
2
|
|
3
|
-
gem 'rails', '
|
3
|
+
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
|
4
|
+
gem 'rails', '4.2.7'
|
4
5
|
|
5
|
-
|
6
|
-
# gem 'rails', :git => 'git://github.com/rails/rails.git'
|
7
|
-
|
8
|
-
gem 'sqlite3'
|
9
|
-
gem 'devise', '2.1.3'
|
6
|
+
gem 'devise', '>= 3.0.0'
|
10
7
|
gem 'devise-authy', :path => ".."
|
11
|
-
gem 'pry'
|
12
|
-
|
13
|
-
# Gems used only for assets and not required
|
14
|
-
# in production environments by default.
|
15
|
-
group :assets do
|
16
|
-
gem 'sass-rails', '~> 3.2.3'
|
17
|
-
gem 'coffee-rails', '~> 3.2.1'
|
18
|
-
|
19
|
-
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
|
20
|
-
# gem 'therubyracer', :platforms => :ruby
|
21
|
-
|
22
|
-
gem 'uglifier', '>= 1.0.3'
|
23
|
-
end
|
24
8
|
|
9
|
+
# Use sqlite3 as the database for Active Record
|
10
|
+
gem 'sqlite3'
|
11
|
+
# Use SCSS for stylesheets
|
12
|
+
gem 'sass-rails', '~> 5.0'
|
13
|
+
# Use Uglifier as compressor for JavaScript assets
|
14
|
+
gem 'uglifier', '>= 1.3.0'
|
15
|
+
# Use CoffeeScript for .coffee assets and views
|
16
|
+
gem 'coffee-rails', '~> 4.1.0'
|
17
|
+
# See https://github.com/rails/execjs#readme for more supported runtimes
|
18
|
+
# gem 'therubyracer', platforms: :ruby
|
19
|
+
|
20
|
+
# Use jquery as the JavaScript library
|
25
21
|
gem 'jquery-rails'
|
22
|
+
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
|
23
|
+
gem 'turbolinks'
|
24
|
+
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
|
25
|
+
gem 'jbuilder', '~> 2.0'
|
26
|
+
# bundle exec rake doc:rails generates the API under doc/api.
|
27
|
+
gem 'sdoc', '~> 0.4.0', group: :doc
|
26
28
|
|
27
|
-
|
28
|
-
# gem 'bcrypt-ruby', '~> 3.0.0'
|
29
|
+
gem 'activerecord-session_store'
|
29
30
|
|
30
|
-
#
|
31
|
-
# gem '
|
31
|
+
# Use ActiveModel has_secure_password
|
32
|
+
# gem 'bcrypt', '~> 3.1.7'
|
32
33
|
|
33
|
-
# Use
|
34
|
+
# Use Unicorn as the app server
|
34
35
|
# gem 'unicorn'
|
35
36
|
|
36
|
-
#
|
37
|
-
# gem 'capistrano'
|
37
|
+
# Use Capistrano for deployment
|
38
|
+
# gem 'capistrano-rails', group: :development
|
39
|
+
|
40
|
+
group :development, :test do
|
41
|
+
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
|
42
|
+
gem 'byebug'
|
43
|
+
end
|
38
44
|
|
39
|
-
|
40
|
-
#
|
45
|
+
group :development do
|
46
|
+
# Access an IRB console on exception pages or by using <%= console %> in views
|
47
|
+
gem 'web-console', '~> 2.0'
|
48
|
+
|
49
|
+
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
|
50
|
+
gem 'spring'
|
51
|
+
end
|
@@ -1,141 +1,194 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
devise-authy (1.
|
4
|
+
devise-authy (1.7.0)
|
5
5
|
authy
|
6
6
|
devise
|
7
7
|
|
8
8
|
GEM
|
9
9
|
remote: https://rubygems.org/
|
10
10
|
specs:
|
11
|
-
actionmailer (
|
12
|
-
actionpack (=
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
11
|
+
actionmailer (4.2.7)
|
12
|
+
actionpack (= 4.2.7)
|
13
|
+
actionview (= 4.2.7)
|
14
|
+
activejob (= 4.2.7)
|
15
|
+
mail (~> 2.5, >= 2.5.4)
|
16
|
+
rails-dom-testing (~> 1.0, >= 1.0.5)
|
17
|
+
actionpack (4.2.7)
|
18
|
+
actionview (= 4.2.7)
|
19
|
+
activesupport (= 4.2.7)
|
20
|
+
rack (~> 1.6)
|
21
|
+
rack-test (~> 0.6.2)
|
22
|
+
rails-dom-testing (~> 1.0, >= 1.0.5)
|
23
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
24
|
+
actionview (4.2.7)
|
25
|
+
activesupport (= 4.2.7)
|
26
|
+
builder (~> 3.1)
|
18
27
|
erubis (~> 2.7.0)
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
activemodel (
|
25
|
-
activesupport (=
|
26
|
-
builder (~> 3.
|
27
|
-
activerecord (
|
28
|
-
activemodel (=
|
29
|
-
activesupport (=
|
30
|
-
arel (~>
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
28
|
+
rails-dom-testing (~> 1.0, >= 1.0.5)
|
29
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
30
|
+
activejob (4.2.7)
|
31
|
+
activesupport (= 4.2.7)
|
32
|
+
globalid (>= 0.3.0)
|
33
|
+
activemodel (4.2.7)
|
34
|
+
activesupport (= 4.2.7)
|
35
|
+
builder (~> 3.1)
|
36
|
+
activerecord (4.2.7)
|
37
|
+
activemodel (= 4.2.7)
|
38
|
+
activesupport (= 4.2.7)
|
39
|
+
arel (~> 6.0)
|
40
|
+
activerecord-session_store (1.0.0)
|
41
|
+
actionpack (>= 4.0, < 5.1)
|
42
|
+
activerecord (>= 4.0, < 5.1)
|
43
|
+
multi_json (~> 1.11, >= 1.11.2)
|
44
|
+
rack (>= 1.5.2, < 3)
|
45
|
+
railties (>= 4.0, < 5.1)
|
46
|
+
activesupport (4.2.7)
|
47
|
+
i18n (~> 0.7)
|
48
|
+
json (~> 1.7, >= 1.7.7)
|
49
|
+
minitest (~> 5.1)
|
50
|
+
thread_safe (~> 0.3, >= 0.3.4)
|
51
|
+
tzinfo (~> 1.1)
|
52
|
+
arel (6.0.3)
|
53
|
+
authy (2.7.1)
|
54
|
+
httpclient (>= 2.5.3.3)
|
55
|
+
bcrypt (3.1.11)
|
56
|
+
binding_of_caller (0.7.2)
|
57
|
+
debug_inspector (>= 0.0.1)
|
58
|
+
builder (3.2.2)
|
59
|
+
byebug (9.0.5)
|
60
|
+
coffee-rails (4.1.1)
|
45
61
|
coffee-script (>= 2.2.0)
|
46
|
-
railties (
|
47
|
-
coffee-script (2.
|
62
|
+
railties (>= 4.0.0, < 5.1.x)
|
63
|
+
coffee-script (2.4.1)
|
48
64
|
coffee-script-source
|
49
65
|
execjs
|
50
|
-
coffee-script-source (1.
|
51
|
-
|
52
|
-
|
66
|
+
coffee-script-source (1.10.0)
|
67
|
+
concurrent-ruby (1.0.2)
|
68
|
+
debug_inspector (0.0.2)
|
69
|
+
devise (4.2.0)
|
70
|
+
bcrypt (~> 3.0)
|
53
71
|
orm_adapter (~> 0.1)
|
54
|
-
railties (
|
55
|
-
|
72
|
+
railties (>= 4.1.0, < 5.1)
|
73
|
+
responders
|
74
|
+
warden (~> 1.2.3)
|
56
75
|
erubis (2.7.0)
|
57
|
-
execjs (
|
58
|
-
|
59
|
-
|
60
|
-
httpclient (2.
|
61
|
-
i18n (0.
|
62
|
-
|
63
|
-
|
64
|
-
|
76
|
+
execjs (2.7.0)
|
77
|
+
globalid (0.3.7)
|
78
|
+
activesupport (>= 4.1.0)
|
79
|
+
httpclient (2.8.2.3)
|
80
|
+
i18n (0.7.0)
|
81
|
+
jbuilder (2.6.0)
|
82
|
+
activesupport (>= 3.0.0, < 5.1)
|
83
|
+
multi_json (~> 1.2)
|
84
|
+
jquery-rails (4.2.1)
|
85
|
+
rails-dom-testing (>= 1, < 3)
|
86
|
+
railties (>= 4.2.0)
|
65
87
|
thor (>= 0.14, < 2.0)
|
66
|
-
json (1.
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
rack-
|
84
|
-
rack
|
85
|
-
rack-test (0.6.2)
|
88
|
+
json (1.8.3)
|
89
|
+
loofah (2.0.3)
|
90
|
+
nokogiri (>= 1.5.9)
|
91
|
+
mail (2.6.4)
|
92
|
+
mime-types (>= 1.16, < 4)
|
93
|
+
mime-types (3.1)
|
94
|
+
mime-types-data (~> 3.2015)
|
95
|
+
mime-types-data (3.2016.0521)
|
96
|
+
mini_portile2 (2.1.0)
|
97
|
+
minitest (5.9.0)
|
98
|
+
multi_json (1.12.1)
|
99
|
+
nokogiri (1.6.8)
|
100
|
+
mini_portile2 (~> 2.1.0)
|
101
|
+
pkg-config (~> 1.1.7)
|
102
|
+
orm_adapter (0.5.0)
|
103
|
+
pkg-config (1.1.7)
|
104
|
+
rack (1.6.4)
|
105
|
+
rack-test (0.6.3)
|
86
106
|
rack (>= 1.0)
|
87
|
-
rails (
|
88
|
-
actionmailer (=
|
89
|
-
actionpack (=
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
107
|
+
rails (4.2.7)
|
108
|
+
actionmailer (= 4.2.7)
|
109
|
+
actionpack (= 4.2.7)
|
110
|
+
actionview (= 4.2.7)
|
111
|
+
activejob (= 4.2.7)
|
112
|
+
activemodel (= 4.2.7)
|
113
|
+
activerecord (= 4.2.7)
|
114
|
+
activesupport (= 4.2.7)
|
115
|
+
bundler (>= 1.3.0, < 2.0)
|
116
|
+
railties (= 4.2.7)
|
117
|
+
sprockets-rails
|
118
|
+
rails-deprecated_sanitizer (1.0.3)
|
119
|
+
activesupport (>= 4.2.0.alpha)
|
120
|
+
rails-dom-testing (1.0.7)
|
121
|
+
activesupport (>= 4.2.0.beta, < 5.0)
|
122
|
+
nokogiri (~> 1.6.0)
|
123
|
+
rails-deprecated_sanitizer (>= 1.0.1)
|
124
|
+
rails-html-sanitizer (1.0.3)
|
125
|
+
loofah (~> 2.0)
|
126
|
+
railties (4.2.7)
|
127
|
+
actionpack (= 4.2.7)
|
128
|
+
activesupport (= 4.2.7)
|
99
129
|
rake (>= 0.8.7)
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
rdoc (3.12.2)
|
130
|
+
thor (>= 0.18.1, < 2.0)
|
131
|
+
rake (11.2.2)
|
132
|
+
rdoc (4.2.2)
|
104
133
|
json (~> 1.4)
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
134
|
+
responders (2.3.0)
|
135
|
+
railties (>= 4.2.0, < 5.1)
|
136
|
+
sass (3.4.22)
|
137
|
+
sass-rails (5.0.6)
|
138
|
+
railties (>= 4.0.0, < 6)
|
139
|
+
sass (~> 3.1)
|
140
|
+
sprockets (>= 2.8, < 4.0)
|
141
|
+
sprockets-rails (>= 2.0, < 4.0)
|
142
|
+
tilt (>= 1.1, < 3)
|
143
|
+
sdoc (0.4.1)
|
144
|
+
json (~> 1.7, >= 1.7.7)
|
145
|
+
rdoc (~> 4.0)
|
146
|
+
spring (1.7.2)
|
147
|
+
sprockets (3.7.0)
|
148
|
+
concurrent-ruby (~> 1.0)
|
149
|
+
rack (> 1, < 3)
|
150
|
+
sprockets-rails (3.2.0)
|
151
|
+
actionpack (>= 4.0)
|
152
|
+
activesupport (>= 4.0)
|
153
|
+
sprockets (>= 3.0.0)
|
154
|
+
sqlite3 (1.3.11)
|
155
|
+
thor (0.19.1)
|
156
|
+
thread_safe (0.3.5)
|
157
|
+
tilt (2.0.5)
|
158
|
+
turbolinks (5.0.1)
|
159
|
+
turbolinks-source (~> 5)
|
160
|
+
turbolinks-source (5.0.0)
|
161
|
+
tzinfo (1.2.2)
|
162
|
+
thread_safe (~> 0.1)
|
163
|
+
uglifier (3.0.2)
|
164
|
+
execjs (>= 0.3.0, < 3)
|
165
|
+
warden (1.2.6)
|
127
166
|
rack (>= 1.0)
|
167
|
+
web-console (2.3.0)
|
168
|
+
activemodel (>= 4.0)
|
169
|
+
binding_of_caller (>= 0.7.2)
|
170
|
+
railties (>= 4.0)
|
171
|
+
sprockets-rails (>= 2.0, < 4.0)
|
128
172
|
|
129
173
|
PLATFORMS
|
130
174
|
ruby
|
131
175
|
|
132
176
|
DEPENDENCIES
|
133
|
-
|
134
|
-
|
177
|
+
activerecord-session_store
|
178
|
+
byebug
|
179
|
+
coffee-rails (~> 4.1.0)
|
180
|
+
devise (>= 3.0.0)
|
135
181
|
devise-authy!
|
182
|
+
jbuilder (~> 2.0)
|
136
183
|
jquery-rails
|
137
|
-
|
138
|
-
rails (
|
139
|
-
|
184
|
+
rails (= 4.2.7)
|
185
|
+
sass-rails (~> 5.0)
|
186
|
+
sdoc (~> 0.4.0)
|
187
|
+
spring
|
140
188
|
sqlite3
|
141
|
-
|
189
|
+
turbolinks
|
190
|
+
uglifier (>= 1.3.0)
|
191
|
+
web-console (~> 2.0)
|
192
|
+
|
193
|
+
BUNDLED WITH
|
194
|
+
1.11.2
|