notion-sdk-ruby 0.2.2 → 0.2.3
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/Gemfile.lock +1 -1
- data/lib/notion-sdk-ruby.rb +13 -0
- data/lib/{notion → notion-sdk-ruby}/client.rb +0 -0
- data/lib/{notion → notion-sdk-ruby}/endpoints.rb +0 -0
- data/lib/{notion → notion-sdk-ruby}/endpoints/blocks.rb +0 -0
- data/lib/{notion → notion-sdk-ruby}/endpoints/databases.rb +0 -0
- data/lib/{notion → notion-sdk-ruby}/endpoints/pages.rb +0 -0
- data/lib/{notion → notion-sdk-ruby}/endpoints/search.rb +0 -0
- data/lib/{notion → notion-sdk-ruby}/endpoints/users.rb +0 -0
- data/lib/notion-sdk-ruby/version.rb +3 -0
- data/notion-sdk-ruby.gemspec +10 -8
- metadata +10 -10
- data/lib/notion.rb +0 -13
- data/lib/notion/version.rb +0 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f7e21c20b56990d0f42d1df0130e4e3f3d7835727d4802cd230b7bb5daaa4109
|
|
4
|
+
data.tar.gz: 1ad409bdc5168dac0f604e62efda59ca5b1d343a353b6492f42f9daaf650fe57
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cd38bbbb96dd0c1fbf80bf419032a9e00be069de0c5e74ed921f1d6fb06846064d773fe0ad046cd2b8f7d38b9496247a307f48ac485c720e4877d20b52b9b1b0
|
|
7
|
+
data.tar.gz: 3beaf308945c7e566a74a63068f078bc211e07a74e0d677beb0788c2073c3d360f583204648bb522f54f012fad877e4dd92e2c0ebf585afda878bc2fd2071d9f
|
data/Gemfile.lock
CHANGED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
require "httparty"
|
|
2
|
+
require "notion-sdk-ruby/version"
|
|
3
|
+
require "notion-sdk-ruby/endpoints/blocks"
|
|
4
|
+
require "notion-sdk-ruby/endpoints/databases"
|
|
5
|
+
require "notion-sdk-ruby/endpoints/pages"
|
|
6
|
+
require "notion-sdk-ruby/endpoints/search"
|
|
7
|
+
require "notion-sdk-ruby/endpoints/users"
|
|
8
|
+
require "notion-sdk-ruby/endpoints"
|
|
9
|
+
require "notion-sdk-ruby/client"
|
|
10
|
+
|
|
11
|
+
module Notion
|
|
12
|
+
class Error < StandardError; end
|
|
13
|
+
end
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
data/notion-sdk-ruby.gemspec
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
|
|
1
|
+
lib = File.expand_path("../lib", __FILE__)
|
|
2
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
3
|
+
require_relative "lib/notion-sdk-ruby/version"
|
|
2
4
|
|
|
3
5
|
Gem::Specification.new do |spec|
|
|
4
6
|
spec.name = "notion-sdk-ruby"
|
|
@@ -24,12 +26,12 @@ Gem::Specification.new do |spec|
|
|
|
24
26
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
25
27
|
spec.require_paths = ["lib"]
|
|
26
28
|
|
|
27
|
-
spec.add_dependency
|
|
29
|
+
spec.add_dependency "httparty", "~> 0.18.1"
|
|
28
30
|
|
|
29
|
-
spec.add_development_dependency
|
|
30
|
-
spec.add_development_dependency
|
|
31
|
-
spec.add_development_dependency
|
|
32
|
-
spec.add_development_dependency
|
|
33
|
-
spec.add_development_dependency
|
|
34
|
-
spec.add_development_dependency
|
|
31
|
+
spec.add_development_dependency "rake", "~> 12.0"
|
|
32
|
+
spec.add_development_dependency "rspec", "~> 3.0"
|
|
33
|
+
spec.add_development_dependency "standardrb", "~> 1.0"
|
|
34
|
+
spec.add_development_dependency "webmock", "~> 3.12"
|
|
35
|
+
spec.add_development_dependency "pry", "~> 0.14.1"
|
|
36
|
+
spec.add_development_dependency "dotenv", "~> 2.7"
|
|
35
37
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: notion-sdk-ruby
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Graham Marlow
|
|
@@ -127,15 +127,15 @@ files:
|
|
|
127
127
|
- Rakefile
|
|
128
128
|
- bin/console
|
|
129
129
|
- bin/setup
|
|
130
|
-
- lib/notion.rb
|
|
131
|
-
- lib/notion/client.rb
|
|
132
|
-
- lib/notion/endpoints.rb
|
|
133
|
-
- lib/notion/endpoints/blocks.rb
|
|
134
|
-
- lib/notion/endpoints/databases.rb
|
|
135
|
-
- lib/notion/endpoints/pages.rb
|
|
136
|
-
- lib/notion/endpoints/search.rb
|
|
137
|
-
- lib/notion/endpoints/users.rb
|
|
138
|
-
- lib/notion/version.rb
|
|
130
|
+
- lib/notion-sdk-ruby.rb
|
|
131
|
+
- lib/notion-sdk-ruby/client.rb
|
|
132
|
+
- lib/notion-sdk-ruby/endpoints.rb
|
|
133
|
+
- lib/notion-sdk-ruby/endpoints/blocks.rb
|
|
134
|
+
- lib/notion-sdk-ruby/endpoints/databases.rb
|
|
135
|
+
- lib/notion-sdk-ruby/endpoints/pages.rb
|
|
136
|
+
- lib/notion-sdk-ruby/endpoints/search.rb
|
|
137
|
+
- lib/notion-sdk-ruby/endpoints/users.rb
|
|
138
|
+
- lib/notion-sdk-ruby/version.rb
|
|
139
139
|
- notion-sdk-ruby.gemspec
|
|
140
140
|
homepage: https://github.com/mgmarlow/notion-sdk-ruby
|
|
141
141
|
licenses:
|
data/lib/notion.rb
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
require "httparty"
|
|
2
|
-
require "notion/version"
|
|
3
|
-
require "notion/endpoints/blocks"
|
|
4
|
-
require "notion/endpoints/databases"
|
|
5
|
-
require "notion/endpoints/pages"
|
|
6
|
-
require "notion/endpoints/search"
|
|
7
|
-
require "notion/endpoints/users"
|
|
8
|
-
require "notion/endpoints"
|
|
9
|
-
require "notion/client"
|
|
10
|
-
|
|
11
|
-
module Notion
|
|
12
|
-
class Error < StandardError; end
|
|
13
|
-
end
|
data/lib/notion/version.rb
DELETED