notion_ruby_mapping 0.7.3 → 0.7.4
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/README.md +1 -0
- data/lib/notion_ruby_mapping/controllers/mermaid_database.rb +2 -1
- data/lib/notion_ruby_mapping/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fc53f7256d1ce820695e6f2dc28149ef945dd0ddf765fd933b90882212335d0c
|
4
|
+
data.tar.gz: 625c42250124c4e66d8016812c8a8bd53d02cef88c0061320fdd2ea8c996cd28
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 573470cad7c6c10bb683417cb0ae62ed33819cb3471db31f3eb9b10d5718204c801fd7e42a063a69c1753dd7739f80777fa265fee073d5bd1abd1f17b29320ff
|
7
|
+
data.tar.gz: 2b76551f53c23564645aff1c027fe8521d13f0451e6cb43bbd7f66551e784a35bbcc0b1aa0ca4d12df5f35aa5d277570ae12415963a8c51de098574d67c66804
|
data/README.md
CHANGED
@@ -126,6 +126,7 @@ NotionRubyMapping.configuration { |c| c.notion_token = ENV["NOTION_API_TOKEN"] }
|
|
126
126
|
|
127
127
|
## 3. ChangeLog
|
128
128
|
|
129
|
+
- 2023/2/9 [v0.7.4] bug fix for rollup property of erdToNotionRb.rb script
|
129
130
|
- 2023/1/26 [v0.7.3] release beta version of erdToNotionRb.rb script
|
130
131
|
- 2023/1/25 [v0.7.2] bug fix for creating relation property / add erdToNotionRb.rb script
|
131
132
|
- 2022/12/16 [v0.7.1] bug fix for query rollup property
|
@@ -48,7 +48,7 @@ module NotionRubyMapping
|
|
48
48
|
end
|
49
49
|
|
50
50
|
def count
|
51
|
-
@properties.count + @relation_queue.count
|
51
|
+
@properties.count + @relation_queue.count + 1
|
52
52
|
end
|
53
53
|
|
54
54
|
def remain
|
@@ -59,6 +59,7 @@ module NotionRubyMapping
|
|
59
59
|
ps = @real_db.properties
|
60
60
|
title_property = ps.select { |p| p.is_a? TitleProperty }.first
|
61
61
|
title_property.new_name = @title unless title_property.name == @title
|
62
|
+
@finish_flag[@title] = true
|
62
63
|
end
|
63
64
|
|
64
65
|
def update_properties
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: notion_ruby_mapping
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.
|
4
|
+
version: 0.7.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Hiroyuki KOBAYASHI
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-02-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -276,7 +276,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
276
276
|
- !ruby/object:Gem::Version
|
277
277
|
version: '0'
|
278
278
|
requirements: []
|
279
|
-
rubygems_version: 3.4.
|
279
|
+
rubygems_version: 3.4.6
|
280
280
|
signing_key:
|
281
281
|
specification_version: 4
|
282
282
|
summary: Notion Ruby mapping tool
|