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 +4 -4
- data/lib/crudboy/definition.rb +2 -1
- data/lib/crudboy/template_context.rb +2 -1
- data/lib/crudboy/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e345152548a12acb22ef528dd46c908f288733ec20c127ada4f35e8ef6591b7e
|
4
|
+
data.tar.gz: 4fb8c4aad59d49896acdf20024066f7bd61115ec3d8a2ff75a7a04de16d017e8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e90df33803a2d7efac0d7b2ad27dd8c0c40da90a335ad007f704d3ded20798938275b1ddfe621d1fdf4f718391db197f0ec5524a8ff3708506d55ddc9941b55f
|
7
|
+
data.tar.gz: 47c355b92e41a0afc576393831bc6a8c479d96e90ccbd8003197373b183c57c509753f225330f4c79686d4959526efe48b7b7a4a49a87d986f4572ee36e177df
|
data/lib/crudboy/definition.rb
CHANGED
@@ -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
|
|
data/lib/crudboy/version.rb
CHANGED
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.
|
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:
|
11
|
+
date: 2025-02-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: mysql2
|