kanal-plugins-user_system 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d8b808b891105793f573a9ad5761aafcfb63997d3d600bdd6ae157f7b6e326cf
4
- data.tar.gz: 8feaa7ed933bb5ae1f4669cc12b762e8afdbb33e97ec855f72628515d059c2eb
3
+ metadata.gz: 224bf63f0573197c1906ae9cfbd203b3bfd2c978912b1e54b3d7a6bcf69f5256
4
+ data.tar.gz: 140e802ccbbdff1741797bd598e40f41a7577bd3817fc9a96402bcbf9e423f3f
5
5
  SHA512:
6
- metadata.gz: d92b41aeae204aa4a496b77042ac44ca3e4159d36aaa4bed5315b409a3aa3f914cfb6599f0dd7841e80a223c2b22c14ca86844adf437a5fd44b8be3044e40049
7
- data.tar.gz: 9bc617ad85f52a023ca1bd8dc2a8dea3dd394c71bd07c517be9ea76f1d49be18a98271e9577d625f2a57196486bae045ba5353a405937fb6f100777f459ad3c2
6
+ metadata.gz: a7120a03627e13ab8e2230b6dd6e40058925882b5bdc038569546d501f2f5c39fd3da8c26f765ba4b738eb51fe6ae5951b254a409c48182c375292bfcb2fa2a3
7
+ data.tar.gz: 147f98f6e3358f0f3997a62f7e61a58ade941a65879523c66f873d646690fdbdf1f3811236508f9faaa7d3b44f2e6b0261ee299f853a4f242a0906ef72298956
data/Gemfile.lock CHANGED
@@ -1,25 +1,19 @@
1
- GIT
2
- remote: git@github.com:idchlife/kanal.git
3
- revision: 5dbc20a3480337192d1193b0e569dba9d665d4c9
4
- specs:
5
- kanal (0.3.0)
6
-
7
1
  PATH
8
2
  remote: .
9
3
  specs:
10
- kanal-plugins-user_system (0.2.0)
4
+ kanal-plugins-user_system (0.2.1)
11
5
  activerecord
12
6
  sqlite3
13
7
 
14
8
  GEM
15
9
  remote: https://rubygems.org/
16
10
  specs:
17
- activemodel (7.0.4.1)
18
- activesupport (= 7.0.4.1)
19
- activerecord (7.0.4.1)
20
- activemodel (= 7.0.4.1)
21
- activesupport (= 7.0.4.1)
22
- activesupport (7.0.4.1)
11
+ activemodel (7.0.4.2)
12
+ activesupport (= 7.0.4.2)
13
+ activerecord (7.0.4.2)
14
+ activemodel (= 7.0.4.2)
15
+ activesupport (= 7.0.4.2)
16
+ activesupport (7.0.4.2)
23
17
  concurrent-ruby (~> 1.0, >= 1.0.2)
24
18
  i18n (>= 1.6, < 2)
25
19
  minitest (>= 5.1)
@@ -35,6 +29,7 @@ GEM
35
29
  concurrent-ruby (~> 1.0)
36
30
  jaro_winkler (1.5.4)
37
31
  json (2.6.3)
32
+ kanal (0.3.0)
38
33
  kanal-plugins-active_record (0.2.0)
39
34
  activerecord
40
35
  kanal
@@ -68,7 +63,7 @@ GEM
68
63
  diff-lcs (>= 1.2.0, < 2.0)
69
64
  rspec-support (~> 3.12.0)
70
65
  rspec-support (3.12.0)
71
- rubocop (1.44.0)
66
+ rubocop (1.44.1)
72
67
  json (~> 2.3)
73
68
  parallel (~> 1.10)
74
69
  parser (>= 3.2.0.0)
@@ -107,7 +102,7 @@ GEM
107
102
  sqlite3 (1.6.0-x86_64-darwin)
108
103
  thor (1.2.1)
109
104
  tilt (2.0.11)
110
- tzinfo (2.0.5)
105
+ tzinfo (2.0.6)
111
106
  concurrent-ruby (~> 1.0)
112
107
  unicode-display_width (2.4.2)
113
108
  webrick (1.7.0)
@@ -118,7 +113,7 @@ PLATFORMS
118
113
  x86_64-darwin-21
119
114
 
120
115
  DEPENDENCIES
121
- kanal!
116
+ kanal
122
117
  kanal-plugins-active_record
123
118
  kanal-plugins-user_system!
124
119
  rake (~> 13.0)
@@ -2,7 +2,7 @@
2
2
 
3
3
  require "active_record"
4
4
 
5
- class CreateBaseModels < ActiveRecord::Migration[7.0]
5
+ class CreateBaseModels < ::ActiveRecord::Migration[7.0]
6
6
  def change
7
7
  create_table :kanal_users do |t|
8
8
  t.string :username, null: false, index: { unique: true, name: "kanal_unique_usernames" }
@@ -8,7 +8,7 @@ module Kanal
8
8
  module UserSystem
9
9
  module Models
10
10
  # Base user class for storing user properties
11
- class KanalUser < ActiveRecord::Base
11
+ class KanalUser < ::ActiveRecord::Base
12
12
  self.table_name = :kanal_users
13
13
 
14
14
  STATE_PROPERTY = "_state"
@@ -8,7 +8,7 @@ module Kanal
8
8
  module UserSystem
9
9
  module Models
10
10
  # Base user class for storing user properties
11
- class KanalUserProperty < ActiveRecord::Base
11
+ class KanalUserProperty < ::ActiveRecord::Base
12
12
  include Helpers::JsonValueConverterMixin
13
13
 
14
14
  self.table_name = :kanal_user_properties
@@ -3,7 +3,7 @@
3
3
  module Kanal
4
4
  module Plugins
5
5
  module UserSystem
6
- VERSION = "0.2.0"
6
+ VERSION = "0.2.1"
7
7
  end
8
8
  end
9
9
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kanal-plugins-user_system
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - idchlife