devise-authy 1.7.0 → 2.3.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.
- checksums.yaml +5 -13
- data/.github/workflows/build.yml +32 -0
- data/.gitignore +45 -0
- data/.rspec +1 -0
- data/Appraisals +22 -0
- data/CHANGELOG.md +152 -0
- data/Gemfile +2 -23
- data/LICENSE.txt +1 -1
- data/README.md +147 -36
- data/Rakefile +1 -14
- data/app/controllers/devise/devise_authy_controller.rb +90 -30
- data/app/controllers/devise_authy/passwords_controller.rb +18 -0
- data/app/views/devise/enable_authy.html.erb +2 -2
- data/app/views/devise/enable_authy.html.haml +2 -2
- data/app/views/devise/verify_authy.html.erb +23 -6
- data/app/views/devise/verify_authy.html.haml +21 -6
- data/app/views/devise/verify_authy_installation.html.erb +14 -6
- data/app/views/devise/verify_authy_installation.html.haml +12 -4
- data/config/locales/en.yml +8 -4
- data/config.ru +9 -0
- data/devise-authy.gemspec +44 -239
- data/gemfiles/.bundle/config +2 -0
- data/gemfiles/rails_5_2.gemfile +14 -0
- data/gemfiles/rails_6.gemfile +15 -0
- data/lib/devise-authy/controllers/helpers.rb +31 -12
- data/lib/devise-authy/controllers/view_helpers.rb +13 -7
- data/lib/devise-authy/mapping.rb +10 -7
- data/lib/devise-authy/models/authy_authenticatable.rb +2 -2
- data/lib/devise-authy/rails.rb +1 -1
- data/lib/devise-authy/routes.rb +3 -2
- data/lib/devise-authy/version.rb +5 -0
- data/lib/devise-authy.rb +8 -1
- data/lib/generators/active_record/devise_authy_generator.rb +11 -1
- data/lib/generators/active_record/templates/migration.rb +1 -1
- data/lib/generators/devise_authy/devise_authy_generator.rb +8 -8
- data/lib/generators/devise_authy/install_generator.rb +19 -5
- metadata +173 -205
- data/Gemfile.lock +0 -194
- data/VERSION +0 -1
- data/authy-devise-demo/.gitignore +0 -15
- data/authy-devise-demo/Gemfile +0 -40
- data/authy-devise-demo/Gemfile.lock +0 -141
- data/authy-devise-demo/README.md +0 -64
- data/authy-devise-demo/Rakefile +0 -7
- data/authy-devise-demo/app/assets/images/rails.png +0 -0
- data/authy-devise-demo/app/assets/javascripts/application.js +0 -15
- data/authy-devise-demo/app/assets/javascripts/devise_authy.js +0 -12
- data/authy-devise-demo/app/assets/javascripts/welcome.js.coffee +0 -3
- data/authy-devise-demo/app/assets/stylesheets/application.css +0 -13
- data/authy-devise-demo/app/assets/stylesheets/devise_authy.css +0 -26
- data/authy-devise-demo/app/assets/stylesheets/welcome.css.scss +0 -3
- data/authy-devise-demo/app/controllers/application_controller.rb +0 -3
- data/authy-devise-demo/app/controllers/welcome_controller.rb +0 -15
- data/authy-devise-demo/app/helpers/application_helper.rb +0 -2
- data/authy-devise-demo/app/helpers/welcome_helper.rb +0 -2
- data/authy-devise-demo/app/mailers/.gitkeep +0 -0
- data/authy-devise-demo/app/models/.gitkeep +0 -0
- data/authy-devise-demo/app/models/admin.rb +0 -10
- data/authy-devise-demo/app/models/user.rb +0 -10
- data/authy-devise-demo/app/views/devise/devise_authy/enable_authy.html.erb +0 -7
- data/authy-devise-demo/app/views/devise/devise_authy/verify_authy.html.erb +0 -22
- data/authy-devise-demo/app/views/devise/devise_authy/verify_authy_installation.html.erb +0 -10
- data/authy-devise-demo/app/views/layouts/application.html.erb +0 -28
- data/authy-devise-demo/app/views/welcome/admin_page.html.erb +0 -12
- data/authy-devise-demo/app/views/welcome/index.html.erb +0 -5
- data/authy-devise-demo/app/views/welcome/user_page.html.erb +0 -5
- data/authy-devise-demo/config/application.rb +0 -62
- data/authy-devise-demo/config/boot.rb +0 -6
- data/authy-devise-demo/config/database.yml +0 -25
- data/authy-devise-demo/config/environment.rb +0 -5
- data/authy-devise-demo/config/environments/development.rb +0 -39
- data/authy-devise-demo/config/environments/production.rb +0 -67
- data/authy-devise-demo/config/environments/test.rb +0 -37
- data/authy-devise-demo/config/initializers/authy.rb +0 -1
- data/authy-devise-demo/config/initializers/backtrace_silencers.rb +0 -7
- data/authy-devise-demo/config/initializers/devise.rb +0 -237
- data/authy-devise-demo/config/initializers/inflections.rb +0 -15
- data/authy-devise-demo/config/initializers/mime_types.rb +0 -5
- data/authy-devise-demo/config/initializers/secret_token.rb +0 -7
- data/authy-devise-demo/config/initializers/session_store.rb +0 -8
- data/authy-devise-demo/config/initializers/wrap_parameters.rb +0 -14
- data/authy-devise-demo/config/locales/devise.authy.en.yml +0 -24
- data/authy-devise-demo/config/locales/devise.en.yml +0 -58
- data/authy-devise-demo/config/locales/en.yml +0 -5
- data/authy-devise-demo/config/routes.rb +0 -65
- data/authy-devise-demo/config.ru +0 -4
- data/authy-devise-demo/db/migrate/20130409234357_devise_create_users.rb +0 -46
- data/authy-devise-demo/db/migrate/20141202000744_devise_create_admins.rb +0 -46
- data/authy-devise-demo/db/migrate/20141202004246_devise_authy_add_to_admins.rb +0 -21
- data/authy-devise-demo/db/schema.rb +0 -62
- data/authy-devise-demo/db/seeds.rb +0 -7
- data/authy-devise-demo/lib/assets/.gitkeep +0 -0
- data/authy-devise-demo/lib/tasks/.gitkeep +0 -0
- data/authy-devise-demo/log/.gitkeep +0 -0
- data/authy-devise-demo/public/404.html +0 -26
- data/authy-devise-demo/public/422.html +0 -26
- data/authy-devise-demo/public/500.html +0 -25
- data/authy-devise-demo/public/favicon.ico +0 -0
- data/authy-devise-demo/public/robots.txt +0 -5
- data/authy-devise-demo/script/rails +0 -6
- data/authy-devise-demo/test/fixtures/.gitkeep +0 -0
- data/authy-devise-demo/test/fixtures/users.yml +0 -11
- data/authy-devise-demo/test/functional/.gitkeep +0 -0
- data/authy-devise-demo/test/functional/welcome_controller_test.rb +0 -9
- data/authy-devise-demo/test/integration/.gitkeep +0 -0
- data/authy-devise-demo/test/performance/browsing_test.rb +0 -12
- data/authy-devise-demo/test/test_helper.rb +0 -13
- data/authy-devise-demo/test/unit/.gitkeep +0 -0
- data/authy-devise-demo/test/unit/helpers/welcome_helper_test.rb +0 -4
- data/authy-devise-demo/test/unit/user_test.rb +0 -7
- data/authy-devise-demo/vendor/assets/javascripts/.gitkeep +0 -0
- data/authy-devise-demo/vendor/assets/stylesheets/.gitkeep +0 -0
- data/authy-devise-demo/vendor/plugins/.gitkeep +0 -0
- data/spec/controllers/devise_authy_controller_spec.rb +0 -271
- data/spec/controllers/passwords_controller_spec.rb +0 -48
- data/spec/features/authy_authenticatable_spec.rb +0 -90
- data/spec/features/authy_lockable_spec.rb +0 -70
- data/spec/generators_spec.rb +0 -30
- data/spec/models/authy_authenticatable_spec.rb +0 -17
- data/spec/models/authy_lockable_spec.rb +0 -81
- data/spec/orm/active_record.rb +0 -4
- data/spec/rails-app/Gemfile +0 -9
- data/spec/rails-app/Gemfile.lock +0 -115
- data/spec/rails-app/Rakefile +0 -7
- data/spec/rails-app/app/assets/images/rails.png +0 -0
- data/spec/rails-app/app/assets/javascripts/application.js +0 -15
- data/spec/rails-app/app/assets/javascripts/devise_authy.js +0 -12
- data/spec/rails-app/app/assets/javascripts/welcome.js +0 -2
- data/spec/rails-app/app/assets/stylesheets/application.css +0 -13
- data/spec/rails-app/app/assets/stylesheets/devise_authy.css +0 -26
- data/spec/rails-app/app/assets/stylesheets/welcome.css.scss +0 -3
- data/spec/rails-app/app/controllers/application_controller.rb +0 -3
- data/spec/rails-app/app/controllers/welcome_controller.rb +0 -13
- data/spec/rails-app/app/helpers/application_helper.rb +0 -2
- data/spec/rails-app/app/helpers/welcome_helper.rb +0 -2
- data/spec/rails-app/app/mailers/.gitkeep +0 -0
- data/spec/rails-app/app/models/.gitkeep +0 -0
- data/spec/rails-app/app/models/lockable_user.rb +0 -7
- data/spec/rails-app/app/models/user.rb +0 -11
- data/spec/rails-app/app/views/devise/devise_authy/enable_authy.html.erb +0 -7
- data/spec/rails-app/app/views/devise/devise_authy/verify_authy.html.erb +0 -21
- data/spec/rails-app/app/views/devise/devise_authy/verify_authy_installation.html.erb +0 -10
- data/spec/rails-app/app/views/layouts/application.html.erb +0 -28
- data/spec/rails-app/app/views/welcome/index.html.erb +0 -5
- data/spec/rails-app/config/application.rb +0 -49
- data/spec/rails-app/config/boot.rb +0 -6
- data/spec/rails-app/config/database.yml +0 -25
- data/spec/rails-app/config/environment.rb +0 -5
- data/spec/rails-app/config/environments/development.rb +0 -39
- data/spec/rails-app/config/environments/production.rb +0 -67
- data/spec/rails-app/config/environments/test.rb +0 -39
- data/spec/rails-app/config/initializers/authy.rb +0 -2
- data/spec/rails-app/config/initializers/backtrace_silencers.rb +0 -7
- data/spec/rails-app/config/initializers/devise.rb +0 -245
- data/spec/rails-app/config/initializers/inflections.rb +0 -15
- data/spec/rails-app/config/initializers/mime_types.rb +0 -5
- data/spec/rails-app/config/initializers/secret_token.rb +0 -7
- data/spec/rails-app/config/initializers/session_store.rb +0 -8
- data/spec/rails-app/config/initializers/wrap_parameters.rb +0 -14
- data/spec/rails-app/config/locales/devise.authy.en.yml +0 -24
- data/spec/rails-app/config/locales/devise.en.yml +0 -59
- data/spec/rails-app/config/locales/en.yml +0 -5
- data/spec/rails-app/config/routes.rb +0 -8
- data/spec/rails-app/config.ru +0 -4
- data/spec/rails-app/db/development.sqlite3 +0 -0
- data/spec/rails-app/db/migrate/20130419164907_devise_create_users.rb +0 -46
- data/spec/rails-app/db/migrate/20130419164936_devise_authy_add_to_users.rb +0 -18
- data/spec/rails-app/db/schema.rb +0 -41
- data/spec/rails-app/db/seeds.rb +0 -7
- data/spec/rails-app/lib/assets/.gitkeep +0 -0
- data/spec/rails-app/lib/tasks/.gitkeep +0 -0
- data/spec/rails-app/public/404.html +0 -26
- data/spec/rails-app/public/422.html +0 -26
- data/spec/rails-app/public/500.html +0 -25
- data/spec/rails-app/public/favicon.ico +0 -0
- data/spec/rails-app/public/robots.txt +0 -5
- data/spec/rails-app/script/rails +0 -6
- data/spec/routing/routes_spec.rb +0 -31
- data/spec/spec_helper.rb +0 -29
- data/spec/support/helpers.rb +0 -78
data/Gemfile.lock
DELETED
|
@@ -1,194 +0,0 @@
|
|
|
1
|
-
GEM
|
|
2
|
-
remote: https://rubygems.org/
|
|
3
|
-
specs:
|
|
4
|
-
actionmailer (3.2.13)
|
|
5
|
-
actionpack (= 3.2.13)
|
|
6
|
-
mail (~> 2.5.3)
|
|
7
|
-
actionpack (3.2.13)
|
|
8
|
-
activemodel (= 3.2.13)
|
|
9
|
-
activesupport (= 3.2.13)
|
|
10
|
-
builder (~> 3.0.0)
|
|
11
|
-
erubis (~> 2.7.0)
|
|
12
|
-
journey (~> 1.0.4)
|
|
13
|
-
rack (~> 1.4.5)
|
|
14
|
-
rack-cache (~> 1.2)
|
|
15
|
-
rack-test (~> 0.6.1)
|
|
16
|
-
sprockets (~> 2.2.1)
|
|
17
|
-
activemodel (3.2.13)
|
|
18
|
-
activesupport (= 3.2.13)
|
|
19
|
-
builder (~> 3.0.0)
|
|
20
|
-
activerecord (3.2.13)
|
|
21
|
-
activemodel (= 3.2.13)
|
|
22
|
-
activesupport (= 3.2.13)
|
|
23
|
-
arel (~> 3.0.2)
|
|
24
|
-
tzinfo (~> 0.3.29)
|
|
25
|
-
activeresource (3.2.13)
|
|
26
|
-
activemodel (= 3.2.13)
|
|
27
|
-
activesupport (= 3.2.13)
|
|
28
|
-
activesupport (3.2.13)
|
|
29
|
-
i18n (= 0.6.1)
|
|
30
|
-
multi_json (~> 1.0)
|
|
31
|
-
addressable (2.3.6)
|
|
32
|
-
arel (3.0.2)
|
|
33
|
-
authy (2.4.0)
|
|
34
|
-
httpclient (>= 2.3.4)
|
|
35
|
-
bcrypt-ruby (3.0.1)
|
|
36
|
-
builder (3.0.4)
|
|
37
|
-
capybara (2.1.0)
|
|
38
|
-
mime-types (>= 1.16)
|
|
39
|
-
nokogiri (>= 1.3.3)
|
|
40
|
-
rack (>= 1.0.0)
|
|
41
|
-
rack-test (>= 0.5.4)
|
|
42
|
-
xpath (~> 2.0)
|
|
43
|
-
coderay (1.0.9)
|
|
44
|
-
database_cleaner (0.9.1)
|
|
45
|
-
devise (2.2.3)
|
|
46
|
-
bcrypt-ruby (~> 3.0)
|
|
47
|
-
orm_adapter (~> 0.1)
|
|
48
|
-
railties (~> 3.1)
|
|
49
|
-
warden (~> 1.2.1)
|
|
50
|
-
diff-lcs (1.2.5)
|
|
51
|
-
erubis (2.7.0)
|
|
52
|
-
faraday (0.8.9)
|
|
53
|
-
multipart-post (~> 1.2.0)
|
|
54
|
-
git (1.2.6)
|
|
55
|
-
github_api (0.10.2)
|
|
56
|
-
addressable
|
|
57
|
-
faraday (~> 0.8.7)
|
|
58
|
-
hashie (>= 1.2)
|
|
59
|
-
multi_json (~> 1.4)
|
|
60
|
-
nokogiri (~> 1.6.0)
|
|
61
|
-
oauth2
|
|
62
|
-
hashie (2.1.1)
|
|
63
|
-
highline (1.6.21)
|
|
64
|
-
hike (1.2.2)
|
|
65
|
-
httpclient (2.5.3.3)
|
|
66
|
-
i18n (0.6.1)
|
|
67
|
-
jeweler (2.0.1)
|
|
68
|
-
builder
|
|
69
|
-
bundler (>= 1.0)
|
|
70
|
-
git (>= 1.2.5)
|
|
71
|
-
github_api
|
|
72
|
-
highline (>= 1.6.15)
|
|
73
|
-
nokogiri (>= 1.5.10)
|
|
74
|
-
rake
|
|
75
|
-
rdoc
|
|
76
|
-
journey (1.0.4)
|
|
77
|
-
jquery-rails (2.2.1)
|
|
78
|
-
railties (>= 3.0, < 5.0)
|
|
79
|
-
thor (>= 0.14, < 2.0)
|
|
80
|
-
json (1.8.1)
|
|
81
|
-
jwt (0.1.11)
|
|
82
|
-
multi_json (>= 1.5)
|
|
83
|
-
mail (2.5.3)
|
|
84
|
-
i18n (>= 0.4.0)
|
|
85
|
-
mime-types (~> 1.16)
|
|
86
|
-
treetop (~> 1.4.8)
|
|
87
|
-
method_source (0.8.1)
|
|
88
|
-
mime-types (1.22)
|
|
89
|
-
mini_portile (0.5.3)
|
|
90
|
-
multi_json (1.7.2)
|
|
91
|
-
multi_xml (0.5.5)
|
|
92
|
-
multipart-post (1.2.0)
|
|
93
|
-
nokogiri (1.6.1)
|
|
94
|
-
mini_portile (~> 0.5.0)
|
|
95
|
-
oauth2 (0.9.3)
|
|
96
|
-
faraday (>= 0.8, < 0.10)
|
|
97
|
-
jwt (~> 0.1.8)
|
|
98
|
-
multi_json (~> 1.3)
|
|
99
|
-
multi_xml (~> 0.5)
|
|
100
|
-
rack (~> 1.2)
|
|
101
|
-
orm_adapter (0.4.0)
|
|
102
|
-
polyglot (0.3.3)
|
|
103
|
-
pry (0.9.12)
|
|
104
|
-
coderay (~> 1.0.5)
|
|
105
|
-
method_source (~> 0.8)
|
|
106
|
-
slop (~> 3.4)
|
|
107
|
-
rack (1.4.5)
|
|
108
|
-
rack-cache (1.2)
|
|
109
|
-
rack (>= 0.4)
|
|
110
|
-
rack-ssl (1.3.3)
|
|
111
|
-
rack
|
|
112
|
-
rack-test (0.6.2)
|
|
113
|
-
rack (>= 1.0)
|
|
114
|
-
rails (3.2.13)
|
|
115
|
-
actionmailer (= 3.2.13)
|
|
116
|
-
actionpack (= 3.2.13)
|
|
117
|
-
activerecord (= 3.2.13)
|
|
118
|
-
activeresource (= 3.2.13)
|
|
119
|
-
activesupport (= 3.2.13)
|
|
120
|
-
bundler (~> 1.0)
|
|
121
|
-
railties (= 3.2.13)
|
|
122
|
-
railties (3.2.13)
|
|
123
|
-
actionpack (= 3.2.13)
|
|
124
|
-
activesupport (= 3.2.13)
|
|
125
|
-
rack-ssl (~> 1.3.2)
|
|
126
|
-
rake (>= 0.8.7)
|
|
127
|
-
rdoc (~> 3.4)
|
|
128
|
-
thor (>= 0.14.6, < 2.0)
|
|
129
|
-
rake (10.3.0)
|
|
130
|
-
rdoc (3.12.2)
|
|
131
|
-
json (~> 1.4)
|
|
132
|
-
rspec (2.13.0)
|
|
133
|
-
rspec-core (~> 2.13.0)
|
|
134
|
-
rspec-expectations (~> 2.13.0)
|
|
135
|
-
rspec-mocks (~> 2.13.0)
|
|
136
|
-
rspec-core (2.13.1)
|
|
137
|
-
rspec-expectations (2.13.0)
|
|
138
|
-
diff-lcs (>= 1.1.3, < 2.0)
|
|
139
|
-
rspec-mocks (2.13.1)
|
|
140
|
-
rspec-rails (2.13.0)
|
|
141
|
-
actionpack (>= 3.0)
|
|
142
|
-
activesupport (>= 3.0)
|
|
143
|
-
railties (>= 3.0)
|
|
144
|
-
rspec-core (~> 2.13.0)
|
|
145
|
-
rspec-expectations (~> 2.13.0)
|
|
146
|
-
rspec-mocks (~> 2.13.0)
|
|
147
|
-
sass (3.2.7)
|
|
148
|
-
sass-rails (3.2.6)
|
|
149
|
-
railties (~> 3.2.0)
|
|
150
|
-
sass (>= 3.1.10)
|
|
151
|
-
tilt (~> 1.3)
|
|
152
|
-
simplecov (0.7.1)
|
|
153
|
-
multi_json (~> 1.0)
|
|
154
|
-
simplecov-html (~> 0.7.1)
|
|
155
|
-
simplecov-html (0.7.1)
|
|
156
|
-
slop (3.4.4)
|
|
157
|
-
sprockets (2.2.2)
|
|
158
|
-
hike (~> 1.2)
|
|
159
|
-
multi_json (~> 1.0)
|
|
160
|
-
rack (~> 1.0)
|
|
161
|
-
tilt (~> 1.1, != 1.3.0)
|
|
162
|
-
sqlite3 (1.3.7)
|
|
163
|
-
thor (0.18.1)
|
|
164
|
-
tilt (1.3.7)
|
|
165
|
-
treetop (1.4.12)
|
|
166
|
-
polyglot
|
|
167
|
-
polyglot (>= 0.3.1)
|
|
168
|
-
tzinfo (0.3.37)
|
|
169
|
-
warden (1.2.1)
|
|
170
|
-
rack (>= 1.0)
|
|
171
|
-
xpath (2.0.0)
|
|
172
|
-
nokogiri (~> 1.3)
|
|
173
|
-
yard (0.8.6.1)
|
|
174
|
-
|
|
175
|
-
PLATFORMS
|
|
176
|
-
ruby
|
|
177
|
-
|
|
178
|
-
DEPENDENCIES
|
|
179
|
-
authy
|
|
180
|
-
bundler
|
|
181
|
-
capybara
|
|
182
|
-
database_cleaner
|
|
183
|
-
devise
|
|
184
|
-
jeweler (>= 2.0.1)
|
|
185
|
-
jquery-rails
|
|
186
|
-
pry
|
|
187
|
-
rails
|
|
188
|
-
rdoc
|
|
189
|
-
rspec
|
|
190
|
-
rspec-rails
|
|
191
|
-
sass-rails
|
|
192
|
-
simplecov
|
|
193
|
-
sqlite3
|
|
194
|
-
yard
|
data/VERSION
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
1.7.0
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
# See http://help.github.com/ignore-files/ for more about ignoring files.
|
|
2
|
-
#
|
|
3
|
-
# If you find yourself ignoring temporary files generated by your text editor
|
|
4
|
-
# or operating system, you probably want to add a global ignore instead:
|
|
5
|
-
# git config --global core.excludesfile ~/.gitignore_global
|
|
6
|
-
|
|
7
|
-
# Ignore bundler config
|
|
8
|
-
/.bundle
|
|
9
|
-
|
|
10
|
-
# Ignore the default SQLite database.
|
|
11
|
-
/db/*.sqlite3
|
|
12
|
-
|
|
13
|
-
# Ignore all logfiles and tempfiles.
|
|
14
|
-
/log/*.log
|
|
15
|
-
/tmp
|
data/authy-devise-demo/Gemfile
DELETED
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
source 'https://rubygems.org'
|
|
2
|
-
|
|
3
|
-
gem 'rails', '3.2.13'
|
|
4
|
-
|
|
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'
|
|
10
|
-
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
|
-
|
|
25
|
-
gem 'jquery-rails'
|
|
26
|
-
|
|
27
|
-
# To use ActiveModel has_secure_password
|
|
28
|
-
# gem 'bcrypt-ruby', '~> 3.0.0'
|
|
29
|
-
|
|
30
|
-
# To use Jbuilder templates for JSON
|
|
31
|
-
# gem 'jbuilder'
|
|
32
|
-
|
|
33
|
-
# Use unicorn as the app server
|
|
34
|
-
# gem 'unicorn'
|
|
35
|
-
|
|
36
|
-
# Deploy with Capistrano
|
|
37
|
-
# gem 'capistrano'
|
|
38
|
-
|
|
39
|
-
# To use debugger
|
|
40
|
-
# gem 'debugger'
|
|
@@ -1,141 +0,0 @@
|
|
|
1
|
-
PATH
|
|
2
|
-
remote: ..
|
|
3
|
-
specs:
|
|
4
|
-
devise-authy (1.5.3)
|
|
5
|
-
authy
|
|
6
|
-
devise
|
|
7
|
-
|
|
8
|
-
GEM
|
|
9
|
-
remote: https://rubygems.org/
|
|
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)
|
|
18
|
-
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)
|
|
45
|
-
coffee-script (>= 2.2.0)
|
|
46
|
-
railties (~> 3.2.0)
|
|
47
|
-
coffee-script (2.2.0)
|
|
48
|
-
coffee-script-source
|
|
49
|
-
execjs
|
|
50
|
-
coffee-script-source (1.6.2)
|
|
51
|
-
devise (2.1.3)
|
|
52
|
-
bcrypt-ruby (~> 3.0)
|
|
53
|
-
orm_adapter (~> 0.1)
|
|
54
|
-
railties (~> 3.1)
|
|
55
|
-
warden (~> 1.2.1)
|
|
56
|
-
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)
|
|
65
|
-
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)
|
|
86
|
-
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)
|
|
99
|
-
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)
|
|
104
|
-
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)
|
|
127
|
-
rack (>= 1.0)
|
|
128
|
-
|
|
129
|
-
PLATFORMS
|
|
130
|
-
ruby
|
|
131
|
-
|
|
132
|
-
DEPENDENCIES
|
|
133
|
-
coffee-rails (~> 3.2.1)
|
|
134
|
-
devise (= 2.1.3)
|
|
135
|
-
devise-authy!
|
|
136
|
-
jquery-rails
|
|
137
|
-
pry
|
|
138
|
-
rails (= 3.2.13)
|
|
139
|
-
sass-rails (~> 3.2.3)
|
|
140
|
-
sqlite3
|
|
141
|
-
uglifier (>= 1.0.3)
|
data/authy-devise-demo/README.md
DELETED
|
@@ -1,64 +0,0 @@
|
|
|
1
|
-
# Steps to re-create this demo
|
|
2
|
-
|
|
3
|
-
1. Create a new rails application:
|
|
4
|
-
|
|
5
|
-
rails new authy-devise-demo
|
|
6
|
-
rm public/index.html
|
|
7
|
-
|
|
8
|
-
2. Add dependencies to Gemfile:
|
|
9
|
-
|
|
10
|
-
gem 'devise', '2.1.3'
|
|
11
|
-
gem 'devise-authy'
|
|
12
|
-
|
|
13
|
-
3. Create a root controller
|
|
14
|
-
|
|
15
|
-
rails g controller Welcome index
|
|
16
|
-
|
|
17
|
-
4. Edit `config/routes.rb` and uncomment:
|
|
18
|
-
|
|
19
|
-
root :to => 'welcome#index'
|
|
20
|
-
|
|
21
|
-
5. Create `config/initializers/authy.rb` and add:
|
|
22
|
-
|
|
23
|
-
Authy.api_key = '<your-api-key>'
|
|
24
|
-
|
|
25
|
-
6. Install and configure Devise and Devise Authy
|
|
26
|
-
|
|
27
|
-
rails g devise:install
|
|
28
|
-
rails g devise User
|
|
29
|
-
rails g devise_authy:install
|
|
30
|
-
rails g devise_authy User
|
|
31
|
-
|
|
32
|
-
7. Create a user
|
|
33
|
-
|
|
34
|
-
rake db:migrate
|
|
35
|
-
rails runner 'User.create(:email => "user@example.com", :password => "password", :password_confirmation => "password")'
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
8. Edit `app/controllers/welcome_controller.rb` and add:
|
|
39
|
-
|
|
40
|
-
before_filter :authenticate_user!
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
9. Edit `app/views/welcome/index.html.erb` and add:
|
|
44
|
-
|
|
45
|
-
<%= link_to "Enable authy", user_enable_authy_path %>
|
|
46
|
-
<%= link_to "Logout", destroy_user_session_path, :method => :delete %>
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
10. Done
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
# Steps to use this demo
|
|
53
|
-
|
|
54
|
-
1. Clone the repository
|
|
55
|
-
|
|
56
|
-
git clone git://github.com/authy/authy-devise-demo.git
|
|
57
|
-
|
|
58
|
-
2. Create a user
|
|
59
|
-
|
|
60
|
-
rake db:migrate
|
|
61
|
-
rails runner 'User.create(:email => "user@example.com", :password => "password", :password_confirmation => "password")'
|
|
62
|
-
|
|
63
|
-
3. Done
|
|
64
|
-
|
data/authy-devise-demo/Rakefile
DELETED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env rake
|
|
2
|
-
# Add your own tasks in files placed in lib/tasks ending in .rake,
|
|
3
|
-
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
|
|
4
|
-
|
|
5
|
-
require File.expand_path('../config/application', __FILE__)
|
|
6
|
-
|
|
7
|
-
AuthyDeviseDemo::Application.load_tasks
|
|
Binary file
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
// This is a manifest file that'll be compiled into application.js, which will include all the files
|
|
2
|
-
// listed below.
|
|
3
|
-
//
|
|
4
|
-
// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
|
|
5
|
-
// or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path.
|
|
6
|
-
//
|
|
7
|
-
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
|
|
8
|
-
// the compiled file.
|
|
9
|
-
//
|
|
10
|
-
// WARNING: THE FIRST BLANK LINE MARKS THE END OF WHAT'S TO BE PROCESSED, ANY BLANK LINE SHOULD
|
|
11
|
-
// GO AFTER THE REQUIRES BELOW.
|
|
12
|
-
//
|
|
13
|
-
//= require jquery
|
|
14
|
-
//= require jquery_ujs
|
|
15
|
-
//= require_tree .
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
$(document).ready(function() {
|
|
2
|
-
$('a#authy-request-sms-link').unbind('ajax:success');
|
|
3
|
-
$('a#authy-request-sms-link').bind('ajax:success', function(evt, data, status, xhr) {
|
|
4
|
-
alert(data.message);
|
|
5
|
-
});
|
|
6
|
-
|
|
7
|
-
$('a#authy-request-phone-call-link').unbind('ajax:success');
|
|
8
|
-
$('a#authy-request-phone-call-link').bind('ajax:success', function(evt, data, status, xhr) {
|
|
9
|
-
alert(data.message);
|
|
10
|
-
});
|
|
11
|
-
});
|
|
12
|
-
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* This is a manifest file that'll be compiled into application.css, which will include all the files
|
|
3
|
-
* listed below.
|
|
4
|
-
*
|
|
5
|
-
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
|
|
6
|
-
* or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
|
|
7
|
-
*
|
|
8
|
-
* You're free to add application-wide styles to this file and they'll appear at the top of the
|
|
9
|
-
* compiled file, but it's generally better to create a new file per style scope.
|
|
10
|
-
*
|
|
11
|
-
*= require_self
|
|
12
|
-
*= require_tree .
|
|
13
|
-
*/
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
.devise_authy {
|
|
2
|
-
margin-left: auto;
|
|
3
|
-
margin-right: auto;
|
|
4
|
-
width: 350px;
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
.authy-form legend {
|
|
8
|
-
display: block;
|
|
9
|
-
width: 100%;
|
|
10
|
-
padding: 0;
|
|
11
|
-
margin-bottom: 20px;
|
|
12
|
-
font-size: 21px;
|
|
13
|
-
line-height: 40px;
|
|
14
|
-
color: #333;
|
|
15
|
-
border-bottom: 1px solid #E5E5E5;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
.authy-form label,
|
|
19
|
-
.authy-form input,
|
|
20
|
-
.authy-form button {
|
|
21
|
-
font-size: 14px;
|
|
22
|
-
font-weight: normal;
|
|
23
|
-
line-height: 20px;
|
|
24
|
-
padding: 8px;
|
|
25
|
-
margin: 8px;
|
|
26
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
class WelcomeController < ApplicationController
|
|
2
|
-
before_filter :authenticate_user!, only: "user_page"
|
|
3
|
-
before_filter :authenticate_admin!, only: "admin_page"
|
|
4
|
-
|
|
5
|
-
def index
|
|
6
|
-
redirect_to welcome_admin_page_path if current_admin
|
|
7
|
-
redirect_to welcome_user_page_path if current_user
|
|
8
|
-
end
|
|
9
|
-
|
|
10
|
-
def admin_page
|
|
11
|
-
end
|
|
12
|
-
|
|
13
|
-
def user_page
|
|
14
|
-
end
|
|
15
|
-
end
|
|
File without changes
|
|
File without changes
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
class Admin < ActiveRecord::Base
|
|
2
|
-
# Include default devise modules. Others available are:
|
|
3
|
-
# :token_authenticatable, :confirmable,
|
|
4
|
-
# :lockable, :timeoutable and :omniauthable
|
|
5
|
-
devise :authy_authenticatable, :authy_lockable, :database_authenticatable, :registerable,
|
|
6
|
-
:recoverable, :rememberable, :trackable, :validatable, :lockable
|
|
7
|
-
|
|
8
|
-
# Setup accessible (or protected) attributes for your model
|
|
9
|
-
attr_accessible :authy_id, :last_sign_in_with_authy, :email, :password, :password_confirmation, :remember_me
|
|
10
|
-
end
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
class User < ActiveRecord::Base
|
|
2
|
-
# Include default devise modules. Others available are:
|
|
3
|
-
# :token_authenticatable, :confirmable,
|
|
4
|
-
# :lockable, :timeoutable and :omniauthable
|
|
5
|
-
devise :database_authenticatable, :registerable,
|
|
6
|
-
:recoverable, :rememberable, :trackable, :validatable, :lockable
|
|
7
|
-
|
|
8
|
-
# Setup accessible (or protected) attributes for your model
|
|
9
|
-
attr_accessible :email, :password, :password_confirmation, :remember_me
|
|
10
|
-
end
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
<h2><%= I18n.t('authy_register_title', {:scope => 'devise'}) %></h2>
|
|
2
|
-
|
|
3
|
-
<%= enable_authy_form do %>
|
|
4
|
-
<%= text_field_tag :country_code, '', :autocomplete => :off, :placeholder => I18n.t('devise.country'), :id => "authy-countries"%>
|
|
5
|
-
<%= text_field_tag :cellphone, '', :autocomplete => :off, :placeholder => I18n.t('devise.cellphone'), :id => "authy-cellphone"%>
|
|
6
|
-
<p><%= submit_tag I18n.t('enable_authy', {:scope => 'devise'}) %></p>
|
|
7
|
-
<% end %>
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
<h2>
|
|
2
|
-
<%= I18n.t('authy_register_title', {:scope => 'devise'}) %>
|
|
3
|
-
</h2>
|
|
4
|
-
|
|
5
|
-
<%= verify_authy_form do %>
|
|
6
|
-
<legend><%= I18n.t('submit_token_title', {:scope => 'devise'}) %></legend>
|
|
7
|
-
<%= label_tag :token %>
|
|
8
|
-
<%= text_field_tag :token, "", :autocomplete => :off, :id => 'authy-token' %>
|
|
9
|
-
<label>
|
|
10
|
-
<%= check_box_tag :remember_device %>
|
|
11
|
-
<span><%= I18n.t('remember_device', {:scope => 'devise'}) %></span>
|
|
12
|
-
</label>
|
|
13
|
-
|
|
14
|
-
<!-- Help tooltip -->
|
|
15
|
-
<!-- You need to configure a help message. -->
|
|
16
|
-
<!-- See documentation: https://github.com/authy/authy-form-helpers#help-tooltip -->
|
|
17
|
-
<!-- <%= link_to '?', '#', :id => 'authy-help' %> -->
|
|
18
|
-
|
|
19
|
-
<%= authy_request_sms_link %>
|
|
20
|
-
<%= authy_request_phone_call_link %>
|
|
21
|
-
<%= submit_tag I18n.t('submit_token', {:scope => 'devise'}), :class => 'btn' %>
|
|
22
|
-
<% end %>
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
<h2><%= I18n.t('authy_verify_installation_title', {:scope => 'devise'}) %></h2>
|
|
2
|
-
|
|
3
|
-
<%= verify_authy_installation_form do %>
|
|
4
|
-
<legend><%= I18n.t('submit_token_title', {:scope => 'devise'}) %></legend>
|
|
5
|
-
<%= label_tag :token %>
|
|
6
|
-
<%= text_field_tag :token, "", :autocomplete => :off, :id => 'authy-token' %>
|
|
7
|
-
<%= authy_request_sms_link %>
|
|
8
|
-
<%= submit_tag I18n.t('enable_my_account', {:scope => 'devise'}), :class => 'btn' %>
|
|
9
|
-
<% end %>
|
|
10
|
-
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html>
|
|
3
|
-
<head>
|
|
4
|
-
<title>AuthyDeviseDemo</title>
|
|
5
|
-
<%= stylesheet_link_tag "application", :media => "all" %>
|
|
6
|
-
<%= javascript_include_tag "application" %>
|
|
7
|
-
<%= csrf_meta_tags %>
|
|
8
|
-
<%=javascript_include_tag "https://www.authy.com/form.authy.min.js" %>
|
|
9
|
-
<%=stylesheet_link_tag "https://www.authy.com/form.authy.min.css" %>
|
|
10
|
-
</head>
|
|
11
|
-
<body>
|
|
12
|
-
|
|
13
|
-
<% if flash[:notice] %>
|
|
14
|
-
<div id="notice">
|
|
15
|
-
<%= flash[:notice] %>
|
|
16
|
-
</div>
|
|
17
|
-
<% end %>
|
|
18
|
-
|
|
19
|
-
<% if flash[:error] %>
|
|
20
|
-
<div class='alert alert-error'>
|
|
21
|
-
<%= flash[:error] %>
|
|
22
|
-
</div>
|
|
23
|
-
<% end %>
|
|
24
|
-
|
|
25
|
-
<%= yield %>
|
|
26
|
-
|
|
27
|
-
</body>
|
|
28
|
-
</html>
|