notion_to_html 1.1.4 → 1.1.6
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/lib/notion_to_html/base_page.rb +1 -1
- data/lib/notion_to_html/version.rb +1 -1
- metadata +3 -18
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3220d57586fd9d5646ad82c30b39b5b1149f567bf70656be6d634ba08c7b3cfa
|
|
4
|
+
data.tar.gz: d3b643e4a141f1b255e10e0b2308eeaee08366731bddda0acb9ba1676d1d47c5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7fd5c79426a2c7c0d3cf9ab49e60d0af78d0aa2546f56d4438c9c967dfdbf751d1667cfbd673e4228700bfe88a74de3c74cbeaacf44fca16c4f39c3d49d857a1
|
|
7
|
+
data.tar.gz: ce55244767dffd6fc08a79902dc5121cc727efb65286c0e6e58b9a8377eaa05bb300d505dd59908fe720c6d9ce3fc0531f076c730e758b55189378cf15facf48
|
|
@@ -87,7 +87,7 @@ module NotionToHtml
|
|
|
87
87
|
def process_properties
|
|
88
88
|
@tags = @properties['tags']
|
|
89
89
|
@title = @properties.dig('name', 'title')
|
|
90
|
-
@slug = @properties
|
|
90
|
+
@slug = @properties.dig('slug', 'rich_text').first['plain_text']
|
|
91
91
|
@published_at = @properties.dig('published', 'date', 'start')
|
|
92
92
|
@description = @properties.dig('description', 'rich_text')
|
|
93
93
|
end
|
metadata
CHANGED
|
@@ -1,22 +1,18 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: notion_to_html
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Guillermo Aguirre
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: bin
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date: 2024-
|
|
10
|
+
date: 2024-12-31 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
13
|
name: actionview
|
|
15
14
|
requirement: !ruby/object:Gem::Requirement
|
|
16
15
|
requirements:
|
|
17
|
-
- - "~>"
|
|
18
|
-
- !ruby/object:Gem::Version
|
|
19
|
-
version: '7'
|
|
20
16
|
- - ">="
|
|
21
17
|
- !ruby/object:Gem::Version
|
|
22
18
|
version: 7.0.0
|
|
@@ -24,9 +20,6 @@ dependencies:
|
|
|
24
20
|
prerelease: false
|
|
25
21
|
version_requirements: !ruby/object:Gem::Requirement
|
|
26
22
|
requirements:
|
|
27
|
-
- - "~>"
|
|
28
|
-
- !ruby/object:Gem::Version
|
|
29
|
-
version: '7'
|
|
30
23
|
- - ">="
|
|
31
24
|
- !ruby/object:Gem::Version
|
|
32
25
|
version: 7.0.0
|
|
@@ -34,9 +27,6 @@ dependencies:
|
|
|
34
27
|
name: activesupport
|
|
35
28
|
requirement: !ruby/object:Gem::Requirement
|
|
36
29
|
requirements:
|
|
37
|
-
- - "~>"
|
|
38
|
-
- !ruby/object:Gem::Version
|
|
39
|
-
version: '7'
|
|
40
30
|
- - ">="
|
|
41
31
|
- !ruby/object:Gem::Version
|
|
42
32
|
version: 7.0.0
|
|
@@ -44,9 +34,6 @@ dependencies:
|
|
|
44
34
|
prerelease: false
|
|
45
35
|
version_requirements: !ruby/object:Gem::Requirement
|
|
46
36
|
requirements:
|
|
47
|
-
- - "~>"
|
|
48
|
-
- !ruby/object:Gem::Version
|
|
49
|
-
version: '7'
|
|
50
37
|
- - ">="
|
|
51
38
|
- !ruby/object:Gem::Version
|
|
52
39
|
version: 7.0.0
|
|
@@ -100,7 +87,6 @@ licenses:
|
|
|
100
87
|
metadata:
|
|
101
88
|
homepage_uri: https://github.com/guillermoap/notion_to_html
|
|
102
89
|
source_code_uri: https://github.com/guillermoap/notion_to_html
|
|
103
|
-
post_install_message:
|
|
104
90
|
rdoc_options: []
|
|
105
91
|
require_paths:
|
|
106
92
|
- lib
|
|
@@ -115,8 +101,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
115
101
|
- !ruby/object:Gem::Version
|
|
116
102
|
version: '0'
|
|
117
103
|
requirements: []
|
|
118
|
-
rubygems_version: 3.
|
|
119
|
-
signing_key:
|
|
104
|
+
rubygems_version: 3.6.2
|
|
120
105
|
specification_version: 4
|
|
121
106
|
summary: Notion HTML renderer for Ruby
|
|
122
107
|
test_files: []
|