eac_users_support 0.1.2 → 0.2.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8483fd78e8c397651dbb400499532c27124543b4
4
- data.tar.gz: 179f93a172b35b19bcf4fc3e016515c116319784
3
+ metadata.gz: b6ed3ddc05c5b369cd8d8b924d9be75484b9c98e
4
+ data.tar.gz: 0651ff15c1df369554d3fed06bb8c023ea441a15
5
5
  SHA512:
6
- metadata.gz: 07d6228b1ea4dc213c69912d2da4f94359b0e951b45aa4c70688a1376d62c94f34ebe9e149cf4e70be5a8afad8705ca57e5a6c93eb954673a4166c99be9591af
7
- data.tar.gz: 21676b62b2e8204aa30656e58937956bbdae6d083858f59c774b1e128e5be2828e68633bdb4a744612cd8ad14a14e83f2aef9f7aa3b4994dcc642bd4c0e5fedf
6
+ metadata.gz: 29e68a5eb1d3b7023bb26d124be3ba29cb33842b55ff81b43546177fafe96394c6413cc5c3a97e4624595d81e4bb760ee7928d8070aa871d437660fc29e0cf33
7
+ data.tar.gz: cd6e6cbfabaf601f6f1a15f6088af7a9b28779e300e37afc064efd7bbca6dae5e6c3ef27bbb6b774013ab56d5c4ddfc257bcb9e63add8192a086a0d53fdd7b19
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ class AddAdministratorToEacUsersSupportUsers < ActiveRecord::Migration
4
+ def change
5
+ add_column :eac_users_support_users, :administrator, :boolean, null: false, default: false
6
+ end
7
+ end
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module EacUsersSupport
3
- VERSION = '0.1.2'
3
+ VERSION = '0.2.0'
4
4
  end
@@ -11,14 +11,15 @@
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: 20180222202443) do
14
+ ActiveRecord::Schema.define(version: 20180318181324) 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
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
21
  t.datetime "remember_created_at"
22
+ t.boolean "administrator", default: false, null: false
22
23
  end
23
24
 
24
25
  add_index "eac_users_support_users", ["email"], name: "index_eac_users_support_users_on_email", unique: true
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.2
4
+ version: 0.2.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: 2018-03-18 00:00:00.000000000 Z
11
+ date: 2018-03-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -90,6 +90,7 @@ files:
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
92
  - db/migrate/20180222202443_add_devise_rememberable_to_eac_users_support_users.rb
93
+ - db/migrate/20180318181324_add_administrator_to_eac_users_support_users.rb
93
94
  - lib/eac_users_support.rb
94
95
  - lib/eac_users_support/engine.rb
95
96
  - lib/eac_users_support/patches/action_controller_test_case.rb
@@ -154,7 +155,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
154
155
  version: '0'
155
156
  requirements: []
156
157
  rubyforge_project:
157
- rubygems_version: 2.6.12
158
+ rubygems_version: 2.6.14
158
159
  signing_key:
159
160
  specification_version: 4
160
161
  summary: Ready-to-use support for users registration, login, logout, etc, for Rails.