devise-authy 1.7.0 → 1.8.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (50) hide show
  1. checksums.yaml +5 -13
  2. data/.travis.yml +4 -0
  3. data/Gemfile +29 -13
  4. data/README.md +8 -6
  5. data/VERSION +1 -1
  6. data/app/controllers/devise/devise_authy_controller.rb +3 -3
  7. data/authy-devise-demo/Gemfile +39 -28
  8. data/authy-devise-demo/Gemfile.lock +166 -113
  9. data/authy-devise-demo/README.md +1 -1
  10. data/authy-devise-demo/app/controllers/welcome_controller.rb +2 -2
  11. data/authy-devise-demo/app/models/admin.rb +0 -3
  12. data/authy-devise-demo/app/models/user.rb +0 -3
  13. data/authy-devise-demo/config/application.rb +5 -41
  14. data/authy-devise-demo/config/environments/development.rb +21 -17
  15. data/authy-devise-demo/config/environments/production.rb +45 -33
  16. data/authy-devise-demo/config/environments/test.rb +18 -13
  17. data/authy-devise-demo/config/initializers/session_store.rb +1 -1
  18. data/authy-devise-demo/config/locales/devise.authy.en.yml +4 -4
  19. data/authy-devise-demo/config/secrets.yml +22 -0
  20. data/authy-devise-demo/db/migrate/20160906221739_add_sessions_table.rb +12 -0
  21. data/authy-devise-demo/db/schema.rb +32 -22
  22. data/config/locales/en.yml +4 -4
  23. data/devise-authy.gemspec +44 -47
  24. data/lib/devise-authy/controllers/helpers.rb +1 -1
  25. data/lib/devise-authy/controllers/view_helpers.rb +8 -2
  26. data/lib/devise-authy/mapping.rb +3 -7
  27. data/lib/devise-authy/models/authy_authenticatable.rb +1 -1
  28. data/lib/devise-authy/rails.rb +1 -1
  29. data/lib/generators/devise_authy/install_generator.rb +7 -0
  30. data/spec/controllers/devise_authy_controller_spec.rb +61 -60
  31. data/spec/controllers/passwords_controller_spec.rb +15 -15
  32. data/spec/features/authy_authenticatable_spec.rb +23 -23
  33. data/spec/features/authy_lockable_spec.rb +6 -6
  34. data/spec/generators_spec.rb +11 -9
  35. data/spec/models/authy_authenticatable_spec.rb +3 -3
  36. data/spec/models/authy_lockable_spec.rb +7 -7
  37. data/spec/rails-app/Gemfile +4 -3
  38. data/spec/rails-app/Gemfile.lock +116 -91
  39. data/spec/rails-app/app/controllers/welcome_controller.rb +1 -1
  40. data/spec/rails-app/app/models/user.rb +0 -3
  41. data/spec/rails-app/config/application.rb +15 -34
  42. data/spec/rails-app/config/environments/development.rb +21 -17
  43. data/spec/rails-app/config/environments/production.rb +45 -33
  44. data/spec/rails-app/config/environments/test.rb +18 -13
  45. data/spec/rails-app/config/secrets.yml +22 -0
  46. data/spec/routing/routes_spec.rb +7 -7
  47. data/spec/spec_helper.rb +17 -0
  48. data/spec/support/helpers.rb +3 -1
  49. metadata +34 -59
  50. data/Gemfile.lock +0 -194
checksums.yaml CHANGED
@@ -1,15 +1,7 @@
1
1
  ---
2
- !binary "U0hBMQ==":
3
- metadata.gz: !binary |-
4
- OWMwMGEzZDEzMmE1YjVlZTM5MDEzYjE4NmRhNDJhN2M3M2E5OTJkOQ==
5
- data.tar.gz: !binary |-
6
- ODNmNmI0Yjc1ZjgzNTRjYmM3MDE2MDNkNmZiNTFhMTg0ZjFhYTI3ZQ==
2
+ SHA1:
3
+ metadata.gz: 66007a83c06fbc01e57550716f8b581e098c50c4
4
+ data.tar.gz: 8d4d4a2b5dcd8476a5a080b3b753b53127d08ded
7
5
  SHA512:
