antbird 0.0.6 → 0.0.7
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/.travis.yml +1 -0
- data/lib/antbird/rest_api/rest_api_v5_1.rb +987 -0
- data/lib/antbird/version.rb +1 -1
- data/script/rest_api_template.erb +1 -1
- metadata +3 -2
data/lib/antbird/version.rb
CHANGED
|
@@ -6,7 +6,7 @@ module Antbird
|
|
|
6
6
|
module RestApi
|
|
7
7
|
module RestApiV<%= class_version %>
|
|
8
8
|
def common_params
|
|
9
|
-
@common_params ||= <%= api_spec['_common.json'] %>
|
|
9
|
+
@common_params ||= <%= api_spec['_common.json'] || {} %>
|
|
10
10
|
end
|
|
11
11
|
<% api_spec.each do |file_name, file_content| %>
|
|
12
12
|
<% next if file_name == '_common.json' %>
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: antbird
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- fukayatsu
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-
|
|
11
|
+
date: 2018-10-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday
|
|
@@ -158,6 +158,7 @@ files:
|
|
|
158
158
|
- lib/antbird.rb
|
|
159
159
|
- lib/antbird/client.rb
|
|
160
160
|
- lib/antbird/client/errors.rb
|
|
161
|
+
- lib/antbird/rest_api/rest_api_v5_1.rb
|
|
161
162
|
- lib/antbird/rest_api/rest_api_v5_5.rb
|
|
162
163
|
- lib/antbird/rest_api/rest_api_v5_6.rb
|
|
163
164
|
- lib/antbird/rest_api/rest_api_v6_1.rb
|