trolley 1.0.2 → 1.0.3
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/lib/trolley/utils/ResponseMapper.rb +1 -1
- data/lib/trolley.rb +1 -1
- data/spec/unit/TrolleyTest.rb +1 -1
- data/trolley.gemspec +2 -2
- metadata +1 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3bcb7c20089da4beafe0f7d7ba59d2a95fae591a7c8e45de823e0e4e91767655
|
|
4
|
+
data.tar.gz: 5d91a8319bf14a9de7e386cb0b8365bfa6412e44754375b01f00c3f260341b29
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 62dec252dba117ce7ed6d7f39a5d1785cbdb2b4fb5efc0295f1f34d14968917be13fcb21d6072a885320cfd65f0b95f433f1b271ac4c5d6522fc594f8560d5e4
|
|
7
|
+
data.tar.gz: dfab56a4da9c645f84a22689fba48789c3bddf6c5c6e1d752fdbe58a9cb9a27f588026e3b98e6e426eb34b9d6e783a0b9f733d49c1c5eb4ea4c4ceb04d8caf16
|
|
@@ -54,7 +54,7 @@ module Trolley
|
|
|
54
54
|
instance.send("#{k}=", v)
|
|
55
55
|
rescue NoMethodError
|
|
56
56
|
# TODO: The API is showing non-public attributes, once we remove them from the API response we can re-add this warning.
|
|
57
|
-
# warn "[
|
|
57
|
+
# warn "[Trolley] Unknown attribute #{k} for class #{klass_instance.class.name}"
|
|
58
58
|
end
|
|
59
59
|
|
|
60
60
|
instance
|
data/lib/trolley.rb
CHANGED
data/spec/unit/TrolleyTest.rb
CHANGED
data/trolley.gemspec
CHANGED
|
@@ -4,11 +4,11 @@ Gem::Specification.new do |s|
|
|
|
4
4
|
s.name = 'trolley'
|
|
5
5
|
s.summary = 'Trolley Ruby SDK'
|
|
6
6
|
s.description = 'Ruby SDK for interacting with the Trolley API'
|
|
7
|
-
s.version = '1.0.
|
|
7
|
+
s.version = '1.0.3'
|
|
8
8
|
s.homepage = "https://github.com/trolley/ruby-sdk"
|
|
9
9
|
s.email = ['developer-tools@trolley.com']
|
|
10
10
|
s.license = 'MIT'
|
|
11
|
-
s.authors = ['Trolley'
|
|
11
|
+
s.authors = ['Trolley']
|
|
12
12
|
s.files = Dir.glob ['README.rdoc', 'LICENSE', 'lib/**/*.{rb,crt}', 'spec/**/*', '*.gemspec']
|
|
13
13
|
s.required_ruby_version = '>= 2.7'
|
|
14
14
|
s.add_development_dependency 'dotenv', '~> 2'
|