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.
- checksums.yaml +5 -5
- data/CHANGELOG.md +30 -1
- data/MIT-LICENSE +1 -1
- data/README.md +18 -0
- data/app/controllers/devise/passwords_controller.rb +1 -0
- data/app/controllers/devise/registrations_controller.rb +25 -7
- data/app/helpers/devise_helper.rb +10 -19
- data/app/views/devise/confirmations/new.html.erb +1 -1
- data/app/views/devise/passwords/edit.html.erb +1 -1
- data/app/views/devise/passwords/new.html.erb +1 -1
- data/app/views/devise/registrations/edit.html.erb +1 -1
- data/app/views/devise/registrations/new.html.erb +1 -1
- data/app/views/devise/sessions/new.html.erb +2 -2
- data/app/views/devise/shared/_error_messages.html.erb +15 -0
- data/app/views/devise/shared/_links.html.erb +7 -7
- data/app/views/devise/unlocks/new.html.erb +1 -1
- data/config/locales/en.yml +1 -0
- data/lib/devise.rb +4 -0
- data/lib/devise/controllers/helpers.rb +1 -1
- data/lib/devise/failure_app.rb +28 -3
- data/lib/devise/models/authenticatable.rb +7 -15
- data/lib/devise/models/confirmable.rb +4 -1
- data/lib/devise/models/database_authenticatable.rb +41 -6
- data/lib/devise/models/lockable.rb +2 -2
- data/lib/devise/models/registerable.rb +2 -0
- data/lib/devise/strategies/database_authenticatable.rb +3 -0
- data/lib/devise/test/controller_helpers.rb +1 -1
- data/lib/devise/version.rb +1 -1
- data/lib/generators/active_record/devise_generator.rb +4 -4
- data/lib/generators/devise/controllers_generator.rb +1 -1
- data/lib/generators/templates/devise.rb +12 -3
- data/lib/generators/templates/simple_form_for/registrations/edit.html.erb +1 -1
- data/lib/generators/templates/simple_form_for/registrations/new.html.erb +1 -1
- metadata +5 -305
- data/.gitignore +0 -10
- data/.travis.yml +0 -69
- data/.yardopts +0 -9
- data/CODE_OF_CONDUCT.md +0 -22
- data/CONTRIBUTING.md +0 -79
- data/Gemfile +0 -39
- data/Gemfile.lock +0 -202
- data/ISSUE_TEMPLATE.md +0 -19
- data/Rakefile +0 -37
- data/bin/test +0 -13
- data/devise.gemspec +0 -28
- data/devise.png +0 -0
- data/gemfiles/Gemfile.rails-4.1-stable +0 -32
- data/gemfiles/Gemfile.rails-4.1-stable.lock +0 -171
- data/gemfiles/Gemfile.rails-4.2-stable +0 -32
- data/gemfiles/Gemfile.rails-4.2-stable.lock +0 -192
- data/gemfiles/Gemfile.rails-5.0-stable +0 -33
- data/gemfiles/Gemfile.rails-5.0-stable.lock +0 -192
- data/gemfiles/Gemfile.rails-5.2-rc1 +0 -26
- data/gemfiles/Gemfile.rails-5.2-rc1.lock +0 -201
- data/guides/bug_report_templates/integration_test.rb +0 -106
- data/test/controllers/custom_registrations_controller_test.rb +0 -42
- data/test/controllers/custom_strategy_test.rb +0 -66
- data/test/controllers/helper_methods_test.rb +0 -24
- data/test/controllers/helpers_test.rb +0 -318
- data/test/controllers/inherited_controller_i18n_messages_test.rb +0 -53
- data/test/controllers/internal_helpers_test.rb +0 -129
- data/test/controllers/load_hooks_controller_test.rb +0 -21
- data/test/controllers/passwords_controller_test.rb +0 -34
- data/test/controllers/sessions_controller_test.rb +0 -108
- data/test/controllers/url_helpers_test.rb +0 -67
- data/test/delegator_test.rb +0 -21
- data/test/devise_test.rb +0 -109
- data/test/failure_app_test.rb +0 -346
- data/test/generators/active_record_generator_test.rb +0 -130
- data/test/generators/controllers_generator_test.rb +0 -50
- data/test/generators/devise_generator_test.rb +0 -41
- data/test/generators/install_generator_test.rb +0 -26
- data/test/generators/mongoid_generator_test.rb +0 -25
- data/test/generators/views_generator_test.rb +0 -105
- data/test/helpers/devise_helper_test.rb +0 -51
- data/test/integration/authenticatable_test.rb +0 -706
- data/test/integration/confirmable_test.rb +0 -326
- data/test/integration/database_authenticatable_test.rb +0 -110
- data/test/integration/http_authenticatable_test.rb +0 -114
- data/test/integration/lockable_test.rb +0 -242
- data/test/integration/mounted_engine_test.rb +0 -38
- data/test/integration/omniauthable_test.rb +0 -148
- data/test/integration/recoverable_test.rb +0 -349
- data/test/integration/registerable_test.rb +0 -365
- data/test/integration/rememberable_test.rb +0 -219
- data/test/integration/timeoutable_test.rb +0 -186
- data/test/integration/trackable_test.rb +0 -99
- data/test/mailers/confirmation_instructions_test.rb +0 -117
- data/test/mailers/email_changed_test.rb +0 -132
- data/test/mailers/mailer_test.rb +0 -20
- data/test/mailers/reset_password_instructions_test.rb +0 -98
- data/test/mailers/unlock_instructions_test.rb +0 -93
- data/test/mapping_test.rb +0 -136
- data/test/models/authenticatable_test.rb +0 -25
- data/test/models/confirmable_test.rb +0 -549
- data/test/models/database_authenticatable_test.rb +0 -290
- data/test/models/lockable_test.rb +0 -352
- data/test/models/omniauthable_test.rb +0 -9
- data/test/models/recoverable_test.rb +0 -263
- data/test/models/registerable_test.rb +0 -9
- data/test/models/rememberable_test.rb +0 -184
- data/test/models/serializable_test.rb +0 -60
- data/test/models/timeoutable_test.rb +0 -53
- data/test/models/trackable_test.rb +0 -80
- data/test/models/validatable_test.rb +0 -121
- data/test/models_test.rb +0 -155
- data/test/omniauth/config_test.rb +0 -61
- data/test/omniauth/url_helpers_test.rb +0 -53
- data/test/orm/active_record.rb +0 -24
- data/test/orm/mongoid.rb +0 -15
- data/test/parameter_sanitizer_test.rb +0 -105
- data/test/rails_app/Rakefile +0 -6
- data/test/rails_app/app/active_record/admin.rb +0 -8
- data/test/rails_app/app/active_record/shim.rb +0 -4
- data/test/rails_app/app/active_record/user.rb +0 -20
- data/test/rails_app/app/active_record/user_on_engine.rb +0 -9
- data/test/rails_app/app/active_record/user_on_main_app.rb +0 -9
- data/test/rails_app/app/active_record/user_with_validations.rb +0 -12
- data/test/rails_app/app/active_record/user_without_email.rb +0 -10
- data/test/rails_app/app/controllers/admins/sessions_controller.rb +0 -8
- data/test/rails_app/app/controllers/admins_controller.rb +0 -8
- data/test/rails_app/app/controllers/application_controller.rb +0 -13
- data/test/rails_app/app/controllers/application_with_fake_engine.rb +0 -32
- data/test/rails_app/app/controllers/custom/registrations_controller.rb +0 -33
- data/test/rails_app/app/controllers/home_controller.rb +0 -31
- data/test/rails_app/app/controllers/publisher/registrations_controller.rb +0 -4
- data/test/rails_app/app/controllers/publisher/sessions_controller.rb +0 -4
- data/test/rails_app/app/controllers/users/omniauth_callbacks_controller.rb +0 -16
- data/test/rails_app/app/controllers/users_controller.rb +0 -33
- data/test/rails_app/app/helpers/application_helper.rb +0 -5
- data/test/rails_app/app/mailers/users/from_proc_mailer.rb +0 -5
- data/test/rails_app/app/mailers/users/mailer.rb +0 -5
- data/test/rails_app/app/mailers/users/reply_to_mailer.rb +0 -6
- data/test/rails_app/app/mongoid/admin.rb +0 -31
- data/test/rails_app/app/mongoid/shim.rb +0 -25
- data/test/rails_app/app/mongoid/user.rb +0 -50
- data/test/rails_app/app/mongoid/user_on_engine.rb +0 -41
- data/test/rails_app/app/mongoid/user_on_main_app.rb +0 -41
- data/test/rails_app/app/mongoid/user_with_validations.rb +0 -37
- data/test/rails_app/app/mongoid/user_without_email.rb +0 -35
- data/test/rails_app/app/views/admins/index.html.erb +0 -1
- data/test/rails_app/app/views/admins/sessions/new.html.erb +0 -2
- data/test/rails_app/app/views/home/admin_dashboard.html.erb +0 -1
- data/test/rails_app/app/views/home/index.html.erb +0 -1
- data/test/rails_app/app/views/home/join.html.erb +0 -1
- data/test/rails_app/app/views/home/private.html.erb +0 -1
- data/test/rails_app/app/views/home/user_dashboard.html.erb +0 -1
- data/test/rails_app/app/views/layouts/application.html.erb +0 -24
- data/test/rails_app/app/views/users/edit_form.html.erb +0 -1
- data/test/rails_app/app/views/users/index.html.erb +0 -1
- data/test/rails_app/app/views/users/mailer/confirmation_instructions.erb +0 -1
- data/test/rails_app/app/views/users/sessions/new.html.erb +0 -1
- data/test/rails_app/bin/bundle +0 -3
- data/test/rails_app/bin/rails +0 -4
- data/test/rails_app/bin/rake +0 -4
- data/test/rails_app/config.ru +0 -4
- data/test/rails_app/config/application.rb +0 -48
- data/test/rails_app/config/boot.rb +0 -27
- data/test/rails_app/config/database.yml +0 -18
- data/test/rails_app/config/environment.rb +0 -7
- data/test/rails_app/config/environments/development.rb +0 -32
- data/test/rails_app/config/environments/production.rb +0 -88
- data/test/rails_app/config/environments/test.rb +0 -47
- data/test/rails_app/config/initializers/backtrace_silencers.rb +0 -9
- data/test/rails_app/config/initializers/devise.rb +0 -187
- data/test/rails_app/config/initializers/inflections.rb +0 -4
- data/test/rails_app/config/initializers/secret_token.rb +0 -5
- data/test/rails_app/config/initializers/session_store.rb +0 -3
- data/test/rails_app/config/routes.rb +0 -128
- data/test/rails_app/db/migrate/20100401102949_create_tables.rb +0 -77
- data/test/rails_app/db/schema.rb +0 -57
- data/test/rails_app/lib/lazy_load_test_module.rb +0 -5
- data/test/rails_app/lib/shared_admin.rb +0 -23
- data/test/rails_app/lib/shared_user.rb +0 -32
- data/test/rails_app/lib/shared_user_without_email.rb +0 -28
- data/test/rails_app/lib/shared_user_without_omniauth.rb +0 -15
- data/test/rails_app/public/404.html +0 -26
- data/test/rails_app/public/422.html +0 -26
- data/test/rails_app/public/500.html +0 -26
- data/test/rails_app/public/favicon.ico +0 -0
- data/test/rails_test.rb +0 -11
- data/test/routes_test.rb +0 -281
- data/test/secret_key_finder_test.rb +0 -121
- data/test/support/action_controller/record_identifier.rb +0 -12
- data/test/support/assertions.rb +0 -30
- data/test/support/helpers.rb +0 -83
- data/test/support/http_method_compatibility.rb +0 -53
- data/test/support/integration.rb +0 -95
- data/test/support/locale/en.yml +0 -8
- data/test/support/mongoid.yml +0 -6
- data/test/support/webrat/integrations/rails.rb +0 -35
- data/test/test/controller_helpers_test.rb +0 -193
- data/test/test/integration_helpers_test.rb +0 -34
- data/test/test_helper.rb +0 -36
- data/test/test_models.rb +0 -35
data/Rakefile
DELETED
@@ -1,37 +0,0 @@
|
|
1
|
-
# encoding: UTF-8
|
2
|
-
# frozen_string_literal: true
|
3
|
-
|
4
|
-
require 'bundler/gem_tasks'
|
5
|
-
require 'rake/testtask'
|
6
|
-
require 'rdoc/task'
|
7
|
-
|
8
|
-
desc 'Default: run tests for all ORMs.'
|
9
|
-
task default: :test
|
10
|
-
|
11
|
-
desc 'Run Devise tests for all ORMs.'
|
12
|
-
task :pre_commit do
|
13
|
-
Dir[File.join(File.dirname(__FILE__), 'test', 'orm', '*.rb')].each do |file|
|
14
|
-
orm = File.basename(file).split(".").first
|
15
|
-
# "Some day, my son, rake's inner wisdom will reveal itself. Until then,
|
16
|
-
# take this `system` -- may its brute force protect you well."
|
17
|
-
exit 1 unless system "rake test DEVISE_ORM=#{orm}"
|
18
|
-
end
|
19
|
-
end
|
20
|
-
|
21
|
-
desc 'Run Devise unit tests.'
|
22
|
-
Rake::TestTask.new(:test) do |t|
|
23
|
-
t.libs << 'lib'
|
24
|
-
t.libs << 'test'
|
25
|
-
t.pattern = 'test/**/*_test.rb'
|
26
|
-
t.verbose = true
|
27
|
-
t.warning = false
|
28
|
-
end
|
29
|
-
|
30
|
-
desc 'Generate documentation for Devise.'
|
31
|
-
Rake::RDocTask.new(:rdoc) do |rdoc|
|
32
|
-
rdoc.rdoc_dir = 'rdoc'
|
33
|
-
rdoc.title = 'Devise'
|
34
|
-
rdoc.options << '--line-numbers' << '--inline-source'
|
35
|
-
rdoc.rdoc_files.include('README.md')
|
36
|
-
rdoc.rdoc_files.include('lib/**/*.rb')
|
37
|
-
end
|
data/bin/test
DELETED
@@ -1,13 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
$: << File.expand_path(File.expand_path('../../test', __FILE__))
|
3
|
-
|
4
|
-
require 'bundler/setup'
|
5
|
-
begin
|
6
|
-
require 'rails/test_unit/minitest_plugin'
|
7
|
-
rescue LoadError
|
8
|
-
exec 'rake'
|
9
|
-
end
|
10
|
-
|
11
|
-
Rails::TestUnitReporter.executable = 'bin/test'
|
12
|
-
|
13
|
-
exit Minitest.run(ARGV)
|
data/devise.gemspec
DELETED
@@ -1,28 +0,0 @@
|
|
1
|
-
# -*- encoding: utf-8 -*-
|
2
|
-
# frozen_string_literal: true
|
3
|
-
|
4
|
-
$:.push File.expand_path("../lib", __FILE__)
|
5
|
-
require "devise/version"
|
6
|
-
|
7
|
-
Gem::Specification.new do |s|
|
8
|
-
s.name = "devise"
|
9
|
-
s.version = Devise::VERSION.dup
|
10
|
-
s.platform = Gem::Platform::RUBY
|
11
|
-
s.licenses = ["MIT"]
|
12
|
-
s.summary = "Flexible authentication solution for Rails with Warden"
|
13
|
-
s.email = "contact@plataformatec.com.br"
|
14
|
-
s.homepage = "https://github.com/plataformatec/devise"
|
15
|
-
s.description = "Flexible authentication solution for Rails with Warden"
|
16
|
-
s.authors = ['José Valim', 'Carlos Antônio']
|
17
|
-
|
18
|
-
s.files = `git ls-files`.split("\n")
|
19
|
-
s.test_files = `git ls-files -- test/*`.split("\n")
|
20
|
-
s.require_paths = ["lib"]
|
21
|
-
s.required_ruby_version = '>= 2.1.0'
|
22
|
-
|
23
|
-
s.add_dependency("warden", "~> 1.2.3")
|
24
|
-
s.add_dependency("orm_adapter", "~> 0.1")
|
25
|
-
s.add_dependency("bcrypt", "~> 3.0")
|
26
|
-
s.add_dependency("railties", ">= 4.1.0", "< 6.0")
|
27
|
-
s.add_dependency("responders")
|
28
|
-
end
|
data/devise.png
DELETED
Binary file
|
@@ -1,32 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
source "https://rubygems.org"
|
4
|
-
|
5
|
-
gemspec path: ".."
|
6
|
-
|
7
|
-
gem "rails", github: "rails/rails", branch: "4-1-stable"
|
8
|
-
gem "omniauth"
|
9
|
-
gem "omniauth-oauth2"
|
10
|
-
gem "rdoc", "~> 5.1"
|
11
|
-
|
12
|
-
group :test do
|
13
|
-
gem "omniauth-facebook"
|
14
|
-
gem "omniauth-openid"
|
15
|
-
gem "webrat", "0.7.3", require: false
|
16
|
-
gem "mocha", "~> 1.1", require: false
|
17
|
-
gem 'test_after_commit', require: false
|
18
|
-
end
|
19
|
-
|
20
|
-
platforms :jruby do
|
21
|
-
gem "activerecord-jdbc-adapter"
|
22
|
-
gem "activerecord-jdbcsqlite3-adapter"
|
23
|
-
gem "jruby-openssl"
|
24
|
-
end
|
25
|
-
|
26
|
-
platforms :ruby do
|
27
|
-
gem "sqlite3"
|
28
|
-
end
|
29
|
-
|
30
|
-
group :mongoid do
|
31
|
-
gem "mongoid", "~> 4.0"
|
32
|
-
end
|
@@ -1,171 +0,0 @@
|
|
1
|
-
GIT
|
2
|
-
remote: git://github.com/rails/rails.git
|
3
|
-
revision: 0cad778c2605a5204a05a9f1dbd3344e39f248d8
|
4
|
-
branch: 4-1-stable
|
5
|
-
specs:
|
6
|
-
actionmailer (4.1.16)
|
7
|
-
actionpack (= 4.1.16)
|
8
|
-
actionview (= 4.1.16)
|
9
|
-
mail (~> 2.5, >= 2.5.4)
|
10
|
-
rails (4.1.16)
|
11
|
-
actionmailer (= 4.1.16)
|
12
|
-
actionpack (= 4.1.16)
|
13
|
-
actionview (= 4.1.16)
|
14
|
-
activemodel (= 4.1.16)
|
15
|
-
activerecord (= 4.1.16)
|
16
|
-
activesupport (= 4.1.16)
|
17
|
-
bundler (>= 1.3.0, < 2.0)
|
18
|
-
railties (= 4.1.16)
|
19
|
-
sprockets-rails (~> 2.0)
|
20
|
-
|
21
|
-
PATH
|
22
|
-
remote: ..
|
23
|
-
specs:
|
24
|
-
devise (4.5.0)
|
25
|
-
bcrypt (~> 3.0)
|
26
|
-
orm_adapter (~> 0.1)
|
27
|
-
railties (>= 4.1.0, < 6.0)
|
28
|
-
responders
|
29
|
-
warden (~> 1.2.3)
|
30
|
-
|
31
|
-
GEM
|
32
|
-
remote: https://rubygems.org/
|
33
|
-
specs:
|
34
|
-
actionpack (4.1.16)
|
35
|
-
actionview (= 4.1.16)
|
36
|
-
activesupport (= 4.1.16)
|
37
|
-
rack (~> 1.5.2)
|
38
|
-
rack-test (~> 0.6.2)
|
39
|
-
actionview (4.1.16)
|
40
|
-
activesupport (= 4.1.16)
|
41
|
-
builder (~> 3.1)
|
42
|
-
erubis (~> 2.7.0)
|
43
|
-
activemodel (4.1.16)
|
44
|
-
activesupport (= 4.1.16)
|
45
|
-
builder (~> 3.1)
|
46
|
-
activerecord (4.1.16)
|
47
|
-
activemodel (= 4.1.16)
|
48
|
-
activesupport (= 4.1.16)
|
49
|
-
arel (~> 5.0.0)
|
50
|
-
activesupport (4.1.16)
|
51
|
-
i18n (~> 0.6, >= 0.6.9)
|
52
|
-
json (~> 1.7, >= 1.7.7)
|
53
|
-
minitest (~> 5.1)
|
54
|
-
thread_safe (~> 0.1)
|
55
|
-
tzinfo (~> 1.1)
|
56
|
-
arel (5.0.1.20140414130214)
|
57
|
-
bcrypt (3.1.12)
|
58
|
-
bson (3.2.6)
|
59
|
-
builder (3.2.3)
|
60
|
-
concurrent-ruby (1.0.5)
|
61
|
-
connection_pool (2.2.1)
|
62
|
-
erubis (2.7.0)
|
63
|
-
faraday (0.11.0)
|
64
|
-
multipart-post (>= 1.2, < 3)
|
65
|
-
hashie (3.5.5)
|
66
|
-
i18n (0.8.1)
|
67
|
-
json (1.8.6)
|
68
|
-
jwt (1.5.6)
|
69
|
-
mail (2.6.4)
|
70
|
-
mime-types (>= 1.16, < 4)
|
71
|
-
metaclass (0.0.4)
|
72
|
-
mime-types (3.1)
|
73
|
-
mime-types-data (~> 3.2015)
|
74
|
-
mime-types-data (3.2016.0521)
|
75
|
-
mini_portile2 (2.1.0)
|
76
|
-
minitest (5.10.1)
|
77
|
-
mocha (1.2.1)
|
78
|
-
metaclass (~> 0.0.1)
|
79
|
-
mongoid (4.0.2)
|
80
|
-
activemodel (~> 4.0)
|
81
|
-
moped (~> 2.0.0)
|
82
|
-
origin (~> 2.1)
|
83
|
-
tzinfo (>= 0.3.37)
|
84
|
-
moped (2.0.7)
|
85
|
-
bson (~> 3.0)
|
86
|
-
connection_pool (~> 2.0)
|
87
|
-
optionable (~> 0.2.0)
|
88
|
-
multi_json (1.12.1)
|
89
|
-
multi_xml (0.6.0)
|
90
|
-
multipart-post (2.0.0)
|
91
|
-
nokogiri (1.7.0.1)
|
92
|
-
mini_portile2 (~> 2.1.0)
|
93
|
-
oauth2 (1.3.1)
|
94
|
-
faraday (>= 0.8, < 0.12)
|
95
|
-
jwt (~> 1.0)
|
96
|
-
multi_json (~> 1.3)
|
97
|
-
multi_xml (~> 0.5)
|
98
|
-
rack (>= 1.2, < 3)
|
99
|
-
omniauth (1.4.2)
|
100
|
-
hashie (>= 1.2, < 4)
|
101
|
-
rack (>= 1.0, < 3)
|
102
|
-
omniauth-facebook (4.0.0)
|
103
|
-
omniauth-oauth2 (~> 1.2)
|
104
|
-
omniauth-oauth2 (1.4.0)
|
105
|
-
oauth2 (~> 1.0)
|
106
|
-
omniauth (~> 1.2)
|
107
|
-
omniauth-openid (1.0.1)
|
108
|
-
omniauth (~> 1.0)
|
109
|
-
rack-openid (~> 1.3.1)
|
110
|
-
optionable (0.2.0)
|
111
|
-
origin (2.3.0)
|
112
|
-
orm_adapter (0.5.0)
|
113
|
-
rack (1.5.5)
|
114
|
-
rack-openid (1.3.1)
|
115
|
-
rack (>= 1.1.0)
|
116
|
-
ruby-openid (>= 2.1.8)
|
117
|
-
rack-test (0.6.3)
|
118
|
-
rack (>= 1.0)
|
119
|
-
railties (4.1.16)
|
120
|
-
actionpack (= 4.1.16)
|
121
|
-
activesupport (= 4.1.16)
|
122
|
-
rake (>= 0.8.7)
|
123
|
-
thor (>= 0.18.1, < 2.0)
|
124
|
-
rake (12.0.0)
|
125
|
-
rdoc (5.1.0)
|
126
|
-
responders (1.1.2)
|
127
|
-
railties (>= 3.2, < 4.2)
|
128
|
-
ruby-openid (2.7.0)
|
129
|
-
sprockets (3.7.1)
|
130
|
-
concurrent-ruby (~> 1.0)
|
131
|
-
rack (> 1, < 3)
|
132
|
-
sprockets-rails (2.3.3)
|
133
|
-
actionpack (>= 3.0)
|
134
|
-
activesupport (>= 3.0)
|
135
|
-
sprockets (>= 2.8, < 4.0)
|
136
|
-
sqlite3 (1.3.13)
|
137
|
-
test_after_commit (1.1.0)
|
138
|
-
activerecord (>= 3.2)
|
139
|
-
thor (0.19.4)
|
140
|
-
thread_safe (0.3.6)
|
141
|
-
tzinfo (1.2.2)
|
142
|
-
thread_safe (~> 0.1)
|
143
|
-
warden (1.2.7)
|
144
|
-
rack (>= 1.0)
|
145
|
-
webrat (0.7.3)
|
146
|
-
nokogiri (>= 1.2.0)
|
147
|
-
rack (>= 1.0)
|
148
|
-
rack-test (>= 0.5.3)
|
149
|
-
|
150
|
-
PLATFORMS
|
151
|
-
ruby
|
152
|
-
|
153
|
-
DEPENDENCIES
|
154
|
-
activerecord-jdbc-adapter
|
155
|
-
activerecord-jdbcsqlite3-adapter
|
156
|
-
devise!
|
157
|
-
jruby-openssl
|
158
|
-
mocha (~> 1.1)
|
159
|
-
mongoid (~> 4.0)
|
160
|
-
omniauth
|
161
|
-
omniauth-facebook
|
162
|
-
omniauth-oauth2
|
163
|
-
omniauth-openid
|
164
|
-
rails!
|
165
|
-
rdoc (~> 5.1)
|
166
|
-
sqlite3
|
167
|
-
test_after_commit
|
168
|
-
webrat (= 0.7.3)
|
169
|
-
|
170
|
-
BUNDLED WITH
|
171
|
-
1.16.1
|
@@ -1,32 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
source "https://rubygems.org"
|
4
|
-
|
5
|
-
gemspec path: ".."
|
6
|
-
|
7
|
-
gem "rails", github: "rails/rails", branch: "4-2-stable"
|
8
|
-
gem "omniauth"
|
9
|
-
gem "omniauth-oauth2"
|
10
|
-
gem "rdoc", "~> 5.1"
|
11
|
-
|
12
|
-
group :test do
|
13
|
-
gem "omniauth-facebook"
|
14
|
-
gem "omniauth-openid"
|
15
|
-
gem "webrat", "0.7.3", require: false
|
16
|
-
gem "mocha", "~> 1.1", require: false
|
17
|
-
gem 'test_after_commit', require: false
|
18
|
-
end
|
19
|
-
|
20
|
-
platforms :jruby do
|
21
|
-
gem "activerecord-jdbc-adapter"
|
22
|
-
gem "activerecord-jdbcsqlite3-adapter"
|
23
|
-
gem "jruby-openssl"
|
24
|
-
end
|
25
|
-
|
26
|
-
platforms :ruby do
|
27
|
-
gem "sqlite3"
|
28
|
-
end
|
29
|
-
|
30
|
-
group :mongoid do
|
31
|
-
gem "mongoid", "~> 4.0"
|
32
|
-
end
|
@@ -1,192 +0,0 @@
|
|
1
|
-
GIT
|
2
|
-
remote: git://github.com/rails/rails.git
|
3
|
-
revision: dc3ae21802c316e1639239d28202db7aa7fb7cac
|
4
|
-
branch: 4-2-stable
|
5
|
-
specs:
|
6
|
-
actionmailer (4.2.8)
|
7
|
-
actionpack (= 4.2.8)
|
8
|
-
actionview (= 4.2.8)
|
9
|
-
activejob (= 4.2.8)
|
10
|
-
mail (~> 2.5, >= 2.5.4)
|
11
|
-
rails-dom-testing (~> 1.0, >= 1.0.5)
|
12
|
-
actionpack (4.2.8)
|
13
|
-
actionview (= 4.2.8)
|
14
|
-
activesupport (= 4.2.8)
|
15
|
-
rack (~> 1.6)
|
16
|
-
rack-test (~> 0.6.2)
|
17
|
-
rails-dom-testing (~> 1.0, >= 1.0.5)
|
18
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
19
|
-
actionview (4.2.8)
|
20
|
-
activesupport (= 4.2.8)
|
21
|
-
builder (~> 3.1)
|
22
|
-
erubis (~> 2.7.0)
|
23
|
-
rails-dom-testing (~> 1.0, >= 1.0.5)
|
24
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
25
|
-
activejob (4.2.8)
|
26
|
-
activesupport (= 4.2.8)
|
27
|
-
globalid (>= 0.3.0)
|
28
|
-
activemodel (4.2.8)
|
29
|
-
activesupport (= 4.2.8)
|
30
|
-
builder (~> 3.1)
|
31
|
-
activerecord (4.2.8)
|
32
|
-
activemodel (= 4.2.8)
|
33
|
-
activesupport (= 4.2.8)
|
34
|
-
arel (~> 6.0)
|
35
|
-
activesupport (4.2.8)
|
36
|
-
i18n (~> 0.7)
|
37
|
-
minitest (~> 5.1)
|
38
|
-
thread_safe (~> 0.3, >= 0.3.4)
|
39
|
-
tzinfo (~> 1.1)
|
40
|
-
rails (4.2.8)
|
41
|
-
actionmailer (= 4.2.8)
|
42
|
-
actionpack (= 4.2.8)
|
43
|
-
actionview (= 4.2.8)
|
44
|
-
activejob (= 4.2.8)
|
45
|
-
activemodel (= 4.2.8)
|
46
|
-
activerecord (= 4.2.8)
|
47
|
-
activesupport (= 4.2.8)
|
48
|
-
bundler (>= 1.3.0, < 2.0)
|
49
|
-
railties (= 4.2.8)
|
50
|
-
sprockets-rails
|
51
|
-
railties (4.2.8)
|
52
|
-
actionpack (= 4.2.8)
|
53
|
-
activesupport (= 4.2.8)
|
54
|
-
rake (>= 0.8.7)
|
55
|
-
thor (>= 0.18.1, < 2.0)
|
56
|
-
|
57
|
-
PATH
|
58
|
-
remote: ..
|
59
|
-
specs:
|
60
|
-
devise (4.5.0)
|
61
|
-
bcrypt (~> 3.0)
|
62
|
-
orm_adapter (~> 0.1)
|
63
|
-
railties (>= 4.1.0, < 6.0)
|
64
|
-
responders
|
65
|
-
warden (~> 1.2.3)
|
66
|
-
|
67
|
-
GEM
|
68
|
-
remote: https://rubygems.org/
|
69
|
-
specs:
|
70
|
-
arel (6.0.4)
|
71
|
-
bcrypt (3.1.12)
|
72
|
-
bson (3.2.6)
|
73
|
-
builder (3.2.3)
|
74
|
-
concurrent-ruby (1.0.5)
|
75
|
-
connection_pool (2.2.1)
|
76
|
-
erubis (2.7.0)
|
77
|
-
faraday (0.11.0)
|
78
|
-
multipart-post (>= 1.2, < 3)
|
79
|
-
globalid (0.3.7)
|
80
|
-
activesupport (>= 4.1.0)
|
81
|
-
hashie (3.5.5)
|
82
|
-
i18n (0.8.1)
|
83
|
-
jwt (1.5.6)
|
84
|
-
loofah (2.0.3)
|
85
|
-
nokogiri (>= 1.5.9)
|
86
|
-
mail (2.6.4)
|
87
|
-
mime-types (>= 1.16, < 4)
|
88
|
-
metaclass (0.0.4)
|
89
|
-
mime-types (3.1)
|
90
|
-
mime-types-data (~> 3.2015)
|
91
|
-
mime-types-data (3.2016.0521)
|
92
|
-
mini_portile2 (2.1.0)
|
93
|
-
minitest (5.10.1)
|
94
|
-
mocha (1.2.1)
|
95
|
-
metaclass (~> 0.0.1)
|
96
|
-
mongoid (4.0.2)
|
97
|
-
activemodel (~> 4.0)
|
98
|
-
moped (~> 2.0.0)
|
99
|
-
origin (~> 2.1)
|
100
|
-
tzinfo (>= 0.3.37)
|
101
|
-
moped (2.0.7)
|
102
|
-
bson (~> 3.0)
|
103
|
-
connection_pool (~> 2.0)
|
104
|
-
optionable (~> 0.2.0)
|
105
|
-
multi_json (1.12.1)
|
106
|
-
multi_xml (0.6.0)
|
107
|
-
multipart-post (2.0.0)
|
108
|
-
nokogiri (1.7.0.1)
|
109
|
-
mini_portile2 (~> 2.1.0)
|
110
|
-
oauth2 (1.3.1)
|
111
|
-
faraday (>= 0.8, < 0.12)
|
112
|
-
jwt (~> 1.0)
|
113
|
-
multi_json (~> 1.3)
|
114
|
-
multi_xml (~> 0.5)
|
115
|
-
rack (>= 1.2, < 3)
|
116
|
-
omniauth (1.6.1)
|
117
|
-
hashie (>= 3.4.6, < 3.6.0)
|
118
|
-
rack (>= 1.6.2, < 3)
|
119
|
-
omniauth-facebook (4.0.0)
|
120
|
-
omniauth-oauth2 (~> 1.2)
|
121
|
-
omniauth-oauth2 (1.4.0)
|
122
|
-
oauth2 (~> 1.0)
|
123
|
-
omniauth (~> 1.2)
|
124
|
-
omniauth-openid (1.0.1)
|
125
|
-
omniauth (~> 1.0)
|
126
|
-
rack-openid (~> 1.3.1)
|
127
|
-
optionable (0.2.0)
|
128
|
-
origin (2.3.0)
|
129
|
-
orm_adapter (0.5.0)
|
130
|
-
rack (1.6.5)
|
131
|
-
rack-openid (1.3.1)
|
132
|
-
rack (>= 1.1.0)
|
133
|
-
ruby-openid (>= 2.1.8)
|
134
|
-
rack-test (0.6.3)
|
135
|
-
rack (>= 1.0)
|
136
|
-
rails-deprecated_sanitizer (1.0.3)
|
137
|
-
activesupport (>= 4.2.0.alpha)
|
138
|
-
rails-dom-testing (1.0.8)
|
139
|
-
activesupport (>= 4.2.0.beta, < 5.0)
|
140
|
-
nokogiri (~> 1.6)
|
141
|
-
rails-deprecated_sanitizer (>= 1.0.1)
|
142
|
-
rails-html-sanitizer (1.0.3)
|
143
|
-
loofah (~> 2.0)
|
144
|
-
rake (12.0.0)
|
145
|
-
rdoc (5.1.0)
|
146
|
-
responders (2.4.0)
|
147
|
-
actionpack (>= 4.2.0, < 5.3)
|
148
|
-
railties (>= 4.2.0, < 5.3)
|
149
|
-
ruby-openid (2.7.0)
|
150
|
-
sprockets (3.7.1)
|
151
|
-
concurrent-ruby (~> 1.0)
|
152
|
-
rack (> 1, < 3)
|
153
|
-
sprockets-rails (3.2.0)
|
154
|
-
actionpack (>= 4.0)
|
155
|
-
activesupport (>= 4.0)
|
156
|
-
sprockets (>= 3.0.0)
|
157
|
-
sqlite3 (1.3.13)
|
158
|
-
test_after_commit (1.1.0)
|
159
|
-
activerecord (>= 3.2)
|
160
|
-
thor (0.19.4)
|
161
|
-
thread_safe (0.3.6)
|
162
|
-
tzinfo (1.2.2)
|
163
|
-
thread_safe (~> 0.1)
|
164
|
-
warden (1.2.7)
|
165
|
-
rack (>= 1.0)
|
166
|
-
webrat (0.7.3)
|
167
|
-
nokogiri (>= 1.2.0)
|
168
|
-
rack (>= 1.0)
|
169
|
-
rack-test (>= 0.5.3)
|
170
|
-
|
171
|
-
PLATFORMS
|
172
|
-
ruby
|
173
|
-
|
174
|
-
DEPENDENCIES
|
175
|
-
activerecord-jdbc-adapter
|
176
|
-
activerecord-jdbcsqlite3-adapter
|
177
|
-
devise!
|
178
|
-
jruby-openssl
|
179
|
-
mocha (~> 1.1)
|
180
|
-
mongoid (~> 4.0)
|
181
|
-
omniauth
|
182
|
-
omniauth-facebook
|
183
|
-
omniauth-oauth2
|
184
|
-
omniauth-openid
|
185
|
-
rails!
|
186
|
-
rdoc (~> 5.1)
|
187
|
-
sqlite3
|
188
|
-
test_after_commit
|
189
|
-
webrat (= 0.7.3)
|
190
|
-
|
191
|
-
BUNDLED WITH
|
192
|
-
1.16.1
|