esi 0.2.3 → 0.2.4
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/esi.rb +1 -1
- data/lib/esi/calls.rb +2 -0
- data/lib/esi/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c1d7139866bf6408889132991fc7a0de63bdd024
|
4
|
+
data.tar.gz: 7876fa78a888c60ce74628b9e9f7e1fa19739b90
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2e775911db17e7679f86a21b526bd53bae9402c341258efb34f6691766fa027b03fdd3a8068ca73afeb243c958efaef927ebe28b4821de49d2597a5d379f35ea
|
7
|
+
data.tar.gz: 437dac54b79c67420cd0ff20dbd2294e642996c8549860970d0555b0bd01f6b65ffe14ec171b721919293dc37218e3459b19c9b20773220159efd37f7b026bef
|
data/lib/esi.rb
CHANGED
data/lib/esi/calls.rb
CHANGED
@@ -233,6 +233,7 @@ module Esi
|
|
233
233
|
|
234
234
|
def initialize(character_id)
|
235
235
|
@path = "/characters/#{character_id}/assets"
|
236
|
+
@paginated = true
|
236
237
|
end
|
237
238
|
end
|
238
239
|
|
@@ -242,6 +243,7 @@ module Esi
|
|
242
243
|
|
243
244
|
def initialize(corporation_id)
|
244
245
|
@path = "/corporations/#{corporation_id}/assets"
|
246
|
+
@paginated = true
|
245
247
|
end
|
246
248
|
end
|
247
249
|
|
data/lib/esi/version.rb
CHANGED