devise 4.5.0 → 4.6.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of devise might be problematic. Click here for more details.

Files changed (195) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGELOG.md +30 -1
  3. data/MIT-LICENSE +1 -1
  4. data/README.md +18 -0
  5. data/app/controllers/devise/passwords_controller.rb +1 -0
  6. data/app/controllers/devise/registrations_controller.rb +25 -7
  7. data/app/helpers/devise_helper.rb +10 -19
  8. data/app/views/devise/confirmations/new.html.erb +1 -1
  9. data/app/views/devise/passwords/edit.html.erb +1 -1
  10. data/app/views/devise/passwords/new.html.erb +1 -1
  11. data/app/views/devise/registrations/edit.html.erb +1 -1
  12. data/app/views/devise/registrations/new.html.erb +1 -1
  13. data/app/views/devise/sessions/new.html.erb +2 -2
  14. data/app/views/devise/shared/_error_messages.html.erb +15 -0
  15. data/app/views/devise/shared/_links.html.erb +7 -7
  16. data/app/views/devise/unlocks/new.html.erb +1 -1
  17. data/config/locales/en.yml +1 -0
  18. data/lib/devise.rb +4 -0
  19. data/lib/devise/controllers/helpers.rb +1 -1
  20. data/lib/devise/failure_app.rb +28 -3
  21. data/lib/devise/models/authenticatable.rb +7 -15
  22. data/lib/devise/models/confirmable.rb +4 -1
  23. data/lib/devise/models/database_authenticatable.rb +41 -6
  24. data/lib/devise/models/lockable.rb +2 -2
  25. data/lib/devise/models/registerable.rb +2 -0
  26. data/lib/devise/strategies/database_authenticatable.rb +3 -0
  27. data/lib/devise/test/controller_helpers.rb +1 -1
  28. data/lib/devise/version.rb +1 -1
  29. data/lib/generators/active_record/devise_generator.rb +4 -4
  30. data/lib/generators/devise/controllers_generator.rb +1 -1
  31. data/lib/generators/templates/devise.rb +12 -3
  32. data/lib/generators/templates/simple_form_for/registrations/edit.html.erb +1 -1
  33. data/lib/generators/templates/simple_form_for/registrations/new.html.erb +1 -1
  34. metadata +5 -305
  35. data/.gitignore +0 -10
  36. data/.travis.yml +0 -69
  37. data/.yardopts +0 -9
  38. data/CODE_OF_CONDUCT.md +0 -22
  39. data/CONTRIBUTING.md +0 -79
  40. data/Gemfile +0 -39
  41. data/Gemfile.lock +0 -202
  42. data/ISSUE_TEMPLATE.md +0 -19
  43. data/Rakefile +0 -37
  44. data/bin/test +0 -13
  45. data/devise.gemspec +0 -28
  46. data/devise.png +0 -0
  47. data/gemfiles/Gemfile.rails-4.1-stable +0 -32
  48. data/gemfiles/Gemfile.rails-4.1-stable.lock +0 -171
  49. data/gemfiles/Gemfile.rails-4.2-stable +0 -32
  50. data/gemfiles/Gemfile.rails-4.2-stable.lock +0 -192
  51. data/gemfiles/Gemfile.rails-5.0-stable +0 -33
  52. data/gemfiles/Gemfile.rails-5.0-stable.lock +0 -192
  53. data/gemfiles/Gemfile.rails-5.2-rc1 +0 -26
  54. data/gemfiles/Gemfile.rails-5.2-rc1.lock +0 -201
  55. data/guides/bug_report_templates/integration_test.rb +0 -106
  56. data/test/controllers/custom_registrations_controller_test.rb +0 -42
  57. data/test/controllers/custom_strategy_test.rb +0 -66
  58. data/test/controllers/helper_methods_test.rb +0 -24
  59. data/test/controllers/helpers_test.rb +0 -318
  60. data/test/controllers/inherited_controller_i18n_messages_test.rb +0 -53
  61. data/test/controllers/internal_helpers_test.rb +0 -129
  62. data/test/controllers/load_hooks_controller_test.rb +0 -21
  63. data/test/controllers/passwords_controller_test.rb +0 -34
  64. data/test/controllers/sessions_controller_test.rb +0 -108
  65. data/test/controllers/url_helpers_test.rb +0 -67
  66. data/test/delegator_test.rb +0 -21
  67. data/test/devise_test.rb +0 -109
  68. data/test/failure_app_test.rb +0 -346
  69. data/test/generators/active_record_generator_test.rb +0 -130
  70. data/test/generators/controllers_generator_test.rb +0 -50
  71. data/test/generators/devise_generator_test.rb +0 -41
  72. data/test/generators/install_generator_test.rb +0 -26
  73. data/test/generators/mongoid_generator_test.rb +0 -25
  74. data/test/generators/views_generator_test.rb +0 -105
  75. data/test/helpers/devise_helper_test.rb +0 -51
  76. data/test/integration/authenticatable_test.rb +0 -706
  77. data/test/integration/confirmable_test.rb +0 -326
  78. data/test/integration/database_authenticatable_test.rb +0 -110
  79. data/test/integration/http_authenticatable_test.rb +0 -114
  80. data/test/integration/lockable_test.rb +0 -242
  81. data/test/integration/mounted_engine_test.rb +0 -38
  82. data/test/integration/omniauthable_test.rb +0 -148
  83. data/test/integration/recoverable_test.rb +0 -349
  84. data/test/integration/registerable_test.rb +0 -365
  85. data/test/integration/rememberable_test.rb +0 -219
  86. data/test/integration/timeoutable_test.rb +0 -186
  87. data/test/integration/trackable_test.rb +0 -99
  88. data/test/mailers/confirmation_instructions_test.rb +0 -117
  89. data/test/mailers/email_changed_test.rb +0 -132
  90. data/test/mailers/mailer_test.rb +0 -20
  91. data/test/mailers/reset_password_instructions_test.rb +0 -98
  92. data/test/mailers/unlock_instructions_test.rb +0 -93
  93. data/test/mapping_test.rb +0 -136
  94. data/test/models/authenticatable_test.rb +0 -25
  95. data/test/models/confirmable_test.rb +0 -549
  96. data/test/models/database_authenticatable_test.rb +0 -290
  97. data/test/models/lockable_test.rb +0 -352
  98. data/test/models/omniauthable_test.rb +0 -9
  99. data/test/models/recoverable_test.rb +0 -263
  100. data/test/models/registerable_test.rb +0 -9
  101. data/test/models/rememberable_test.rb +0 -184
  102. data/test/models/serializable_test.rb +0 -60
  103. data/test/models/timeoutable_test.rb +0 -53
  104. data/test/models/trackable_test.rb +0 -80
  105. data/test/models/validatable_test.rb +0 -121
  106. data/test/models_test.rb +0 -155
  107. data/test/omniauth/config_test.rb +0 -61
  108. data/test/omniauth/url_helpers_test.rb +0 -53
  109. data/test/orm/active_record.rb +0 -24
  110. data/test/orm/mongoid.rb +0 -15
  111. data/test/parameter_sanitizer_test.rb +0 -105
  112. data/test/rails_app/Rakefile +0 -6
  113. data/test/rails_app/app/active_record/admin.rb +0 -8
  114. data/test/rails_app/app/active_record/shim.rb +0 -4
  115. data/test/rails_app/app/active_record/user.rb +0 -20
  116. data/test/rails_app/app/active_record/user_on_engine.rb +0 -9
  117. data/test/rails_app/app/active_record/user_on_main_app.rb +0 -9
  118. data/test/rails_app/app/active_record/user_with_validations.rb +0 -12
  119. data/test/rails_app/app/active_record/user_without_email.rb +0 -10
  120. data/test/rails_app/app/controllers/admins/sessions_controller.rb +0 -8
  121. data/test/rails_app/app/controllers/admins_controller.rb +0 -8
  122. data/test/rails_app/app/controllers/application_controller.rb +0 -13
  123. data/test/rails_app/app/controllers/application_with_fake_engine.rb +0 -32
  124. data/test/rails_app/app/controllers/custom/registrations_controller.rb +0 -33
  125. data/test/rails_app/app/controllers/home_controller.rb +0 -31
  126. data/test/rails_app/app/controllers/publisher/registrations_controller.rb +0 -4
  127. data/test/rails_app/app/controllers/publisher/sessions_controller.rb +0 -4
  128. data/test/rails_app/app/controllers/users/omniauth_callbacks_controller.rb +0 -16
  129. data/test/rails_app/app/controllers/users_controller.rb +0 -33
  130. data/test/rails_app/app/helpers/application_helper.rb +0 -5
  131. data/test/rails_app/app/mailers/users/from_proc_mailer.rb +0 -5
  132. data/test/rails_app/app/mailers/users/mailer.rb +0 -5
  133. data/test/rails_app/app/mailers/users/reply_to_mailer.rb +0 -6
  134. data/test/rails_app/app/mongoid/admin.rb +0 -31
  135. data/test/rails_app/app/mongoid/shim.rb +0 -25
  136. data/test/rails_app/app/mongoid/user.rb +0 -50
  137. data/test/rails_app/app/mongoid/user_on_engine.rb +0 -41
  138. data/test/rails_app/app/mongoid/user_on_main_app.rb +0 -41
  139. data/test/rails_app/app/mongoid/user_with_validations.rb +0 -37
  140. data/test/rails_app/app/mongoid/user_without_email.rb +0 -35
  141. data/test/rails_app/app/views/admins/index.html.erb +0 -1
  142. data/test/rails_app/app/views/admins/sessions/new.html.erb +0 -2
  143. data/test/rails_app/app/views/home/admin_dashboard.html.erb +0 -1
  144. data/test/rails_app/app/views/home/index.html.erb +0 -1
  145. data/test/rails_app/app/views/home/join.html.erb +0 -1
  146. data/test/rails_app/app/views/home/private.html.erb +0 -1
  147. data/test/rails_app/app/views/home/user_dashboard.html.erb +0 -1
  148. data/test/rails_app/app/views/layouts/application.html.erb +0 -24
  149. data/test/rails_app/app/views/users/edit_form.html.erb +0 -1
  150. data/test/rails_app/app/views/users/index.html.erb +0 -1
  151. data/test/rails_app/app/views/users/mailer/confirmation_instructions.erb +0 -1
  152. data/test/rails_app/app/views/users/sessions/new.html.erb +0 -1
  153. data/test/rails_app/bin/bundle +0 -3
  154. data/test/rails_app/bin/rails +0 -4
  155. data/test/rails_app/bin/rake +0 -4
  156. data/test/rails_app/config.ru +0 -4
  157. data/test/rails_app/config/application.rb +0 -48
  158. data/test/rails_app/config/boot.rb +0 -27
  159. data/test/rails_app/config/database.yml +0 -18
  160. data/test/rails_app/config/environment.rb +0 -7
  161. data/test/rails_app/config/environments/development.rb +0 -32
  162. data/test/rails_app/config/environments/production.rb +0 -88
  163. data/test/rails_app/config/environments/test.rb +0 -47
  164. data/test/rails_app/config/initializers/backtrace_silencers.rb +0 -9
  165. data/test/rails_app/config/initializers/devise.rb +0 -187
  166. data/test/rails_app/config/initializers/inflections.rb +0 -4
  167. data/test/rails_app/config/initializers/secret_token.rb +0 -5
  168. data/test/rails_app/config/initializers/session_store.rb +0 -3
  169. data/test/rails_app/config/routes.rb +0 -128
  170. data/test/rails_app/db/migrate/20100401102949_create_tables.rb +0 -77
  171. data/test/rails_app/db/schema.rb +0 -57
  172. data/test/rails_app/lib/lazy_load_test_module.rb +0 -5
  173. data/test/rails_app/lib/shared_admin.rb +0 -23
  174. data/test/rails_app/lib/shared_user.rb +0 -32
  175. data/test/rails_app/lib/shared_user_without_email.rb +0 -28
  176. data/test/rails_app/lib/shared_user_without_omniauth.rb +0 -15
  177. data/test/rails_app/public/404.html +0 -26
  178. data/test/rails_app/public/422.html +0 -26
  179. data/test/rails_app/public/500.html +0 -26
  180. data/test/rails_app/public/favicon.ico +0 -0
  181. data/test/rails_test.rb +0 -11
  182. data/test/routes_test.rb +0 -281
  183. data/test/secret_key_finder_test.rb +0 -121
  184. data/test/support/action_controller/record_identifier.rb +0 -12
  185. data/test/support/assertions.rb +0 -30
  186. data/test/support/helpers.rb +0 -83
  187. data/test/support/http_method_compatibility.rb +0 -53
  188. data/test/support/integration.rb +0 -95
  189. data/test/support/locale/en.yml +0 -8
  190. data/test/support/mongoid.yml +0 -6
  191. data/test/support/webrat/integrations/rails.rb +0 -35
  192. data/test/test/controller_helpers_test.rb +0 -193
  193. data/test/test/integration_helpers_test.rb +0 -34
  194. data/test/test_helper.rb +0 -36
  195. data/test/test_models.rb +0 -35
