doohly 0.1.0 → 0.2.0

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: ec0740e7866069798ff27a4b45a33757d8089c6c7ebdb0f7fcc3315ddd7f02a4
4
- data.tar.gz: bc19baf1010dc9f34cb1c4e2470c5e509de73276515279f5ec755c29f15c60d5
3
+ metadata.gz: fe962970f342b1cc3deb88b4e89dbc9983663600dd93ac04e87d1407e7fc23f7
4
+ data.tar.gz: d29bb90dd2ab0d86f9aa4291741b87777df0653d6590bf7ee6fe681922358609
5
5
  SHA512:
6
- metadata.gz: a3ac4751076638654f0c799cb0e3c7524e6bb9ae3fbea2eaac41bae07638b8962e48780912238a6b4311f4a7ffcf70ce8aa85fa9690d928d6ddf6d40af12e0b6
7
- data.tar.gz: e1703715bb36cca9c54b6e29d09ab385e1e99929a59545ce0eae7cc858d6f56d17962aa5ebf018843fcca09ce118b7d5f7336c28ca04024a6ecec70546b5c712
6
+ metadata.gz: a754a1e9fdda2230081d98b95eb240cd856af3850e0d25a91c8c321eb422455cdf420eb7d7fffeebc6ce6933c39d92ff2478e7f060fc9e674b80832ef642c465
7
+ data.tar.gz: 8f27c52b88717fda50c5136dac530af53706b5a5ffec265b8476267a424acff5513860852a3d4984f33441a7a78f65922f1403ed179abcdc98329540ebc54ef8
data/.rubocop.yml CHANGED
@@ -2,7 +2,7 @@ require:
2
2
  - rubocop-rspec
3
3
 
4
4
  AllCops:
5
- TargetRubyVersion: 3.0
5
+ TargetRubyVersion: 3.2
6
6
  NewCops: enable
7
7
  SuggestExtensions: false
8
8
  Exclude:
data/doohly.gemspec CHANGED
@@ -11,9 +11,9 @@ Gem::Specification.new do |spec|
11
11
  spec.summary = "Ruby client for the Doohly DOOH advertising platform API"
12
12
  spec.description = "A Ruby client library for interacting with the Doohly (Digital Out-of-Home) " \
13
13
  "advertising platform API. Supports managing bookings, devices, creatives, and more."
14
- spec.homepage = "https://github.com/Sentia/doohly"
14
+ spec.homepage = "https://www.sentia.com.au"
15
15
  spec.license = "MIT"
16
- spec.required_ruby_version = ">= 3.0.0"
16
+ spec.required_ruby_version = ">= 3.2.0"
17
17
 
18
18
  spec.metadata["homepage_uri"] = spec.homepage
19
19
  spec.metadata["source_code_uri"] = "https://github.com/Sentia/doohly"
@@ -26,7 +26,7 @@ Gem::Specification.new do |spec|
26
26
  spec.files = Dir.chdir(__dir__) do
27
27
  `git ls-files -z`.split("\x0").reject do |f|
28
28
  (File.expand_path(f) == __FILE__) ||
29
- f.start_with?(*%w[bin/ test/ spec/ features/ .git .github appveyor Gemfile])
29
+ f.start_with?(*%w[bin/ test/ spec/ features/ .git .github appveyor Gemfile docs/ examples/])
30
30
  end
31
31
  end
32
32
  spec.bindir = "exe"
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Doohly
4
- VERSION = "0.1.0"
4
+ VERSION = "0.2.0"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: doohly
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sentia
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2025-11-11 00:00:00.000000000 Z
11
+ date: 2025-11-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -150,14 +150,7 @@ files:
150
150
  - LICENSE.txt
151
151
  - README.md
152
152
  - Rakefile
153
- - docs/example/GET_booking_by_id.json
154
- - docs/example/GET_bookings.json
155
- - docs/example/GET_creative_by_id.json
156
- - docs/example/GET_device_by_id.json
157
- - docs/example/GET_devices.json
158
- - docs/example/PUT_creatives.json
159
153
  - doohly.gemspec
160
- - examples/usage.rb
161
154
  - lib/doohly.rb
162
155
  - lib/doohly/client.rb
163
156
  - lib/doohly/configuration.rb
@@ -165,11 +158,11 @@ files:
165
158
  - lib/doohly/version.rb
166
159
  - sig/doohly.rbs
167
160
  - test_api.rb
168
- homepage: https://github.com/Sentia/doohly
161
+ homepage: https://www.sentia.com.au
169
162
  licenses:
170
163
  - MIT
171
164
  metadata:
172
- homepage_uri: https://github.com/Sentia/doohly
165
+ homepage_uri: https://www.sentia.com.au
173
166
  source_code_uri: https://github.com/Sentia/doohly
174
167
  changelog_uri: https://github.com/Sentia/doohly/blob/main/CHANGELOG.md
175
168
  bug_tracker_uri: https://github.com/Sentia/doohly/issues
@@ -183,7 +176,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
183
176
  requirements:
184
177
  - - ">="
185
178
  - !ruby/object:Gem::Version
186
- version: 3.0.0
179
+ version: 3.2.0
187
180
  required_rubygems_version: !ruby/object:Gem::Requirement
188
181
  requirements:
189
182
  - - ">="