crudboy 0.1.5 → 0.1.6

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: 69bd2e2762d42e2bbfd7b0a6c0c586013b5713791a376133dbe3bb16d037e133
4
- data.tar.gz: 83d46592a8907a04665a5d5e99b3ee49b1c8ce09f9e75b91e67d61c4980ecea0
3
+ metadata.gz: e345152548a12acb22ef528dd46c908f288733ec20c127ada4f35e8ef6591b7e
4
+ data.tar.gz: 4fb8c4aad59d49896acdf20024066f7bd61115ec3d8a2ff75a7a04de16d017e8
5
5
  SHA512:
6
- metadata.gz: 0a088e7f282c40b833945de0db2c5f9b63f28aebc9234f2f8a3652e896ef740402ccb34b88fa326965f9388285ff30d6543173e5f1911d09c61f52ced372ea7b
7
- data.tar.gz: 89941e6bca4b912959ada8414ba308cb1acf60874dca6e093b08e843fa0034946df744e5bf62178e0a8217d3fbdca4f27f23d24fd0057f2067c6fee253095f7e
6
+ metadata.gz: e90df33803a2d7efac0d7b2ad27dd8c0c40da90a335ad007f704d3ded20798938275b1ddfe621d1fdf4f718391db197f0ec5524a8ff3708506d55ddc9941b55f
7
+ data.tar.gz: 47c355b92e41a0afc576393831bc6a8c479d96e90ccbd8003197373b183c57c509753f225330f4c79686d4959526efe48b7b7a4a49a87d986f4572ee36e177df
@@ -59,7 +59,7 @@ module Crudboy
59
59
 
60
60
  class Definition
61
61
 
62
- attr_accessor :table_name, :model, :model_name
62
+ attr_accessor :table_name, :model, :model_name, :table_comment
63
63
 
64
64
  def initialize(options)
65
65
  @@options = options
@@ -74,6 +74,7 @@ module Crudboy
74
74
  raise "Table not exist: #{@table_name}" unless conn.tables.include?(@table_name)
75
75
 
76
76
  table_comment = conn.table_comment(@table_name)
77
+ @table_comment = table_comment
77
78
  conn.primary_key(@table_name).tap do |pkey|
78
79
  Class.new(::CrudboyModel) do
79
80
  include Crudboy::Extension
@@ -3,12 +3,13 @@ module Crudboy
3
3
 
4
4
  include Helper
5
5
 
6
- attr_accessor :model, :columns, :table_name, :model_name, :bundle_options
6
+ attr_accessor :model, :columns, :table_name, :table_comment, :model_name, :bundle_options
7
7
 
8
8
  def initialize(definition)
9
9
  @model = definition.model
10
10
  @model_name = definition.model_name
11
11
  @table_name = definition.table_name
12
+ @table_comment = definition.table_comment
12
13
  @columns = @model.columns
13
14
  end
14
15
 
@@ -1,3 +1,3 @@
1
1
  module Crudboy
2
- VERSION = "0.1.5"
2
+ VERSION = "0.1.6"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: crudboy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5
4
+ version: 0.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Liu Xiang
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-03-18 00:00:00.000000000 Z
11
+ date: 2025-02-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: mysql2