eac_users_support 0.8.4 → 0.8.5

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
  SHA256:
3
- metadata.gz: 9676cb294ca13b030329cf4f986946c9fdc8afacb76f792edab72c01f57a9adb
4
- data.tar.gz: 93ebe173e005bfd51fc99db2414b7130f16594bec19300c083364289ec5a0ed5
3
+ metadata.gz: 4d8c95549b1ffd395853bef1b08f2a4b4c1be84624969d44697963c0e83ee0cb
4
+ data.tar.gz: 7293c2fef76cd7c98ddb2fc8b87e15a1c16b1b04381eea5478fa0d729331e864
5
5
  SHA512:
6
- metadata.gz: 442695d409a35f788ef916f9400c68fc03cc0a2ab1b4d25707a8a8e73b45902187a958bfea41bd090c4d6c8218ce1c95d367100761244d561d377bfca412caf1
7
- data.tar.gz: 55e0b2f194d9cbc4c7970b5c804362eab62fbe6a3f050cf8e96f125e6fc99cf9fb22a694dc24de59bbf5b049dafde4058971888ab3b7fd0c02c6ba6acd3f1ca6
6
+ metadata.gz: d1507f17ec2ab755961f8705bd6948d3901f7f80787ab67e6d336fda2cf76d11de97b70fa4d343019376c01b1f6b1246cbcacceabf50d219f3234a8da7adc019
7
+ data.tar.gz: 513dac111d74192ead3d2e75f91274044de40bed3ee78d4de0973588ca0daa5331f0529b5b103372569ff6787a936797b45c3d27a602420310085e48aa7ec9b5
@@ -1,6 +1,8 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- class CreateEacUsersSupportUsers < ActiveRecord::Migration
3
+ class CreateEacUsersSupportUsers < (
4
+ Rails.version < '5' ? ActiveRecord::Migration : ActiveRecord::Migration[4.2]
5
+ )
4
6
  def change
5
7
  create_table :eac_users_support_users do |t|
6
8
  t.string :email, null: false, default: ''
@@ -1,6 +1,8 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- class AddDeviseAuthenticableToEacUsersSupportUsers < ActiveRecord::Migration
3
+ class AddDeviseAuthenticableToEacUsersSupportUsers < (
4
+ Rails.version < '5' ? ActiveRecord::Migration : ActiveRecord::Migration[4.2]
5
+ )
4
6
  def change
5
7
  add_column :eac_users_support_users, :encrypted_password, :string, null: false, default: ''
6
8
  add_index :eac_users_support_users, :email, unique: true
@@ -1,6 +1,8 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- class AddDeviseRememberableToEacUsersSupportUsers < ActiveRecord::Migration
3
+ class AddDeviseRememberableToEacUsersSupportUsers < (
4
+ Rails.version < '5' ? ActiveRecord::Migration : ActiveRecord::Migration[4.2]
5
+ )
4
6
  def change
5
7
  add_column :eac_users_support_users, :remember_created_at, :datetime
6
8
  end
@@ -1,6 +1,8 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- class AddAdministratorToEacUsersSupportUsers < ActiveRecord::Migration
3
+ class AddAdministratorToEacUsersSupportUsers < (
4
+ Rails.version < '5' ? ActiveRecord::Migration : ActiveRecord::Migration[4.2]
5
+ )
4
6
  def change
5
7
  add_column :eac_users_support_users, :administrator, :boolean, null: false, default: false
6
8
  end
@@ -1,6 +1,8 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- class AddDeviseInvitableToEacUsersSupportUsers < ActiveRecord::Migration
3
+ class AddDeviseInvitableToEacUsersSupportUsers < (
4
+ Rails.version < '5' ? ActiveRecord::Migration : ActiveRecord::Migration[4.2]
5
+ )
4
6
  def up
5
7
  change_table :eac_users_support_users do |t|
6
8
  t.string :invitation_token
@@ -1,6 +1,8 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- class AddDeviseConfirmableToEacUsersSupportUsers < ActiveRecord::Migration
3
+ class AddDeviseConfirmableToEacUsersSupportUsers < (
4
+ Rails.version < '5' ? ActiveRecord::Migration : ActiveRecord::Migration[4.2]
5
+ )
4
6
  class Model < ::ActiveRecord::Base
5
7
  self.table_name = :eac_users_support_users
6
8
  end
@@ -1,6 +1,8 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- class AddRecoverableToEacUsersSupportUsers < ActiveRecord::Migration
3
+ class AddRecoverableToEacUsersSupportUsers < (
4
+ Rails.version < '5' ? ActiveRecord::Migration : ActiveRecord::Migration[4.2]
5
+ )
4
6
  def change
5
7
  change_table :eac_users_support_users do |t|
6
8
  t.string :reset_password_token
@@ -1,6 +1,8 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- class AddUnconfirmedEmailToEacUsersSupportUsers < ActiveRecord::Migration
3
+ class AddUnconfirmedEmailToEacUsersSupportUsers < (
4
+ Rails.version < '5' ? ActiveRecord::Migration : ActiveRecord::Migration[4.2]
5
+ )
4
6
  def change
5
7
  add_column :eac_users_support_users, :unconfirmed_email, :string
6
8
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module EacUsersSupport
4
- VERSION = '0.8.4'
4
+ VERSION = '0.8.5'
5
5
  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.8.4
4
+ version: 0.8.5
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: 2020-10-03 00:00:00.000000000 Z
11
+ date: 2020-10-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: active_scaffold