Skip to content

Commit f7ba2ef

Browse files
Merge pull request #30 from danmurphy1217/updates-to-create-method
Updates to create method
2 parents d18b3c9 + 6ec55d1 commit f7ba2ef

23 files changed

+927
-860
lines changed

Gemfile.lock

Lines changed: 19 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
PATH
22
remote: .
33
specs:
4-
notion_api (1.0.0)
5-
httparty
6-
json
4+
notion (1.1.3)
5+
httparty (~> 0.17)
6+
json (~> 2.2)
77

88
GEM
99
remote: https://rubygems.org/
@@ -13,7 +13,7 @@ GEM
1313
httparty (0.18.1)
1414
mime-types (~> 3.0)
1515
multi_xml (>= 0.5.2)
16-
json (2.3.1)
16+
json (2.5.1)
1717
mime-types (3.3.1)
1818
mime-types-data (~> 3.2015)
1919
mime-types-data (3.2020.1104)
@@ -25,19 +25,19 @@ GEM
2525
rake (13.0.1)
2626
regexp_parser (1.8.2)
2727
rexml (3.2.4)
28-
rspec (3.10.0)
29-
rspec-core (~> 3.10.0)
30-
rspec-expectations (~> 3.10.0)
31-
rspec-mocks (~> 3.10.0)
32-
rspec-core (3.10.0)
33-
rspec-support (~> 3.10.0)
34-
rspec-expectations (3.10.0)
28+
rspec (3.9.0)
29+
rspec-core (~> 3.9.0)
30+
rspec-expectations (~> 3.9.0)
31+
rspec-mocks (~> 3.9.0)
32+
rspec-core (3.9.3)
33+
rspec-support (~> 3.9.3)
34+
rspec-expectations (3.9.4)
3535
diff-lcs (>= 1.2.0, < 2.0)
36-
rspec-support (~> 3.10.0)
37-
rspec-mocks (3.10.0)
36+
rspec-support (~> 3.9.0)
37+
rspec-mocks (3.9.1)
3838
diff-lcs (>= 1.2.0, < 2.0)
39-
rspec-support (~> 3.10.0)
40-
rspec-support (3.10.0)
39+
rspec-support (~> 3.9.0)
40+
rspec-support (3.9.4)
4141
rubocop (1.4.1)
4242
parallel (~> 1.10)
4343
parser (>= 2.7.1.5)
@@ -50,19 +50,17 @@ GEM
5050
rubocop-ast (1.1.1)
5151
parser (>= 2.7.1.5)
5252
ruby-progressbar (1.10.1)
53-
rufo (0.12.0)
5453
unicode-display_width (1.7.0)
5554

5655
PLATFORMS
5756
ruby
5857

5958
DEPENDENCIES
6059
bundler
61-
notion_api!
62-
rake
63-
rspec
64-
rubocop
65-
rufo
60+
notion!
61+
rake (~> 13.0.0)
62+
rspec (~> 3.9.0)
63+
rubocop (~> 1.4.0)
6664

6765
BUNDLED WITH
6866
2.1.4

lib/notion_api/client.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# frozen_string_literal: true
22

3-
require_relative 'core'
4-
require_relative 'blocks'
3+
require_relative "core"
4+
require_relative "blocks"
55

66
module NotionAPI
77
# acts as the 'main interface' to the methods of this package.

0 commit comments

Comments
 (0)