panda-core 0.2.2 → 0.2.3
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/20250809000001_create_panda_core_users.rb +17 -0
- data/lib/panda/core/version.rb +1 -1
- metadata +7 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 348ffbfa5cfbd2fc7fcb605670dd7ecb3914eddd6c076984d94d689d050e44fe
|
4
|
+
data.tar.gz: 50f977fc4f31605d4b985f9f37d3167b239a4b1627e2aaedb9638e10d7bd0762
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 077e81f9825f43dd1e65425fca186277ba082bab5b4e361a746dba2bbdf3224bdca7db055db47504ca6f4d345962129f58ba3b090557992472689a6e57f90f5a
|
7
|
+
data.tar.gz: 3be894b015597b1f06a12452398eef7c03824de92e553b1d8e960f161407ee9bf3d5cd6df43e57ea5eb7075cb4b16ac38bdeae6010f30fe11e962467e45b92d6
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
class CreatePandaCoreUsers < ActiveRecord::Migration[7.1]
|
4
|
+
def change
|
5
|
+
unless table_exists?(:panda_core_users)
|
6
|
+
create_table :panda_core_users, id: :uuid do |t|
|
7
|
+
t.string :name
|
8
|
+
t.string :email, null: false
|
9
|
+
t.string :image_url
|
10
|
+
t.boolean :is_admin, default: false, null: false
|
11
|
+
t.timestamps
|
12
|
+
end
|
13
|
+
|
14
|
+
add_index :panda_core_users, :email, unique: true
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
data/lib/panda/core/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: panda-core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tasty Bamboo
|
8
8
|
- James Inman
|
9
|
+
autorequire:
|
9
10
|
bindir: bin
|
10
11
|
cert_chain: []
|
11
|
-
date:
|
12
|
+
date: 2025-09-01 00:00:00.000000000 Z
|
12
13
|
dependencies:
|
13
14
|
- !ruby/object:Gem::Dependency
|
14
15
|
name: importmap-rails
|
@@ -410,6 +411,7 @@ files:
|
|
410
411
|
- app/views/panda/core/admin/shared/_slideover.html.erb
|
411
412
|
- config/initializers/panda_core.rb
|
412
413
|
- config/routes.rb
|
414
|
+
- db/migrate/20250809000001_create_panda_core_users.rb
|
413
415
|
- lib/generators/panda/core/authentication/templates/reek_spec.rb
|
414
416
|
- lib/generators/panda/core/dev_tools/USAGE
|
415
417
|
- lib/generators/panda/core/dev_tools/templates/lefthook.yml
|
@@ -447,6 +449,7 @@ metadata:
|
|
447
449
|
homepage_uri: https://github.com/tastybamboo/panda-core
|
448
450
|
source_code_uri: https://github.com/tastybamboo/panda-core
|
449
451
|
changelog_uri: https://github.com/tastybamboo/panda-core/blob/main/CHANGELOG.md
|
452
|
+
post_install_message:
|
450
453
|
rdoc_options: []
|
451
454
|
require_paths:
|
452
455
|
- lib
|
@@ -461,7 +464,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
461
464
|
- !ruby/object:Gem::Version
|
462
465
|
version: '0'
|
463
466
|
requirements: []
|
464
|
-
rubygems_version: 3.
|
467
|
+
rubygems_version: 3.5.22
|
468
|
+
signing_key:
|
465
469
|
specification_version: 4
|
466
470
|
summary: Core libraries and development tools for Tasty Bamboo projects
|
467
471
|
test_files: []
|