notion_cf 0.1.0
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 +7 -0
- data/.env.sample +1 -0
- data/.rspec +3 -0
- data/.rubocop.yml +17 -0
- data/.vscode/settings.json +7 -0
- data/CHANGELOG.md +5 -0
- data/CODE_OF_CONDUCT.md +84 -0
- data/LICENSE.txt +21 -0
- data/README.md +47 -0
- data/Rakefile +12 -0
- data/exe/notion_cf +6 -0
- data/lib/notion_cf/block_resource.rb +79 -0
- data/lib/notion_cf/cli.rb +26 -0
- data/lib/notion_cf/database_resource.rb +56 -0
- data/lib/notion_cf/notion_api_client.rb +55 -0
- data/lib/notion_cf/page_resource.rb +39 -0
- data/lib/notion_cf/resource.rb +63 -0
- data/lib/notion_cf/resources.rb +56 -0
- data/lib/notion_cf/template.rb +30 -0
- data/lib/notion_cf/version.rb +5 -0
- data/lib/notion_cf.rb +23 -0
- data/sig/notion_cf.rbs +4 -0
- data/templates/.keep +0 -0
- data/templates/sample.yaml +1182 -0
- metadata +119 -0
metadata
ADDED
@@ -0,0 +1,119 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: notion_cf
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- takesoo
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2024-01-07 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: dotenv
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: notion-ruby-client
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '1.2'
|
34
|
+
- - ">="
|
35
|
+
- !ruby/object:Gem::Version
|
36
|
+
version: 1.2.2
|
37
|
+
type: :runtime
|
38
|
+
prerelease: false
|
39
|
+
version_requirements: !ruby/object:Gem::Requirement
|
40
|
+
requirements:
|
41
|
+
- - "~>"
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: '1.2'
|
44
|
+
- - ">="
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: 1.2.2
|
47
|
+
- !ruby/object:Gem::Dependency
|
48
|
+
name: thor
|
49
|
+
requirement: !ruby/object:Gem::Requirement
|
50
|
+
requirements:
|
51
|
+
- - ">="
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: '0'
|
54
|
+
type: :runtime
|
55
|
+
prerelease: false
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
57
|
+
requirements:
|
58
|
+
- - ">="
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
version: '0'
|
61
|
+
description: You can manage notion with YAML file.
|
62
|
+
email:
|
63
|
+
- takesooon@gmail.com
|
64
|
+
executables:
|
65
|
+
- notion_cf
|
66
|
+
extensions: []
|
67
|
+
extra_rdoc_files: []
|
68
|
+
files:
|
69
|
+
- ".env.sample"
|
70
|
+
- ".rspec"
|
71
|
+
- ".rubocop.yml"
|
72
|
+
- ".vscode/settings.json"
|
73
|
+
- CHANGELOG.md
|
74
|
+
- CODE_OF_CONDUCT.md
|
75
|
+
- LICENSE.txt
|
76
|
+
- README.md
|
77
|
+
- Rakefile
|
78
|
+
- exe/notion_cf
|
79
|
+
- lib/notion_cf.rb
|
80
|
+
- lib/notion_cf/block_resource.rb
|
81
|
+
- lib/notion_cf/cli.rb
|
82
|
+
- lib/notion_cf/database_resource.rb
|
83
|
+
- lib/notion_cf/notion_api_client.rb
|
84
|
+
- lib/notion_cf/page_resource.rb
|
85
|
+
- lib/notion_cf/resource.rb
|
86
|
+
- lib/notion_cf/resources.rb
|
87
|
+
- lib/notion_cf/template.rb
|
88
|
+
- lib/notion_cf/version.rb
|
89
|
+
- sig/notion_cf.rbs
|
90
|
+
- templates/.keep
|
91
|
+
- templates/sample.yaml
|
92
|
+
homepage: https://github.com/takesoo/notion_cf
|
93
|
+
licenses:
|
94
|
+
- MIT
|
95
|
+
metadata:
|
96
|
+
allowed_push_host: https://rubygems.org
|
97
|
+
homepage_uri: https://github.com/takesoo/notion_cf
|
98
|
+
source_code_uri: https://github.com/takesoo/notion_cf
|
99
|
+
changelog_uri: https://github.com/takesoo/notion_cf/blob/main/CHANGELOG.md
|
100
|
+
post_install_message:
|
101
|
+
rdoc_options: []
|
102
|
+
require_paths:
|
103
|
+
- lib
|
104
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
105
|
+
requirements:
|
106
|
+
- - ">="
|
107
|
+
- !ruby/object:Gem::Version
|
108
|
+
version: '3.1'
|
109
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
110
|
+
requirements:
|
111
|
+
- - ">="
|
112
|
+
- !ruby/object:Gem::Version
|
113
|
+
version: '0'
|
114
|
+
requirements: []
|
115
|
+
rubygems_version: 3.4.10
|
116
|
+
signing_key:
|
117
|
+
specification_version: 4
|
118
|
+
summary: managing notion like cloud formation.
|
119
|
+
test_files: []
|