8
- metadata.gz: !binary |-
9
- N2JlNjM5MzcyYmJmZmQ5MzM2OTA2YTQwMTVkNGVmNjU4NGFhN2MyNWZhYzMx
10
- Y2M4ZTYxZDZhOWM1MmE2NTM0ZmYwMTcwNGUzYjhmOTI3ZWE1MDZkZmUwODRl
11
- Y2MxNWQ3ZGM0MDBkZWYwNDNhYzA5NmVhODk1MzlhODdlMzBjNWE=
12
- data.tar.gz: !binary |-
13
- OTg1MWYxMTMyYTI0YmZkYjJkNjU0NWY2YmZmMTJmNjFmZmUwYTlmOGZhZmYy
14
- NDBjNmI2ZDI4MzIwNWIyMTA1ODU0NmQyYmQ2NGE0MDc5ZDg5ZDFjOWZiOTk2
15
- ZDdiZGYxN2RiODJhMGJjMmUxMTc2OTc2M2UyOWI2NDhiZTNlMmE=
6
+ metadata.gz: 10f168bc13a07a9d34bf0228cf34202da390f5776cee20bbb14efb3b0f6e9bd5e84a7f0bcf60e0dd09395abe686fbd68ddfccd4ff16492c91985f838e87e8c73
7
+ data.tar.gz: c820d2664e45ab9ce4a460228bde73ca17b991bfb9775c1dd2851987032ba559d3396adb2b6e03aeda800b4ea731c09dfc8247233059de82bbacf98599abb706
@@ -0,0 +1,4 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.3.0
4
+ - 2.2.3
data/Gemfile CHANGED
@@ -1,24 +1,40 @@
1
- source "https://rubygems.org"
1
+ source 'https://rubygems.org'
2
2
 
3
- gem "devise"
3
+ gem 'devise', '>= 3.0.0'
4
4
  gem 'authy'
5
5
 
6
6
  group :development do
