devise 3.2.4 → 4.0.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.
- checksums.yaml +4 -4
- data/.gitignore +0 -1
- data/.travis.yml +33 -17
- data/CHANGELOG.md +57 -1033
- data/CODE_OF_CONDUCT.md +22 -0
- data/CONTRIBUTING.md +2 -0
- data/Gemfile +5 -5
- data/Gemfile.lock +138 -115
- data/MIT-LICENSE +1 -1
- data/README.md +124 -65
- data/Rakefile +2 -1
- data/app/controllers/devise/confirmations_controller.rb +7 -3
- data/app/controllers/devise/omniauth_callbacks_controller.rb +8 -4
- data/app/controllers/devise/passwords_controller.rb +16 -6
- data/app/controllers/devise/registrations_controller.rb +22 -10
- data/app/controllers/devise/sessions_controller.rb +42 -14
- data/app/controllers/devise/unlocks_controller.rb +5 -2
- data/app/controllers/devise_controller.rb +63 -29
- data/app/mailers/devise/mailer.rb +4 -0
- data/app/views/devise/confirmations/new.html.erb +7 -3
- data/app/views/devise/mailer/password_change.html.erb +3 -0
- data/app/views/devise/passwords/edit.html.erb +14 -5
- data/app/views/devise/passwords/new.html.erb +7 -3
- data/app/views/devise/registrations/edit.html.erb +19 -9
- data/app/views/devise/registrations/new.html.erb +18 -7
- data/app/views/devise/sessions/new.html.erb +16 -7
- data/app/views/devise/shared/{_links.erb → _links.html.erb} +2 -2
- data/app/views/devise/unlocks/new.html.erb +7 -3
- data/bin/test +13 -0
- data/config/locales/en.yml +19 -16
- data/devise.gemspec +3 -4
- data/gemfiles/{Gemfile.rails-3.2-stable → Gemfile.rails-4.1-stable} +6 -6
- data/gemfiles/Gemfile.rails-4.1-stable.lock +167 -0
- data/gemfiles/{Gemfile.rails-head → Gemfile.rails-4.2-stable} +6 -6
- data/gemfiles/Gemfile.rails-4.2-stable.lock +189 -0
- data/gemfiles/Gemfile.rails-5.0-beta +37 -0
- data/gemfiles/Gemfile.rails-5.0-beta.lock +199 -0
- data/lib/devise/controllers/helpers.rb +94 -27
- data/lib/devise/controllers/rememberable.rb +9 -2
- data/lib/devise/controllers/sign_in_out.rb +2 -9
- data/lib/devise/controllers/store_location.rb +11 -3
- data/lib/devise/controllers/url_helpers.rb +7 -7
- data/lib/devise/encryptor.rb +22 -0
- data/lib/devise/failure_app.rb +72 -23
- data/lib/devise/hooks/activatable.rb +3 -4
- data/lib/devise/hooks/csrf_cleaner.rb +3 -1
- data/lib/devise/hooks/timeoutable.rb +13 -8
- data/lib/devise/mailers/helpers.rb +1 -1
- data/lib/devise/mapping.rb +6 -2
- data/lib/devise/models/authenticatable.rb +32 -28
- data/lib/devise/models/confirmable.rb +55 -22
- data/lib/devise/models/database_authenticatable.rb +32 -19
- data/lib/devise/models/lockable.rb +5 -5
- data/lib/devise/models/recoverable.rb +44 -20
- data/lib/devise/models/rememberable.rb +54 -27
- data/lib/devise/models/timeoutable.rb +0 -6
- data/lib/devise/models/trackable.rb +5 -3
- data/lib/devise/models/validatable.rb +3 -3
- data/lib/devise/models.rb +1 -1
- data/lib/devise/omniauth/url_helpers.rb +62 -4
- data/lib/devise/parameter_sanitizer.rb +176 -61
- data/lib/devise/rails/routes.rb +76 -59
- data/lib/devise/rails/warden_compat.rb +1 -10
- data/lib/devise/rails.rb +2 -11
- data/lib/devise/strategies/authenticatable.rb +15 -6
- data/lib/devise/strategies/database_authenticatable.rb +5 -4
- data/lib/devise/strategies/rememberable.rb +13 -3
- data/lib/devise/test_helpers.rb +12 -7
- data/lib/devise/token_generator.rb +1 -41
- data/lib/devise/version.rb +1 -1
- data/lib/devise.rb +150 -58
- data/lib/generators/active_record/devise_generator.rb +28 -4
- data/lib/generators/active_record/templates/migration.rb +3 -3
- data/lib/generators/active_record/templates/migration_existing.rb +3 -3
- data/lib/generators/devise/controllers_generator.rb +44 -0
- data/lib/generators/devise/install_generator.rb +15 -0
- data/lib/generators/devise/orm_helpers.rb +1 -18
- data/lib/generators/devise/views_generator.rb +14 -3
- data/lib/generators/templates/README +1 -1
- data/lib/generators/templates/controllers/README +14 -0
- data/lib/generators/templates/controllers/confirmations_controller.rb +28 -0
- data/lib/generators/templates/controllers/omniauth_callbacks_controller.rb +28 -0
- data/lib/generators/templates/controllers/passwords_controller.rb +32 -0
- data/lib/generators/templates/controllers/registrations_controller.rb +60 -0
- data/lib/generators/templates/controllers/sessions_controller.rb +25 -0
- data/lib/generators/templates/controllers/unlocks_controller.rb +28 -0
- data/lib/generators/templates/devise.rb +36 -28
- data/lib/generators/templates/markerb/confirmation_instructions.markerb +1 -1
- data/lib/generators/templates/markerb/password_change.markerb +3 -0
- data/lib/generators/templates/markerb/reset_password_instructions.markerb +1 -1
- data/lib/generators/templates/markerb/unlock_instructions.markerb +1 -1
- data/lib/generators/templates/simple_form_for/passwords/edit.html.erb +1 -1
- data/lib/generators/templates/simple_form_for/registrations/new.html.erb +1 -1
- data/lib/generators/templates/simple_form_for/sessions/new.html.erb +2 -2
- data/test/controllers/custom_registrations_controller_test.rb +40 -0
- data/test/controllers/custom_strategy_test.rb +7 -5
- data/test/controllers/helper_methods_test.rb +22 -0
- data/test/controllers/helpers_test.rb +41 -1
- data/test/controllers/inherited_controller_i18n_messages_test.rb +51 -0
- data/test/controllers/internal_helpers_test.rb +19 -15
- data/test/controllers/load_hooks_controller_test.rb +19 -0
- data/test/controllers/passwords_controller_test.rb +5 -4
- data/test/controllers/sessions_controller_test.rb +24 -21
- data/test/controllers/url_helpers_test.rb +7 -1
- data/test/devise_test.rb +48 -8
- data/test/failure_app_test.rb +107 -19
- data/test/generators/active_record_generator_test.rb +6 -26
- data/test/generators/controllers_generator_test.rb +48 -0
- data/test/generators/install_generator_test.rb +14 -3
- data/test/generators/views_generator_test.rb +8 -1
- data/test/helpers/devise_helper_test.rb +10 -12
- data/test/integration/authenticatable_test.rb +37 -21
- data/test/integration/confirmable_test.rb +54 -14
- data/test/integration/database_authenticatable_test.rb +12 -1
- data/test/integration/http_authenticatable_test.rb +4 -5
- data/test/integration/lockable_test.rb +10 -9
- data/test/integration/omniauthable_test.rb +13 -11
- data/test/integration/recoverable_test.rb +28 -15
- data/test/integration/registerable_test.rb +41 -33
- data/test/integration/rememberable_test.rb +51 -7
- data/test/integration/timeoutable_test.rb +23 -22
- data/test/integration/trackable_test.rb +3 -3
- data/test/mailers/confirmation_instructions_test.rb +10 -10
- data/test/mailers/reset_password_instructions_test.rb +8 -8
- data/test/mailers/unlock_instructions_test.rb +8 -8
- data/test/mapping_test.rb +7 -0
- data/test/models/authenticatable_test.rb +11 -1
- data/test/models/confirmable_test.rb +91 -42
- data/test/models/database_authenticatable_test.rb +26 -6
- data/test/models/lockable_test.rb +29 -17
- data/test/models/recoverable_test.rb +74 -7
- data/test/models/rememberable_test.rb +68 -94
- data/test/models/trackable_test.rb +28 -0
- data/test/models/validatable_test.rb +9 -17
- data/test/models_test.rb +15 -6
- data/test/omniauth/url_helpers_test.rb +4 -7
- data/test/orm/active_record.rb +6 -1
- data/test/parameter_sanitizer_test.rb +103 -53
- data/test/rails_app/app/active_record/user.rb +1 -0
- data/test/rails_app/app/active_record/user_on_engine.rb +7 -0
- data/test/rails_app/app/active_record/user_on_main_app.rb +7 -0
- data/test/rails_app/app/active_record/user_without_email.rb +8 -0
- data/test/rails_app/app/controllers/admins_controller.rb +1 -6
- data/test/rails_app/app/controllers/application_controller.rb +5 -2
- data/test/rails_app/app/controllers/application_with_fake_engine.rb +30 -0
- data/test/rails_app/app/controllers/custom/registrations_controller.rb +31 -0
- data/test/rails_app/app/controllers/home_controller.rb +5 -1
- data/test/rails_app/app/controllers/users/omniauth_callbacks_controller.rb +3 -3
- data/test/rails_app/app/controllers/users_controller.rb +6 -6
- data/test/rails_app/app/mailers/users/from_proc_mailer.rb +3 -0
- data/test/rails_app/app/mailers/users/mailer.rb +0 -9
- data/test/rails_app/app/mailers/users/reply_to_mailer.rb +4 -0
- data/test/rails_app/app/mongoid/user_on_engine.rb +39 -0
- data/test/rails_app/app/mongoid/user_on_main_app.rb +39 -0
- data/test/rails_app/app/mongoid/user_without_email.rb +33 -0
- data/test/rails_app/config/application.rb +3 -3
- data/test/rails_app/config/boot.rb +4 -4
- data/test/rails_app/config/environments/production.rb +6 -2
- data/test/rails_app/config/environments/test.rb +13 -3
- data/test/rails_app/config/initializers/devise.rb +15 -16
- data/test/rails_app/config/initializers/secret_token.rb +1 -6
- data/test/rails_app/config/routes.rb +23 -3
- data/test/rails_app/db/migrate/20100401102949_create_tables.rb +2 -2
- data/test/rails_app/lib/shared_user.rb +1 -1
- data/test/rails_app/lib/shared_user_without_email.rb +26 -0
- data/test/rails_app/lib/shared_user_without_omniauth.rb +13 -0
- data/test/rails_test.rb +9 -0
- data/test/routes_test.rb +33 -16
- data/test/support/assertions.rb +2 -3
- data/test/support/helpers.rb +13 -6
- data/test/support/http_method_compatibility.rb +51 -0
- data/test/support/integration.rb +4 -4
- data/test/support/webrat/integrations/rails.rb +9 -0
- data/test/test_helper.rb +7 -0
- data/test/test_helpers_test.rb +43 -38
- data/test/test_models.rb +3 -3
- metadata +77 -23
- data/gemfiles/Gemfile.rails-4.0-stable +0 -29
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,22 @@
|
|
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/)
|
data/CONTRIBUTING.md
CHANGED
@@ -8,6 +8,8 @@
|
|
8
8
|
|
9
9
|
4) When reporting an issue, include Rails, Devise and Warden versions. If you are getting exceptions, please include the full backtrace.
|
10
10
|
|
11
|
+
5) Notice that all of your interactions in the project are expected to follow our [Code of Conduct](CODE_OF_CONDUCT.md)
|
12
|
+
|
11
13
|
That's it! The more information you give, the easier it becomes for us to track it down and fix it.
|
12
14
|
Ideally, you should provide an application that reproduces the error or a test case to Devise's suite.
|
13
15
|
|
data/Gemfile
CHANGED
@@ -2,16 +2,16 @@ source "https://rubygems.org"
|
|
2
2
|
|
3
3
|
gemspec
|
4
4
|
|
5
|
-
gem "rails", "~> 4.
|
6
|
-
gem "omniauth", "~> 1.
|
7
|
-
gem "omniauth-oauth2", "~> 1.
|
5
|
+
gem "rails", "~> 4.2.6"
|
6
|
+
gem "omniauth", "~> 1.3"
|
7
|
+
gem "omniauth-oauth2", "~> 1.4"
|
8
8
|
gem "rdoc"
|
9
9
|
|
10
10
|
group :test do
|
11
11
|
gem "omniauth-facebook"
|
12
12
|
gem "omniauth-openid", "~> 1.0.1"
|
13
13
|
gem "webrat", "0.7.3", require: false
|
14
|
-
gem "mocha", "~> 1.
|
14
|
+
gem "mocha", "~> 1.1", require: false
|
15
15
|
end
|
16
16
|
|
17
17
|
platforms :jruby do
|
@@ -25,5 +25,5 @@ platforms :ruby do
|
|
25
25
|
end
|
26
26
|
|
27
27
|
group :mongoid do
|
28
|
-
gem "mongoid",
|
28
|
+
gem "mongoid", "~> 4.0"
|
29
29
|
end
|
data/Gemfile.lock
CHANGED
@@ -1,139 +1,159 @@
|
|
1
|
-
GIT
|
2
|
-
remote: git://github.com/mongoid/mongoid.git
|
3
|
-
revision: 346a79a7d01aa194de80e649916239a18d38ce13
|
4
|
-
branch: master
|
5
|
-
specs:
|
6
|
-
mongoid (4.0.0)
|
7
|
-
activemodel (~> 4.0.0)
|
8
|
-
moped (~> 1.5)
|
9
|
-
origin (~> 1.0)
|
10
|
-
tzinfo (~> 0.3.22)
|
11
|
-
|
12
1
|
PATH
|
13
2
|
remote: .
|
14
3
|
specs:
|
15
|
-
devise (
|
4
|
+
devise (4.0.0)
|
16
5
|
bcrypt (~> 3.0)
|
17
6
|
orm_adapter (~> 0.1)
|
18
|
-
railties (>=
|
19
|
-
|
7
|
+
railties (>= 4.1.0, < 5.1)
|
8
|
+
responders
|
20
9
|
warden (~> 1.2.3)
|
21
10
|
|
22
11
|
GEM
|
23
12
|
remote: https://rubygems.org/
|
24
13
|
specs:
|
25
|
-
actionmailer (4.
|
26
|
-
actionpack (= 4.
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
14
|
+
actionmailer (4.2.6)
|
15
|
+
actionpack (= 4.2.6)
|
16
|
+
actionview (= 4.2.6)
|
17
|
+
activejob (= 4.2.6)
|
18
|
+
mail (~> 2.5, >= 2.5.4)
|
19
|
+
rails-dom-testing (~> 1.0, >= 1.0.5)
|
20
|
+
actionpack (4.2.6)
|
21
|
+
actionview (= 4.2.6)
|
22
|
+
activesupport (= 4.2.6)
|
23
|
+
rack (~> 1.6)
|
33
24
|
rack-test (~> 0.6.2)
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
25
|
+
rails-dom-testing (~> 1.0, >= 1.0.5)
|
26
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
27
|
+
actionview (4.2.6)
|
28
|
+
activesupport (= 4.2.6)
|
29
|
+
builder (~> 3.1)
|
30
|
+
erubis (~> 2.7.0)
|
31
|
+
rails-dom-testing (~> 1.0, >= 1.0.5)
|
32
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
33
|
+
activejob (4.2.6)
|
34
|
+
activesupport (= 4.2.6)
|
35
|
+
globalid (>= 0.3.0)
|
36
|
+
activemodel (4.2.6)
|
37
|
+
activesupport (= 4.2.6)
|
38
|
+
builder (~> 3.1)
|
39
|
+
activerecord (4.2.6)
|
40
|
+
activemodel (= 4.2.6)
|
41
|
+
activesupport (= 4.2.6)
|
42
|
+
arel (~> 6.0)
|
43
|
+
activesupport (4.2.6)
|
44
|
+
i18n (~> 0.7)
|
45
|
+
json (~> 1.7, >= 1.7.7)
|
46
|
+
minitest (~> 5.1)
|
47
|
+
thread_safe (~> 0.3, >= 0.3.4)
|
48
|
+
tzinfo (~> 1.1)
|
49
|
+
arel (6.0.3)
|
50
|
+
bcrypt (3.1.11)
|
51
|
+
bson (3.2.6)
|
52
|
+
builder (3.2.2)
|
53
|
+
concurrent-ruby (1.0.1)
|
54
|
+
connection_pool (2.2.0)
|
53
55
|
erubis (2.7.0)
|
54
|
-
faraday (0.
|
55
|
-
multipart-post (
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
i18n (0.
|
60
|
-
json (1.8.
|
61
|
-
jwt (
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
56
|
+
faraday (0.9.2)
|
57
|
+
multipart-post (>= 1.2, < 3)
|
58
|
+
globalid (0.3.6)
|
59
|
+
activesupport (>= 4.1.0)
|
60
|
+
hashie (3.4.3)
|
61
|
+
i18n (0.7.0)
|
62
|
+
json (1.8.3)
|
63
|
+
jwt (1.5.1)
|
64
|
+
loofah (2.0.3)
|
65
|
+
nokogiri (>= 1.5.9)
|
66
|
+
mail (2.6.3)
|
67
|
+
mime-types (>= 1.16, < 3)
|
66
68
|
metaclass (0.0.4)
|
67
|
-
mime-types (1
|
68
|
-
|
69
|
-
|
69
|
+
mime-types (2.99.1)
|
70
|
+
mini_portile2 (2.0.0)
|
71
|
+
minitest (5.8.4)
|
72
|
+
mocha (1.1.0)
|
70
73
|
metaclass (~> 0.0.1)
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
74
|
+
mongoid (4.0.2)
|
75
|
+
activemodel (~> 4.0)
|
76
|
+
moped (~> 2.0.0)
|
77
|
+
origin (~> 2.1)
|
78
|
+
tzinfo (>= 0.3.37)
|
79
|
+
moped (2.0.7)
|
80
|
+
bson (~> 3.0)
|
81
|
+
connection_pool (~> 2.0)
|
82
|
+
optionable (~> 0.2.0)
|
83
|
+
multi_json (1.11.2)
|
84
|
+
multi_xml (0.5.5)
|
85
|
+
multipart-post (2.0.0)
|
86
|
+
nokogiri (1.6.7.2)
|
87
|
+
mini_portile2 (~> 2.0.0.rc2)
|
88
|
+
oauth2 (1.1.0)
|
89
|
+
faraday (>= 0.8, < 0.10)
|
90
|
+
jwt (~> 1.0, < 1.5.2)
|
91
|
+
multi_json (~> 1.3)
|
92
|
+
multi_xml (~> 0.5)
|
93
|
+
rack (>= 1.2, < 3)
|
94
|
+
omniauth (1.3.1)
|
95
|
+
hashie (>= 1.2, < 4)
|
96
|
+
rack (>= 1.0, < 3)
|
97
|
+
omniauth-facebook (3.0.0)
|
98
|
+
omniauth-oauth2 (~> 1.2)
|
99
|
+
omniauth-oauth2 (1.4.0)
|
100
|
+
oauth2 (~> 1.0)
|
101
|
+
omniauth (~> 1.2)
|
89
102
|
omniauth-openid (1.0.1)
|
90
103
|
omniauth (~> 1.0)
|
91
104
|
rack-openid (~> 1.3.1)
|
92
|
-
|
105
|
+
optionable (0.2.0)
|
106
|
+
origin (2.2.0)
|
93
107
|
orm_adapter (0.5.0)
|
94
|
-
|
95
|
-
rack (1.5.2)
|
108
|
+
rack (1.6.4)
|
96
109
|
rack-openid (1.3.1)
|
97
110
|
rack (>= 1.1.0)
|
98
111
|
ruby-openid (>= 2.1.8)
|
99
|
-
rack-test (0.6.
|
112
|
+
rack-test (0.6.3)
|
100
113
|
rack (>= 1.0)
|
101
|
-
rails (4.
|
102
|
-
actionmailer (= 4.
|
103
|
-
actionpack (= 4.
|
104
|
-
|
105
|
-
|
114
|
+
rails (4.2.6)
|
115
|
+
actionmailer (= 4.2.6)
|
116
|
+
actionpack (= 4.2.6)
|
117
|
+
actionview (= 4.2.6)
|
118
|
+
activejob (= 4.2.6)
|
119
|
+
activemodel (= 4.2.6)
|
120
|
+
activerecord (= 4.2.6)
|
121
|
+
activesupport (= 4.2.6)
|
106
122
|
bundler (>= 1.3.0, < 2.0)
|
107
|
-
railties (= 4.
|
108
|
-
sprockets-rails
|
109
|
-
|
110
|
-
|
111
|
-
|
123
|
+
railties (= 4.2.6)
|
124
|
+
sprockets-rails
|
125
|
+
rails-deprecated_sanitizer (1.0.3)
|
126
|
+
activesupport (>= 4.2.0.alpha)
|
127
|
+
rails-dom-testing (1.0.7)
|
128
|
+
activesupport (>= 4.2.0.beta, < 5.0)
|
129
|
+
nokogiri (~> 1.6.0)
|
130
|
+
rails-deprecated_sanitizer (>= 1.0.1)
|
131
|
+
rails-html-sanitizer (1.0.3)
|
132
|
+
loofah (~> 2.0)
|
133
|
+
railties (4.2.6)
|
134
|
+
actionpack (= 4.2.6)
|
135
|
+
activesupport (= 4.2.6)
|
112
136
|
rake (>= 0.8.7)
|
113
137
|
thor (>= 0.18.1, < 2.0)
|
114
|
-
rake (
|
115
|
-
rdoc (4.
|
138
|
+
rake (11.0.1)
|
139
|
+
rdoc (4.2.2)
|
116
140
|
json (~> 1.4)
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
sprockets-rails (
|
124
|
-
actionpack (>=
|
125
|
-
activesupport (>=
|
126
|
-
sprockets (
|
127
|
-
sqlite3 (1.3.
|
128
|
-
thor (0.
|
129
|
-
thread_safe (0.
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
polyglot
|
134
|
-
polyglot (>= 0.3.1)
|
135
|
-
tzinfo (0.3.37)
|
136
|
-
warden (1.2.3)
|
141
|
+
responders (2.1.2)
|
142
|
+
railties (>= 4.2.0, < 5.1)
|
143
|
+
ruby-openid (2.7.0)
|
144
|
+
sprockets (3.5.2)
|
145
|
+
concurrent-ruby (~> 1.0)
|
146
|
+
rack (> 1, < 3)
|
147
|
+
sprockets-rails (3.0.4)
|
148
|
+
actionpack (>= 4.0)
|
149
|
+
activesupport (>= 4.0)
|
150
|
+
sprockets (>= 3.0.0)
|
151
|
+
sqlite3 (1.3.11)
|
152
|
+
thor (0.19.1)
|
153
|
+
thread_safe (0.3.5)
|
154
|
+
tzinfo (1.2.2)
|
155
|
+
thread_safe (~> 0.1)
|
156
|
+
warden (1.2.6)
|
137
157
|
rack (>= 1.0)
|
138
158
|
webrat (0.7.3)
|
139
159
|
nokogiri (>= 1.2.0)
|
@@ -148,13 +168,16 @@ DEPENDENCIES
|
|
148
168
|
activerecord-jdbcsqlite3-adapter
|
149
169
|
devise!
|
150
170
|
jruby-openssl
|
151
|
-
mocha (~> 1.
|
152
|
-
mongoid
|
153
|
-
omniauth (~> 1.
|
171
|
+
mocha (~> 1.1)
|
172
|
+
mongoid (~> 4.0)
|
173
|
+
omniauth (~> 1.3)
|
154
174
|
omniauth-facebook
|
155
|
-
omniauth-oauth2 (~> 1.
|
175
|
+
omniauth-oauth2 (~> 1.4)
|
156
176
|
omniauth-openid (~> 1.0.1)
|
157
|
-
rails (~> 4.
|
177
|
+
rails (~> 4.2.6)
|
158
178
|
rdoc
|
159
179
|
sqlite3
|
160
180
|
webrat (= 0.7.3)
|
181
|
+
|
182
|
+
BUNDLED WITH
|
183
|
+
1.11.2
|
data/MIT-LICENSE
CHANGED