notion-sdk-ruby 0.2.2 → 0.2.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 876930491da71b978c0a95bb00e5d8838eb1ad4655489ab10d7d66e291708bba
4
- data.tar.gz: e4a1998ecbc4719fc3697fc0e562d31f59830d9f736a2b29e825a908fde368a1
3
+ metadata.gz: f7e21c20b56990d0f42d1df0130e4e3f3d7835727d4802cd230b7bb5daaa4109
4
+ data.tar.gz: 1ad409bdc5168dac0f604e62efda59ca5b1d343a353b6492f42f9daaf650fe57
5
5
  SHA512:
6
- metadata.gz: 318989ffe70cd56b2c91fa08ee04a265fd246cb0b36c9b0a1b72b78d60532159a30412ad2d0e74291af723dc1044acc19737692d2ccc10bf1c91c6830a2cf735
7
- data.tar.gz: d3e6a6101aeb1c53667c4402498c6b6594170d40fb84513c8375ca4371bbf1dc8600bb0ce28d7ca97c89daf371ae8948f91fafca9abc3b52f8590f1748510526
6
+ metadata.gz: cd38bbbb96dd0c1fbf80bf419032a9e00be069de0c5e74ed921f1d6fb06846064d773fe0ad046cd2b8f7d38b9496247a307f48ac485c720e4877d20b52b9b1b0
7
+ data.tar.gz: 3beaf308945c7e566a74a63068f078bc211e07a74e0d677beb0788c2073c3d360f583204648bb522f54f012fad877e4dd92e2c0ebf585afda878bc2fd2071d9f
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- notion-sdk-ruby (0.2.2)
4
+ notion-sdk-ruby (0.2.3)
5
5
  httparty (~> 0.18.1)
6
6
 
7
7
  GEM
@@ -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
@@ -0,0 +1,3 @@
1
+ module Notion
2
+ VERSION = "0.2.3"
3
+ end
@@ -1,4 +1,6 @@
1
- require_relative "lib/notion/version"
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 'httparty', "~> 0.18.1"
29
+ spec.add_dependency "httparty", "~> 0.18.1"
28
30
 
29
- spec.add_development_dependency 'rake', "~> 12.0"
30
- spec.add_development_dependency 'rspec', "~> 3.0"
31
- spec.add_development_dependency 'standardrb', "~> 1.0"
32
- spec.add_development_dependency 'webmock', "~> 3.12"
33
- spec.add_development_dependency 'pry', "~> 0.14.1"
34
- spec.add_development_dependency 'dotenv', "~> 2.7"
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.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
@@ -1,3 +0,0 @@
1
- module Notion
2
- VERSION = "0.2.2"
3
- end