squarespace_api 0.0.4 → 0.0.5

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fc908a714e0fa1658267c8753adcbd9085e87bd2b0b46a108231e06b53a20f6b
4
- data.tar.gz: 18a4ba216bc82ab428b5ee8c7352f4f8a23d9ab98630f6a469961860242a8871
3
+ metadata.gz: ec9a53ddcf9c57427b52c4eb4f044fca901ec741be24d2bd7e031de3af2f66ec
4
+ data.tar.gz: db58f1b492dd50bd85902940708b7db51114046d81775ff0bc10c5f3181b3464
5
5
  SHA512:
6
- metadata.gz: b2f62e190db5adc017b6d47933fc0e5fe28e10199098c1f148a1f4d2a10b7e5ec7efc95392f6afc22a2a53844d893733e1c815abba7d42135744332593640189
7
- data.tar.gz: 73283ff1f0f272f39b3cd46c8db5651ae8316539663276f6225b0608c2304a637c02e37fd9d529fb300b33e1436a3f874a871cd014db148ce4d339b0d377999a
6
+ metadata.gz: 3c2e561ca3bdffd2df058d31250ce5f4cd592e35dc2b7b89651aa95f3a6092411fed3c3c470cbf16a6c7854ae3a073bb15ca40392a235a991d70b1bd1f9744f3
7
+ data.tar.gz: 160c6527b3636a7abd207ccec9b28213ab644103369bb86094cfe7b6c15c3c316c743eac2b1972d2d0ae39a64b378f4da0862ce7dc8944655e520438ae43aacf
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- squarespace_api (0.0.3)
4
+ squarespace_api (0.0.5)
5
5
  faraday
6
6
  faraday_middleware
7
7
  json
@@ -17,6 +17,7 @@ module SquarespaceApi
17
17
  @connection = Faraday.new do |connection|
18
18
  connection.headers = DEFAULT_HEADERS
19
19
  connection.response :json
20
+ connection.adapter(Faraday.default_adapter)
20
21
  end
21
22
 
22
23
  initialize_app_session if config.access_token
@@ -1,3 +1,3 @@
1
1
  module SquarespaceApi
2
- VERSION = '0.0.4'.freeze
2
+ VERSION = '0.0.5'.freeze
3
3
  end
@@ -2,7 +2,7 @@ require 'spec_helper'
2
2
 
3
3
  describe SquarespaceApi do
4
4
  it 'has a version number' do
5
- expect(SquarespaceApi::VERSION).to eq('0.0.4')
5
+ expect(SquarespaceApi::VERSION).to eq('0.0.5')
6
6
  end
7
7
 
8
8
  context 'configure' do
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |spec|
2
2
  spec.name = "squarespace_api"
3
- spec.version = "0.0.4"
3
+ spec.version = "0.0.5"
4
4
  spec.summary = "Ruby gem interacting with the Squarespace API."
5
5
  spec.description = "Ruby gem interacting with the Squarespace API."
6
6
  spec.authors = ["cdragon"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: squarespace_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - cdragon