data/.gitignore DELETED
@@ -1,10 +0,0 @@
1
- test/rails_app/log/*
2
- test/rails_app/tmp/*
3
- *~
4
- coverage/*
5
- *.sqlite3
6
- .bundle
7
- rdoc/*
8
- pkg
9
- log
10
- test/tmp/*
@@ -1,69 +0,0 @@
1
- language: ruby
2
-
3
- rvm:
4
- - 2.1.10
5
- - 2.2.10
6
- - 2.3.7
7
- - 2.4.4
8
- - 2.5.1
9
- - ruby-head
10
-
11
- gemfile:
12
- - Gemfile
13
- - gemfiles/Gemfile.rails-5.2-rc1
14
- - gemfiles/Gemfile.rails-5.0-stable
15
- - gemfiles/Gemfile.rails-4.2-stable
16
- - gemfiles/Gemfile.rails-4.1-stable
17
-
18
- matrix:
19
- exclude:
20
- - rvm: 2.1.10
21
- gemfile: Gemfile
22
- - rvm: 2.1.10
23
- gemfile: gemfiles/Gemfile.rails-5.2-rc1
24
- - rvm: 2.1.10
25
- gemfile: gemfiles/Gemfile.rails-5.0-stable
26
- - rvm: 2.2.10
27
- gemfile: gemfiles/Gemfile.rails-5.2-rc1
28
- - rvm: 2.4.4
29
- gemfile: gemfiles/Gemfile.rails-4.1-stable
30
- - rvm: 2.5.1
31
- gemfile: gemfiles/Gemfile.rails-4.1-stable
32
- - rvm: ruby-head
33
- gemfile: gemfiles/Gemfile.rails-4.1-stable
34
- - env: DEVISE_ORM=mongoid
35
- gemfile: Gemfile
36
- - env: DEVISE_ORM=mongoid
37
- gemfile: gemfiles/Gemfile.rails-5.0-stable
38
- - env: DEVISE_ORM=mongoid
39
- gemfile: gemfiles/Gemfile.rails-5.2-rc1
40
- allow_failures:
41
- - rvm: ruby-head
42
- services:
43
- - mongodb
44
-
45
- sudo: false
46
-
47
- cache: bundler
48
-
49
- env:
50
- matrix:
51
- - DEVISE_ORM=active_record
52
- - DEVISE_ORM=mongoid
53
-
54
- before_install:
55
- - gem update --system
56
- - gem install bundler
57
- - "rm ${BUNDLE_GEMFILE}.lock"
58
-
59
- before_script: "bundle update"
60
-
61
- script: "bin/test"
62
-
63
- notifications:
64
- email: false
65
- slack:
66
- on_pull_requests: false
67
- on_success: change
68
- on_failure: always
69
- secure: Q3M+kmude3FjisibEeeGe0wSMXgvwLH+vL7Zrx9//q4QtkfnrQ/BBMvY9KXxPEsNF+eys4YopYjTkJ8uRmeboUATW/oQ4Jrv3+u3zkIHK2sFn/Q2cQWpK5w+CbgEnHPjKYnUu34b09njXTgDlr/mqtbPqrKeZ1dLlpKXCB/q4GY=
data/.yardopts DELETED
@@ -1,9 +0,0 @@
1
- --protected
2
- --no-private
3
- --embed-mixin ClassMethods
4
- -
5
- README.md
6
- CHANGELOG.rdoc
7
- CONTRIBUTING.md
8
- MIT-LICENSE
9
-
@@ -1,22 +0,0 @@
1
- # Contributor Code of Conduct
2
-
3
- As contributors and maintainers of this project, and in the interest of fostering an open and welcoming community, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
4
-
5
- We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, religion, or nationality.
6
-
7
- Examples of unacceptable behavior by participants include:
8
-
9
- * The use of sexualized language or imagery
10
- * Personal attacks
11
- * Trolling or insulting/derogatory comments
12
- * Public or private harassment
13
- * Publishing other's private information, such as physical or electronic addresses, without explicit permission
14
- * Other unethical or unprofessional conduct.
15
-
16
- Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. By adopting this Code of Conduct, project maintainers commit themselves to fairly and consistently applying these principles to every aspect of managing this project. Project maintainers who do not follow or enforce the Code of Conduct may be permanently removed from the project team.
17
-
18
- This code of conduct applies both within project spaces and in public spaces when an individual is representing the project or its community.
19
-
20
- Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by sending an email to [conduct@plataformatec.com.br](conduct@plataformatec.com.br) or contacting one or more of the project maintainers.
21
-
22
- This Code of Conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org), version 1.2.0, available at [http://contributor-covenant.org/version/1/2/0/](http://contributor-covenant.org/version/1/2/0/)
@@ -1,79 +0,0 @@
1
- # How to contribute to Devise
2
-
3
- Thanks for your interest on contributing to Devise! Here are a few general
4
- guidelines on contributing and reporting bugs to Devise that we ask you to
5
- take a look first. Notice that all of your interactions in the project are
6
- expected to follow our [Code of Conduct](CODE_OF_CONDUCT.md).
7
-
8
- ## Reporting Issues
9
-
10
- Before reporting a new issue, please be sure that the issue wasn't already
11
- reported or fixed by searching on GitHub through our [issues](https://github.com/plataformatec/devise/issues).
12
-
13
- When creating a new issue, be sure to include a **title and clear description**,
14
- as much relevant information as possible, and either a test case example or
15
- even better a **sample Rails app that replicates the issue** - Devise has a lot
16
- of moving parts and it's functionality can be affected by third party gems, so
17
- we need as much context and details as possible to identify what might be broken
18
- for you. We have a [test case template](guides/bug_report_templates/integration_test.rb)
19
- that can be used to replicate issues with minimal setup.
20
-
21
- Please do not attempt to translate Devise built in views. The views are meant
22
- to be a starting point for fresh apps and not production material - eventually
23
- all applications will require custom views where you can write your own copy and
24
- translate it if the application requires it . For historical references, please look into closed
25
- [Issues/Pull Requests](https://github.com/plataformatec/devise/issues?q=i18n) regarding
26
- internationalization.
27
-
28
- Avoid opening new issues to ask questions in our issues tracker. Please go through
29
- the project wiki, documentation and source code first, or try to ask your question
30
- on [Stack Overflow](http://stackoverflow.com/questions/tagged/devise).
31
-
32
- **If you find a security bug, do not report it through GitHub. Please send an
33
- e-mail to [opensource@plataformatec.com.br](mailto:opensource@plataformatec.com.br)
34
- instead.**
35
-
36
- ## Sending Pull Requests
37
-
38
- Before sending a new Pull Request, take a look on existing Pull Requests and Issues
39
- to see if the proposed change or fix has been discussed in the past, or if the
40
- change was already implemented but not yet released.
41
-
42
- We expect new Pull Requests to include enough tests for new or changed behavior,
43
- and we aim to maintain everything as most backwards compatible as possible,
44
- reserving breaking changes to be ship in major releases when necessary - you
45
- can wrap the new code path with a setting toggle from the `Devise` module defined
46
- as `false` by default to require developers to opt-in for the new behavior.
47
-
48
- If your Pull Request includes new or changed behavior, be sure that the changes
49
- are beneficial to a wide range of use cases or it's an application specific change
50
- that might not be so valuable to other applications. Some changes can be introduced
51
- as a new `devise-something` gem instead of belonging to the main codebase.
52
-
53
- When adding new settings, you can take advantage of the [`Devise::Models.config`](https://github.com/plataformatec/devise/blob/245b1f9de0b3386b7913e14b60ea24f43b77feb0/lib/devise/models.rb#L13-L50) method to add class and instance level fallbacks
54
- to the new setting.
55
-
56
- We also welcome Pull Requests that improve our existing documentation (both our
57
- `README.md` and the RDoc sections in the source code) or improve existing rough
58
- edges in our API that might be blocking existing integrations or 3rd party gems.
59
-
60
- ## Other ways to contribute
61
-
62
- We welcome anyone that wants to contribute to Devise to triage and reply to
63
- open issues to help troubleshoot and fix existing bugs on Devise. Here is what
64
- you can do:
65
-
66
- * Help ensure that existing issues follows the recommendations from the
67
- _[Reporting Issues](#reporting-issues)_ section, providing feeback to the issue's
68
- author on what might be missing.
69
- * Review and update the existing content of our [Wiki](https://github.com/plataformatec/devise/wiki)
70
- with up to date instructions and code samples - the wiki was grown with several
71
- different tutorials and references that we can't keep track of everything, so if
72
- there is a page that showcases an integration or customization that you are
73
- familiar with feel free to update it as necessary.
74
- * Review existing Pull Requests, and testing patches against real existing
75
- applications that use Devise.
76
-
77
- Thanks again for your interest on contributing to the project!
78
-
79
- :heart:
data/Gemfile DELETED
@@ -1,39 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- source "https://rubygems.org"
4
-
5
- gemspec
6
-
7
- gem "rails", "~> 5.2"
8
- gem "omniauth", "~> 1.3"
9
- gem "oauth2"
10
- gem "omniauth-oauth2"
11
- gem "rdoc"
12
-
13
- gem "activemodel-serializers-xml", github: "rails/activemodel-serializers-xml"
14
-
15
- gem "rails-controller-testing"
16
-
17
- gem "responders", "~> 2.4"
18
-
19
- group :test do
20
- gem "omniauth-facebook"
21
- gem "omniauth-openid"
22
- gem "webrat", "0.7.3", require: false
23
- gem "mocha", "~> 1.1", require: false
24
- end
25
-
26
- platforms :jruby do
27
- gem "activerecord-jdbc-adapter"
28
- gem "activerecord-jdbcsqlite3-adapter"
29
- gem "jruby-openssl"
30
- end
31
-
32
- platforms :ruby do
33
- gem "sqlite3"
34
- end
35
-
36
- # TODO:
37
- # group :mongoid do
38
- # gem "mongoid", "~> 4.0.0"
39
- # end
@@ -1,202 +0,0 @@
1
- GIT
2
- remote: git://github.com/rails/activemodel-serializers-xml.git
3
- revision: dd9c0acf26aab111ebc647cd8deb99ebc6946531
4
- specs:
5
- activemodel-serializers-xml (1.0.1)
6
- activemodel (> 5.x)
7
- activesupport (> 5.x)
8
- builder (~> 3.1)
9
-
10
- PATH
11
- remote: .
12
- specs:
13
- devise (4.5.0)
14
- bcrypt (~> 3.0)
15
- orm_adapter (~> 0.1)
16
- railties (>= 4.1.0, < 6.0)
17
- responders
18
- warden (~> 1.2.3)
19
-
20
- GEM
21
- remote: https://rubygems.org/
22
- specs:
23
- actioncable (5.2.0)
24
- actionpack (= 5.2.0)
25
- nio4r (~> 2.0)
26
- websocket-driver (>= 0.6.1)
27
- actionmailer (5.2.0)
28
- actionpack (= 5.2.0)
29
- actionview (= 5.2.0)
30
- activejob (= 5.2.0)
31
- mail (~> 2.5, >= 2.5.4)
32
- rails-dom-testing (~> 2.0)
33
- actionpack (5.2.0)
34
- actionview (= 5.2.0)
35
- activesupport (= 5.2.0)
36
- rack (~> 2.0)
37
- rack-test (>= 0.6.3)
38
- rails-dom-testing (~> 2.0)
39
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
40
- actionview (5.2.0)
41
- activesupport (= 5.2.0)
42
- builder (~> 3.1)
43
- erubi (~> 1.4)
44
- rails-dom-testing (~> 2.0)
45
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
46
- activejob (5.2.0)
47
- activesupport (= 5.2.0)
48
- globalid (>= 0.3.6)
49
- activemodel (5.2.0)
50
- activesupport (= 5.2.0)
51
- activerecord (5.2.0)
52
- activemodel (= 5.2.0)
53
- activesupport (= 5.2.0)
54
- arel (>= 9.0)
55
- activestorage (5.2.0)
56
- actionpack (= 5.2.0)
57
- activerecord (= 5.2.0)
58
- marcel (~> 0.3.1)
59
- activesupport (5.2.0)
60
- concurrent-ruby (~> 1.0, >= 1.0.2)
61
- i18n (>= 0.7, < 2)
62
- minitest (~> 5.1)
63
- tzinfo (~> 1.1)
64
- arel (9.0.0)
65
- bcrypt (3.1.12)
66
- builder (3.2.3)
67
- concurrent-ruby (1.0.5)
68
- crass (1.0.4)
69
- erubi (1.7.1)
70
- faraday (0.11.0)
71
- multipart-post (>= 1.2, < 3)
72
- globalid (0.4.1)
73
- activesupport (>= 4.2.0)
74
- hashie (3.5.7)
75
- i18n (1.0.0)
76
- concurrent-ruby (~> 1.0)
77
- jwt (1.5.6)
78
- loofah (2.2.2)
79
- crass (~> 1.0.2)
80
- nokogiri (>= 1.5.9)
81
- mail (2.7.0)
82
- mini_mime (>= 0.1.1)
83
- marcel (0.3.2)
84
- mimemagic (~> 0.3.2)
85
- metaclass (0.0.4)
86
- method_source (0.9.0)
87
- mimemagic (0.3.2)
88
- mini_mime (1.0.0)
89
- mini_portile2 (2.3.0)
90
- minitest (5.11.3)
91
- mocha (1.2.1)
92
- metaclass (~> 0.0.1)
93
- multi_json (1.12.1)
94
- multi_xml (0.6.0)
95
- multipart-post (2.0.0)
96
- nio4r (2.3.0)
97
- nokogiri (1.8.2)
98
- mini_portile2 (~> 2.3.0)
99
- oauth2 (1.3.1)
100
- faraday (>= 0.8, < 0.12)
101
- jwt (~> 1.0)
102
- multi_json (~> 1.3)
103
- multi_xml (~> 0.5)
104
- rack (>= 1.2, < 3)
105
- omniauth (1.8.1)
106
- hashie (>= 3.4.6, < 3.6.0)
107
- rack (>= 1.6.2, < 3)
108
- omniauth-facebook (4.0.0)
109
- omniauth-oauth2 (~> 1.2)
110
- omniauth-oauth2 (1.4.0)
111
- oauth2 (~> 1.0)
112
- omniauth (~> 1.2)
113
- omniauth-openid (1.0.1)
114
- omniauth (~> 1.0)
115
- rack-openid (~> 1.3.1)
116
- orm_adapter (0.5.0)
117
- rack (2.0.4)
118
- rack-openid (1.3.1)
119
- rack (>= 1.1.0)
120
- ruby-openid (>= 2.1.8)
121
- rack-test (1.0.0)
122
- rack (>= 1.0, < 3)
123
- rails (5.2.0)
124
- actioncable (= 5.2.0)
125
- actionmailer (= 5.2.0)
126
- actionpack (= 5.2.0)
127
- actionview (= 5.2.0)
128
- activejob (= 5.2.0)
129
- activemodel (= 5.2.0)
130
- activerecord (= 5.2.0)
131
- activestorage (= 5.2.0)
132
- activesupport (= 5.2.0)
133
- bundler (>= 1.3.0)
134
- railties (= 5.2.0)
135
- sprockets-rails (>= 2.0.0)
136
- rails-controller-testing (1.0.1)
137
- actionpack (~> 5.x)
138
- actionview (~> 5.x)
139
- activesupport (~> 5.x)
140
- rails-dom-testing (2.0.3)
141
- activesupport (>= 4.2.0)
142
- nokogiri (>= 1.6)
143
- rails-html-sanitizer (1.0.4)
144
- loofah (~> 2.2, >= 2.2.2)
145
- railties (5.2.0)
146
- actionpack (= 5.2.0)
147
- activesupport (= 5.2.0)
148
- method_source
149
- rake (>= 0.8.7)
150
- thor (>= 0.18.1, < 2.0)
151
- rake (12.3.1)
152
- rdoc (5.1.0)
153
- responders (2.4.0)
154
- actionpack (>= 4.2.0, < 5.3)
155
- railties (>= 4.2.0, < 5.3)
156
- ruby-openid (2.7.0)
157
- sprockets (3.7.1)
158
- concurrent-ruby (~> 1.0)
159
- rack (> 1, < 3)
160
- sprockets-rails (3.2.1)
161
- actionpack (>= 4.0)
162
- activesupport (>= 4.0)
163
- sprockets (>= 3.0.0)
164
- sqlite3 (1.3.13)
165
- thor (0.20.0)
166
- thread_safe (0.3.6)
167
- tzinfo (1.2.5)
168
- thread_safe (~> 0.1)
169
- warden (1.2.7)
170
- rack (>= 1.0)
171
- webrat (0.7.3)
172
- nokogiri (>= 1.2.0)
173
- rack (>= 1.0)
174
- rack-test (>= 0.5.3)
175
- websocket-driver (0.7.0)
176
- websocket-extensions (>= 0.1.0)
177
- websocket-extensions (0.1.3)
178
-
179
- PLATFORMS
180
- ruby
181
-
182
- DEPENDENCIES
183
- activemodel-serializers-xml!
184
- activerecord-jdbc-adapter
185
- activerecord-jdbcsqlite3-adapter
186
- devise!
187
- jruby-openssl
188
- mocha (~> 1.1)
189
- oauth2
190
- omniauth (~> 1.3)
191
- omniauth-facebook
192
- omniauth-oauth2
193
- omniauth-openid
194
- rails (~> 5.2)
195
- rails-controller-testing
196
- rdoc
197
- responders (~> 2.4)
198
- sqlite3
199
- webrat (= 0.7.3)
200
-
201
- BUNDLED WITH
202
- 1.16.1
@@ -1,19 +0,0 @@
1
- ## Precheck
2
-
3
- - Do not use the issues tracker for help or support, try Stack Overflow.
4
- - For bugs, do a quick search and make sure the bug has not yet been reported
5
- - Finally, be nice and have fun!
6
-
7
- ## Environment
8
-
9
- - Ruby **[version]**
10
- - Rails **[version]**
11
- - Devise **[version]**
12
-
13
- ## Current behavior
14
-
15
- Include code samples, errors, steps to reproduce the error and stacktraces if appropriate.
16
-
17
- Will be even more helpful if you provide a sample application or a test case that reproduces the error.
18
-
19
- ## Expected behavior