fog-dynect 0.3.0 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 5b2359df85ce6d59dd810a3f9fac372d464071d3
4
- data.tar.gz: d295b12a68fc17b624472b2ef61ac71db1242603
2
+ SHA256:
3
+ metadata.gz: b8709a2a66d010c620e608456717e217bfd9fe7d0786031d649451da79370d73
4
+ data.tar.gz: 40ff9976379a72e2a5fd86e6e88de5b2378eee175e5b0b08cf45b4da747c3c60
5
5
  SHA512:
6
- metadata.gz: 7a3ea1509b0b697950d94800456685f26d34ea4c494c53a9f954d9a10331e6b5dd949786b77af80505a5ad533006761837ed974ebd0fb1adaa5d7d098461b6a9
7
- data.tar.gz: 3c65dea54ee648341a9100b455387c78f41b45e01a9bdc9c5d0708a5894d70b14940ad9cf6298efe93f9c24e039d738ad45fc2f54ad3c996672a34faa4820c0b
6
+ metadata.gz: 55d6b8bc578cd64d9435a53f7bf8d1e255595a44083046f921e3dc41d75b3cde43f225bebd95c4e488a84c9de47809cb56285ca08b02a7499304a7f3d646cc8e
7
+ data.tar.gz: 4e237c18d0e2f1eb632b6d3a8d74b402f9581ecbf868e21416cde43a970f04a8b0290690500efc8c69398684a2894d009f062110714c654074fed868650a5a56
data/.gitignore CHANGED
@@ -16,3 +16,4 @@ spec/reports
16
16
  test/tmp
17
17
  test/version_tmp
18
18
  tmp
19
+ vendor
@@ -1,15 +1,10 @@
1
1
  language: ruby
2
2
 
3
+ sudo: false
4
+
3
5
  rvm:
4
- - 2.2
5
- - 2.1
6
- - 2.0
7
- - 1.9
8
- - jruby-9.1.9.0
6
+ - 2.5
7
+ - 2.4
8
+ - 2.3
9
9
 
10
- matrix:
11
- include:
12
- - rvm: 1.8.7
13
- gemfile: gemfiles/Gemfile-1.8.7
14
- - rvm: jruby-18mode
15
- gemfile: gemfiles/Gemfile-1.8.7
10
+ before_install: bundle config build.nokogiri --use-system-libraries
@@ -1,3 +1,9 @@
1
+ v0.4.0
2
+
3
+ allow specifying api version
4
+ bump API version used to 3.7.13
5
+ fix travis tests
6
+
1
7
  v0.3.0
2
8
 
3
9
  - Change API endpoint to 'api.dynect.net' as Dyn will decommision
@@ -2,7 +2,7 @@ module Fog
2
2
  module DNS
3
3
  class Dynect < Fog::Service
4
4
  requires :dynect_customer, :dynect_username, :dynect_password
5
- recognizes :timeout, :persistent, :job_poll_timeout
5
+ recognizes :timeout, :persistent, :job_poll_timeout, :version
6
6
  recognizes :provider # remove post deprecation
7
7
 
8
8
  model_path 'fog/dynect/models/dns'
@@ -68,7 +68,7 @@ module Fog
68
68
  @path = options[:path] || '/REST'
69
69
  @persistent = options[:persistent] || false
70
70
  @scheme = options[:scheme] || 'https'
71
- @version = options[:version] || '3.7.0'
71
+ @version = options[:version] || '3.7.13'
72
72
  @job_poll_timeout = options[:job_poll_timeout] || 10
73
73
  @connection = Fog::XML::Connection.new("#{@scheme}://#{@host}:#{@port}", @persistent, @connection_options)
74
74
  end
@@ -1,5 +1,5 @@
1
1
  module Fog
2
2
  module Dynect
3
- VERSION = '0.3.0'
3
+ VERSION = '0.4.0'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fog-dynect
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Wesley Beary
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2018-01-02 00:00:00.000000000 Z
12
+ date: 2019-03-18 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler
@@ -114,7 +114,6 @@ files:
114
114
  - README.md
115
115
  - Rakefile
116
116
  - fog-dynect.gemspec
117
- - gemfiles/Gemfile-1.8.7
118
117
  - lib/fog/bin/dynect.rb
119
118
  - lib/fog/dynect.rb
120
119
  - lib/fog/dynect/dns.rb
@@ -160,8 +159,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
160
159
  - !ruby/object:Gem::Version
161
160
  version: '0'
162
161
  requirements: []
163
- rubyforge_project:
164
- rubygems_version: 2.6.6
162
+ rubygems_version: 3.0.2
165
163
  signing_key:
166
164
  specification_version: 4
167
165
  summary: Module for the 'fog' gem to support Dynect DNS.
@@ -1,7 +0,0 @@
1
- source "https://rubygems.org"
2
-
3
- gem 'mime-types', '~> 1.16'
4
- gem 'nokogiri', '~> 1.5.11'
5
- gem 'rake', '~> 10.5.0'
6
-
7
- gemspec :path => "../"