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 +4 -4
- data/.rubocop.yml +1 -1
- data/doohly.gemspec +3 -3
- data/lib/doohly/version.rb +1 -1
- metadata +5 -12
- data/docs/example/GET_booking_by_id.json +0 -1347
- data/docs/example/GET_bookings.json +0 -20366
- data/docs/example/GET_creative_by_id.json +0 -9
- data/docs/example/GET_device_by_id.json +0 -1268
- data/docs/example/GET_devices.json +0 -2576
- data/docs/example/PUT_creatives.json +0 -4
- data/examples/usage.rb +0 -69
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fe962970f342b1cc3deb88b4e89dbc9983663600dd93ac04e87d1407e7fc23f7
|
|
4
|
+
data.tar.gz: d29bb90dd2ab0d86f9aa4291741b87777df0653d6590bf7ee6fe681922358609
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a754a1e9fdda2230081d98b95eb240cd856af3850e0d25a91c8c321eb422455cdf420eb7d7fffeebc6ce6933c39d92ff2478e7f060fc9e674b80832ef642c465
|
|
7
|
+
data.tar.gz: 8f27c52b88717fda50c5136dac530af53706b5a5ffec265b8476267a424acff5513860852a3d4984f33441a7a78f65922f1403ed179abcdc98329540ebc54ef8
|
data/.rubocop.yml
CHANGED
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://
|
|
14
|
+
spec.homepage = "https://www.sentia.com.au"
|
|
15
15
|
spec.license = "MIT"
|
|
16
|
-
spec.required_ruby_version = ">= 3.
|
|
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"
|
data/lib/doohly/version.rb
CHANGED
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.
|
|
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
|
+
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://
|
|
161
|
+
homepage: https://www.sentia.com.au
|
|
169
162
|
licenses:
|
|
170
163
|
- MIT
|
|
171
164
|
metadata:
|
|
172
|
-
homepage_uri: https://
|
|
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.
|
|
179
|
+
version: 3.2.0
|
|
187
180
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
188
181
|
requirements:
|
|
189
182
|
- - ">="
|