eac_users_support 0.4.0 → 0.5.0
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 +4 -4
- data/db/migrate/{20160605013848_create_users.rb → 20160605013848_create_eac_users_support_users.rb} +2 -2
- data/db/migrate/20160605035833_add_devise_authenticable_to_eac_users_support_users.rb +8 -0
- data/lib/eac_users_support/version.rb +1 -1
- metadata +4 -5
- data/db/migrate/20160605035833_add_devise_authenticable_to_users.rb +0 -8
- data/db/migrate/20171012182305_rename_users_to_eac_users_support_users.rb +0 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '048055a37126d09e6dcfb77e16cf0db39b1685636ecbff4d96dceb073cff059d'
|
|
4
|
+
data.tar.gz: 5233973a8170ae86c88685b0e600c448da87b1036da55c62c588b631ac12e148
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f3ec70c14efaf7e3e55f699ae5fa5bbcecb789e47b20fb3af3ff7f308af2f258e80fa87551ae6afa11f4afdea060603fcc84e1c9f9f6af9e2220ac0822747d63
|
|
7
|
+
data.tar.gz: b9d66d81ea7c1a8564d25febb41df7c40e861db4781a66d2a4ce2e9d3b43e9162426e4e7afec69ade9c21d049add0ea9340104722913386210d0cb454d816a3c
|
data/db/migrate/{20160605013848_create_users.rb → 20160605013848_create_eac_users_support_users.rb}
RENAMED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
class
|
|
3
|
+
class CreateEacUsersSupportUsers < ActiveRecord::Migration
|
|
4
4
|
def change
|
|
5
|
-
create_table :
|
|
5
|
+
create_table :eac_users_support_users do |t|
|
|
6
6
|
t.string :email, null: false, default: ''
|
|
7
7
|
|
|
8
8
|
t.timestamps null: false
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
class AddDeviseAuthenticableToEacUsersSupportUsers < ActiveRecord::Migration
|
|
4
|
+
def change
|
|
5
|
+
add_column :eac_users_support_users, :encrypted_password, :string, null: false, default: ''
|
|
6
|
+
add_index :eac_users_support_users, :email, unique: true
|
|
7
|
+
end
|
|
8
|
+
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.
|
|
4
|
+
version: 0.5.0
|
|
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: 2020-02-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: active_scaffold
|
|
@@ -121,9 +121,8 @@ files:
|
|
|
121
121
|
- config/locales/devise.pt-BR.yml
|
|
122
122
|
- config/locales/pt-BR.yml
|
|
123
123
|
- config/routes.rb
|
|
124
|
-
- db/migrate/
|
|
125
|
-
- db/migrate/
|
|
126
|
-
- db/migrate/20171012182305_rename_users_to_eac_users_support_users.rb
|
|
124
|
+
- db/migrate/20160605013848_create_eac_users_support_users.rb
|
|
125
|
+
- db/migrate/20160605035833_add_devise_authenticable_to_eac_users_support_users.rb
|
|
127
126
|
- db/migrate/20180222202443_add_devise_rememberable_to_eac_users_support_users.rb
|
|
128
127
|
- db/migrate/20180318181324_add_administrator_to_eac_users_support_users.rb
|
|
129
128
|
- lib/eac_users_support.rb
|