eac_users_support 0.1.0 → 0.1.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8c95fd1b70b9ccbae8f8940fd273453eff0c8215
|
4
|
+
data.tar.gz: 8286f6693208474f56600c12a69e9648aaccd70d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 054bd281db04194f8309bf57dca33dc58775c88aa622e8acd6ecf10efada7a0bb6f0211c7a437b05f6b095be21bd6da818cf1a00da2118964941e84c14ce0258
|
7
|
+
data.tar.gz: 5bc3bb67f4c39d45196dd5afe5325a1c8eaa29e8ff8bfae464aed84a719bacac47f44f438732a6380d1d49e5d7edf3be6126a1da43ea6870276a3ba27b3d3424
|
@@ -3,7 +3,7 @@ require_dependency 'eac_users_support'
|
|
3
3
|
|
4
4
|
module EacUsersSupport
|
5
5
|
class User < ActiveRecord::Base
|
6
|
-
devise :database_authenticatable, :registerable
|
6
|
+
devise :database_authenticatable, :registerable, :rememberable
|
7
7
|
|
8
8
|
validates :email, presence: true, uniqueness: true
|
9
9
|
|
data/test/dummy/db/schema.rb
CHANGED
@@ -11,15 +11,25 @@
|
|
11
11
|
#
|
12
12
|
# It's strongly recommended that you check this file into your version control system.
|
13
13
|
|
14
|
-
ActiveRecord::Schema.define(version:
|
14
|
+
ActiveRecord::Schema.define(version: 20180222202443) do
|
15
15
|
|
16
16
|
create_table "eac_users_support_users", force: :cascade do |t|
|
17
|
+
t.string "email", default: "", null: false
|
18
|
+
t.datetime "created_at", null: false
|
19
|
+
t.datetime "updated_at", null: false
|
20
|
+
t.string "encrypted_password", default: "", null: false
|
21
|
+
t.datetime "remember_created_at"
|
22
|
+
end
|
23
|
+
|
24
|
+
add_index "eac_users_support_users", ["email"], name: "index_eac_users_support_users_on_email", unique: true
|
25
|
+
|
26
|
+
create_table "users", force: :cascade do |t|
|
17
27
|
t.string "email", default: "", null: false
|
18
28
|
t.datetime "created_at", null: false
|
19
29
|
t.datetime "updated_at", null: false
|
20
30
|
t.string "encrypted_password", default: "", null: false
|
21
31
|
end
|
22
32
|
|
23
|
-
add_index "
|
33
|
+
add_index "users", ["email"], name: "index_users_on_email", unique: true
|
24
34
|
|
25
35
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: eac_users_support
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Esquilo Azul Company
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2018-02-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -89,6 +89,7 @@ files:
|
|
89
89
|
- db/migrate/20160605013848_create_users.rb
|
90
90
|
- db/migrate/20160605035833_add_devise_authenticable_to_users.rb
|
91
91
|
- db/migrate/20171012182305_rename_users_to_eac_users_support_users.rb
|
92
|
+
- db/migrate/20180222202443_add_devise_rememberable_to_eac_users_support_users.rb
|
92
93
|
- lib/eac_users_support.rb
|
93
94
|
- lib/eac_users_support/engine.rb
|
94
95
|
- lib/eac_users_support/patches/action_controller_test_case.rb
|
@@ -153,46 +154,46 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
153
154
|
version: '0'
|
154
155
|
requirements: []
|
155
156
|
rubyforge_project:
|
156
|
-
rubygems_version: 2.
|
157
|
+
rubygems_version: 2.4.8
|
157
158
|
signing_key:
|
158
159
|
specification_version: 4
|
159
160
|
summary: Ready-to-use support for users registration, login, logout, etc, for Rails.
|
160
161
|
test_files:
|
161
|
-
- test/
|
162
|
-
- test/dummy/README.rdoc
|
162
|
+
- test/integration/navigation_test.rb
|
163
163
|
- test/dummy/config.ru
|
164
|
+
- test/dummy/README.rdoc
|
165
|
+
- test/dummy/db/schema.rb
|
166
|
+
- test/dummy/app/views/layouts/application.html.erb
|
167
|
+
- test/dummy/app/assets/stylesheets/application.css
|
168
|
+
- test/dummy/app/assets/javascripts/application.js
|
169
|
+
- test/dummy/app/helpers/application_helper.rb
|
170
|
+
- test/dummy/app/controllers/application_controller.rb
|
171
|
+
- test/dummy/bin/bundle
|
172
|
+
- test/dummy/bin/rails
|
173
|
+
- test/dummy/bin/setup
|
174
|
+
- test/dummy/bin/rake
|
175
|
+
- test/dummy/Rakefile
|
176
|
+
- test/dummy/config/environments/production.rb
|
177
|
+
- test/dummy/config/environments/test.rb
|
178
|
+
- test/dummy/config/environments/development.rb
|
179
|
+
- test/dummy/config/application.rb
|
164
180
|
- test/dummy/config/boot.rb
|
165
|
-
- test/dummy/config/database.yml
|
166
|
-
- test/dummy/config/secrets.yml
|
167
181
|
- test/dummy/config/locales/en.yml
|
168
|
-
- test/dummy/config/application.rb
|
169
|
-
- test/dummy/config/environments/development.rb
|
170
|
-
- test/dummy/config/environments/test.rb
|
171
|
-
- test/dummy/config/environments/production.rb
|
172
|
-
- test/dummy/config/environment.rb
|
173
|
-
- test/dummy/config/routes.rb
|
174
|
-
- test/dummy/config/initializers/assets.rb
|
175
|
-
- test/dummy/config/initializers/cookies_serializer.rb
|
176
|
-
- test/dummy/config/initializers/inflections.rb
|
177
182
|
- test/dummy/config/initializers/session_store.rb
|
178
|
-
- test/dummy/config/initializers/wrap_parameters.rb
|
179
183
|
- test/dummy/config/initializers/filter_parameter_logging.rb
|
184
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
180
185
|
- test/dummy/config/initializers/backtrace_silencers.rb
|
186
|
+
- test/dummy/config/initializers/inflections.rb
|
187
|
+
- test/dummy/config/initializers/assets.rb
|
188
|
+
- test/dummy/config/initializers/cookies_serializer.rb
|
181
189
|
- test/dummy/config/initializers/mime_types.rb
|
182
|
-
- test/dummy/
|
183
|
-
- test/dummy/
|
184
|
-
- test/dummy/
|
185
|
-
- test/dummy/
|
186
|
-
- test/dummy/app/assets/stylesheets/application.css
|
187
|
-
- test/dummy/app/assets/javascripts/application.js
|
190
|
+
- test/dummy/config/secrets.yml
|
191
|
+
- test/dummy/config/database.yml
|
192
|
+
- test/dummy/config/routes.rb
|
193
|
+
- test/dummy/config/environment.rb
|
188
194
|
- test/dummy/public/422.html
|
189
|
-
- test/dummy/public/404.html
|
190
195
|
- test/dummy/public/favicon.ico
|
196
|
+
- test/dummy/public/404.html
|
191
197
|
- test/dummy/public/500.html
|
192
|
-
- test/dummy/bin/bundle
|
193
|
-
- test/dummy/bin/setup
|
194
|
-
- test/dummy/bin/rails
|
195
|
-
- test/dummy/bin/rake
|
196
|
-
- test/test_helper.rb
|
197
198
|
- test/eac_users_support_test.rb
|
198
|
-
- test/
|
199
|
+
- test/test_helper.rb
|