dslimple 2.0.2 → 2.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 76fd44602ed610b20a5e3ef82bb894729699459954fc2b04a90b19212ba69bc2
4
- data.tar.gz: 98e8ed71b3baaa2b045b04dbe11f5f56135b2697b73339a3201381a9a3428817
3
+ metadata.gz: fb06c08d78c0cc73f8b0f9d94bbb99123ee91ad9e384cbfdb0333f29bea1b45e
4
+ data.tar.gz: dd0e0fa228e3f018236352d219f79ac55cabf644210da33d13b166781784366d
5
5
  SHA512:
6
- metadata.gz: 2552106afd4c2c9b7737d63c60757f379e6d83f8232eb6c159e4421d39887e96aef586dd1388d377a645cf95550f7280ce780de2a5164457cdec2096ef4a167b
7
- data.tar.gz: 6a6aa968a3c0884164a271de40dcf397b5324a20199d714f9b4511c05214975d1c7fa7b6c58dfd24c31ffaf514af1a9df3923f8fba1ee8b5f857f316b7334260
6
+ metadata.gz: 8adc03921148a9e4627bbcdf7327992a05fd2a2d40cd5615c9c18861e0053a80a94432fbba314a96946ca013f4b8376beca5d3e667be52b9af04c3874d39a8fc
7
+ data.tar.gz: b3528242750b2c2611847a64ecd3de343bcf1493ba172326660424b0c89282ce67265d56c8636d28f68d8068732acb352676847d7e6b109b7ea8a16a95a53e79
@@ -52,11 +52,11 @@ class Dslimple::Query
52
52
  def execute_record(api_client, account_id)
53
53
  case operation
54
54
  when :addition
55
- api_client.zones.create_record(account_id, zone, params)
55
+ api_client.zones.create_zone_record(account_id, zone, params)
56
56
  when :modification
57
- api_client.zones.update_record(account_id, zone, params[:id], params)
57
+ api_client.zones.update_zone_record(account_id, zone, params[:id], params)
58
58
  when :deletion
59
- api_client.zones.delete_record(account_id, zone, params[:id])
59
+ api_client.zones.delete_zone_record(account_id, zone, params[:id])
60
60
  end
61
61
  end
62
62
  end
@@ -1,3 +1,3 @@
1
1
  module Dslimple
2
- VERSION = '2.0.2'.freeze
2
+ VERSION = '2.0.3'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dslimple
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.2
4
+ version: 2.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sho Kusano