esi 0.1.14 → 0.1.15
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/calls.rb +18 -0
- data/lib/esi/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 35daf8f82e0413127bfc36abe1df42ad475f1372
|
|
4
|
+
data.tar.gz: 184ba21d26d4dfd4a4aa802ff4bae16f56e4a957
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fbdd04b3dd502356e86f90a94da41efd9fd9dd91b24d9d6a7c050e50e607a5c2ebd6115d50b735ac5f2f26b4289275a829051940f022c727f2b48907ef18fd9d
|
|
7
|
+
data.tar.gz: 96cbd892a7545a9c10e5d1e457d4c64ce4274a145b98f5670e1298e88046f55d8aa4d0d59b30524e5f3fc97bcd7a8604e77faeba89573f9a71f8e1a51657700e
|
data/lib/esi/calls.rb
CHANGED
|
@@ -70,6 +70,24 @@ module Esi
|
|
|
70
70
|
end
|
|
71
71
|
end
|
|
72
72
|
|
|
73
|
+
class IndustryFacilities < Base
|
|
74
|
+
self.scope = nil
|
|
75
|
+
self.cache_duration = 3600
|
|
76
|
+
|
|
77
|
+
def initialize
|
|
78
|
+
@path = "/industry/facilities"
|
|
79
|
+
end
|
|
80
|
+
end
|
|
81
|
+
|
|
82
|
+
class IndustrySystems < Base
|
|
83
|
+
self.scope = nil
|
|
84
|
+
self.cache_duration = 3600
|
|
85
|
+
|
|
86
|
+
def initialize
|
|
87
|
+
@path = "/industry/systems"
|
|
88
|
+
end
|
|
89
|
+
end
|
|
90
|
+
|
|
73
91
|
class Search < Base
|
|
74
92
|
def initialize(character_id: nil, categories:, search:, strict: false)
|
|
75
93
|
@path = (character_id ? "/characters/#{character_id}" : '') + "/search"
|
data/lib/esi/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: esi
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.15
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Danny Hiemstra
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-10-
|
|
11
|
+
date: 2017-10-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: oauth2
|