bookingsync-api 0.0.1 → 0.0.2

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
  SHA1:
3
- metadata.gz: e7a7b6ab1a172640a5ad5e01dca78d0aae5694b8
4
- data.tar.gz: a0cfcfe2429857f95e36cf6f3690e3611c88bbb3
3
+ metadata.gz: b91636c681d9a75f75d44df58808dc47bf7e8218
4
+ data.tar.gz: 1f4cd554aaf03138ce01122f8cc3f5f2a9055f7e
5
5
  SHA512:
6
- metadata.gz: 904395f6a792621c69c12ccfc2059710af400bab9ebc681b3226e3e67d3c9f89cb3c77f31fce52d49e2838c89793e3537164e5bfd372c93f9d762e30a3a0f40e
7
- data.tar.gz: efec160c80837d94c52a9aef2aeee9a95f54106a7ea8b73fe43ba9aa517037ac0f7fb85f326861b4b82dd16564322478bfec50a1722751f6e7360b2e620f3e89
6
+ metadata.gz: ff8974e066b5ea77a77caa0188c9c694cb6bc85aa05d6e9d32cb108ca5c7e486785faff3db935ccc06e69df4ff439c79bc71b9f28d23359398c989223456db37
7
+ data.tar.gz: 8cbd60302e60bc566f11bb2b3a37770cbd2dd0f03590bdc0d6e435c9a6ca9ce1f60054111650c55445df9be0ee170ed03186e268d61c26b40e1b99805bcebfc3
@@ -1,5 +1,5 @@
1
1
  module BookingSync
2
2
  module API
3
- VERSION = "0.0.1"
3
+ VERSION = "0.0.2"
4
4
  end
5
5
  end
@@ -1,5 +1,5 @@
1
1
  $LOAD_PATH.unshift File.expand_path('../../lib', __FILE__)
2
- require 'bookingsync/api'
2
+ require 'bookingsync/bookingsync-api'
3
3
  require 'webmock/rspec'
4
4
  require 'vcr'
5
5
  require 'json'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bookingsync-api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sébastien Grosjean
@@ -82,13 +82,13 @@ files:
82
82
  - README.md
83
83
  - Rakefile
84
84
  - bookingsync-api.gemspec
85
- - lib/bookingsync/api.rb
86
85
  - lib/bookingsync/api/client.rb
87
86
  - lib/bookingsync/api/client/bookings.rb
88
87
  - lib/bookingsync/api/client/rentals.rb
89
88
  - lib/bookingsync/api/error.rb
90
89
  - lib/bookingsync/api/middleware/authentication.rb
91
90
  - lib/bookingsync/api/version.rb
91
+ - lib/bookingsync/bookingsync-api.rb
92
92
  - spec/bookingsync/api/client/bookings_spec.rb
93
93
  - spec/bookingsync/api/client/rentals_spec.rb
94
94
  - spec/bookingsync/api/client_spec.rb