7
- gem "rspec"
8
- gem "yard"
9
- gem "rdoc"
10
- gem "bundler"
11
- gem "jeweler", ">= 2.0.1"
12
- gem "simplecov"
13
- gem "sass-rails"
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 "rails"
20
- gem "sqlite3"
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 create an initializer in `config/initializers/authy.rb`
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
- ```ruby
19
- Authy.api_key = ENV['AUTHY_API_KEY'] || 'your_authy_api_key'
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.7.0
1
+ 1.8.0
@@ -1,11 +1,11 @@
1
1
  class Devise::DeviseAuthyController < DeviseController
2
- prepend_before_filter :find_resource, :only => [
2
+ prepend_before_action :find_resource, :only => [
3
3
  :request_phone_call, :request_sms
4
4
  ]
5
- prepend_before_filter :find_resource_and_require_password_checked, :only => [
5
+ prepend_before_action :find_resource_and_require_password_checked, :only => [
6
6
  :GET_verify_authy, :POST_verify_authy
7
7
  ]
8
- prepend_before_filter :authenticate_scope!, :only => [
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
@@ -1,40 +1,51 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
- gem 'rails', '3.2.13'
3
+ # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
4
+ gem 'rails', '4.2.7'
4
5
 
5
- # Bundle edge Rails instead:
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
- # To use ActiveModel has_secure_password
28
- # gem 'bcrypt-ruby', '~> 3.0.0'
29
+ gem 'activerecord-session_store'
29
30
 
30
- # To use Jbuilder templates for JSON
31
- # gem 'jbuilder'
31
+ # Use ActiveModel has_secure_password
32
+ # gem 'bcrypt', '~> 3.1.7'
32
33
 
33
- # Use unicorn as the app server
34
+ # Use Unicorn as the app server
34
35
  # gem 'unicorn'
35
36
 
36
- # Deploy with Capistrano
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
- # To use debugger
40
- # gem 'debugger'
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.5.3)
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 (3.2.13)
12
- actionpack (= 3.2.13)
13
- mail (~> 2.5.3)
14
- actionpack (3.2.13)
15
- activemodel (= 3.2.13)
16
- activesupport (= 3.2.13)
17
- builder (~> 3.0.0)
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
- journey (~> 1.0.4)
20
- rack (~> 1.4.5)
21
- rack-cache (~> 1.2)
22
- rack-test (~> 0.6.1)
23
- sprockets (~> 2.2.1)
24
- activemodel (3.2.13)
25
- activesupport (= 3.2.13)
26
- builder (~> 3.0.0)
27
- activerecord (3.2.13)
28
- activemodel (= 3.2.13)
29
- activesupport (= 3.2.13)
30
- arel (~> 3.0.2)
31
- tzinfo (~> 0.3.29)
32
- activeresource (3.2.13)
33
- activemodel (= 3.2.13)
34
- activesupport (= 3.2.13)
35
- activesupport (3.2.13)
36
- i18n (= 0.6.1)
37
- multi_json (~> 1.0)
38
- arel (3.0.2)
39
- authy (2.4.0)
40
- httpclient (>= 2.3.4)
41
- bcrypt-ruby (3.0.1)
42
- builder (3.0.4)
43
- coderay (1.0.9)
44
- coffee-rails (3.2.2)
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 (~> 3.2.0)
47
- coffee-script (2.2.0)
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.6.2)
51
- devise (2.1.3)
52
- bcrypt-ruby (~> 3.0)
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 (~> 3.1)
55
- warden (~> 1.2.1)
72
+ railties (>= 4.1.0, < 5.1)
73
+ responders
74
+ warden (~> 1.2.3)
56
75
  erubis (2.7.0)
57
- execjs (1.4.0)
58
- multi_json (~> 1.0)
59
- hike (1.2.2)
60
- httpclient (2.5.3.3)
61
- i18n (0.6.1)
62
- journey (1.0.4)
63
- jquery-rails (2.2.1)
64
- railties (>= 3.0, < 5.0)
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.7.7)
67
- mail (2.5.3)
68
- i18n (>= 0.4.0)
69
- mime-types (~> 1.16)
70
- treetop (~> 1.4.8)
71
- method_source (0.8.1)
72
- mime-types (1.22)
73
- multi_json (1.7.2)
74
- orm_adapter (0.4.0)
75
- polyglot (0.3.3)
76
- pry (0.9.12)
77
- coderay (~> 1.0.5)
78
- method_source (~> 0.8)
79
- slop (~> 3.4)
80
- rack (1.4.5)
81
- rack-cache (1.2)
82
- rack (>= 0.4)
83
- rack-ssl (1.3.4)
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 (3.2.13)
88
- actionmailer (= 3.2.13)
89
- actionpack (= 3.2.13)
90
- activerecord (= 3.2.13)
91
- activeresource (= 3.2.13)
92
- activesupport (= 3.2.13)
93
- bundler (~> 1.0)
94
- railties (= 3.2.13)
95
- railties (3.2.13)
96
- actionpack (= 3.2.13)
97
- activesupport (= 3.2.13)
98
- rack-ssl (~> 1.3.2)
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
- rdoc (~> 3.4)
101
- thor (>= 0.14.6, < 2.0)
102
- rake (10.0.4)
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
- sass (3.2.7)
106
- sass-rails (3.2.6)
107
- railties (~> 3.2.0)
108
- sass (>= 3.1.10)
109
- tilt (~> 1.3)
110
- slop (3.4.4)
111
- sprockets (2.2.2)
112
- hike (~> 1.2)
113
- multi_json (~> 1.0)
114
- rack (~> 1.0)
115
- tilt (~> 1.1, != 1.3.0)
116
- sqlite3 (1.3.7)
117
- thor (0.18.1)
118
- tilt (1.3.7)
119
- treetop (1.4.12)
120
- polyglot
121
- polyglot (>= 0.3.1)
122
- tzinfo (0.3.37)
123
- uglifier (2.0.1)
124
- execjs (>= 0.3.0)
125
- multi_json (~> 1.0, >= 1.0.2)
126
- warden (1.2.1)
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
- coffee-rails (~> 3.2.1)
134
- devise (= 2.1.3)
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
- pry
138
- rails (= 3.2.13)
139
- sass-rails (~> 3.2.3)
184
+ rails (= 4.2.7)
185
+ sass-rails (~> 5.0)
186
+ sdoc (~> 0.4.0)
187
+ spring
140
188
  sqlite3
141
- uglifier (>= 1.0.3)
189
+ turbolinks
190
+ uglifier (>= 1.3.0)
191
+ web-console (~> 2.0)
192
+
193
+ BUNDLED WITH
194
+ 1.11.2