dnscaster 0.2.1 → 0.3.0

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: 8f7b83548e885f49f0a9f037ac6e1ee058c7f3cf77f84e24ef6a2330e23619b3
4
- data.tar.gz: debe6e52ead4bb460a765cf3c0067b6a39fe025d862cc5e4868a53bab9ed8c49
3
+ metadata.gz: 715dd96998dfdd25121b39152cd4043d9af0ff6d96831bbc3f13f9b1d6d7a8e0
4
+ data.tar.gz: a66662b7fc7660e1916c84f3fee75fd3e1c3c15233f7cc0529b2eafb35744da0
5
5
  SHA512:
6
- metadata.gz: 7271675a1c44e85a53cd262a049fdd62afa0ce990a28d0db152bda3cd1ec341c027cfda46525f953a689240e9b1ff43247ceeb30ff360115445de5a0bbb97e3b
7
- data.tar.gz: 82d653d08e0d29c0ba92eb2dfc0547eca93a47769e75d261918413666aabc98ea9b507b9188b61882261deb1fe15e12c687b96cb61caa2fcf5bacc970e2d7e9c
6
+ metadata.gz: 13b9166d1b3745e8bc3f4f041274b113d3fb2904608c096d478a11eb9d815c2c3fd2b81a1a389b2ad2bcd41164e7224764be8c76b13be67c2267e9e92a8c153f
7
+ data.tar.gz: 6a07835cfa390c2b5bc783c226fbb0ae21f27595906d27d53f2c9aadae825493f96c39e4d3c45abecb32c50bc833570b9bce10a79f63002550a758f211d68734
data/.gitignore CHANGED
@@ -6,6 +6,7 @@ doc/
6
6
  Gemfile.lock
7
7
  pkg/
8
8
  rdoc
9
+ .ruby-*
9
10
  spec/reports/
10
11
  test/tmp
11
12
  test/version_tmp
data/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright 2022-2025 Notioneer, Inc.
1
+ Copyright 2022-2026 Notioneer, Inc.
2
2
 
3
3
  MIT License
4
4
 
data/dnscaster.gemspec CHANGED
@@ -13,15 +13,15 @@ Gem::Specification.new do |spec|
13
13
  spec.homepage = "https://dnscaster.com/"
14
14
  spec.license = "MIT"
15
15
 
16
+ spec.metadata = {
17
+ 'source_code_uri' => 'https://github.com/cosmicio/dnscaster-ruby',
18
+ }
19
+
16
20
  spec.files = `git ls-files`.split($/)
17
21
  spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
22
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
23
  spec.require_paths = ["lib"]
20
24
 
21
- spec.metadata = {
22
- 'source_code_uri' => 'https://github.com/cosmicio/dnscaster-ruby',
23
- }
24
-
25
25
  spec.required_ruby_version = '>= 2.7'
26
26
 
27
27
  spec.add_dependency 'ncore', '>= 3.10', '< 4'
@@ -1,3 +1,3 @@
1
1
  module Dnscaster
2
- VERSION = '0.2.1'
2
+ VERSION = '0.3.0'
3
3
  end
@@ -5,7 +5,7 @@ module Dnscaster
5
5
  belongs_to :nameserver_set
6
6
  has_many :hosts
7
7
 
8
- attr :external_ref, :ips, :locations, :name
8
+ attr :ips, :locations, :name, :properties
9
9
  attr :in_use # readonly
10
10
 
11
11
  end
@@ -6,7 +6,7 @@ module Dnscaster
6
6
  belongs_to :ip_monitor
7
7
  belongs_to :zone
8
8
 
9
- attr :data, :dns_type, :external_ref, :hostname, :priority, :state, :ttl
9
+ attr :data, :dns_type, :external_ref, :hostname, :priority, :properties, :state, :ttl
10
10
  attr :notes
11
11
  attr :effective_ttl, :fqdn, :fqdn_utf8, :hostname_utf8 # readonly
12
12
 
@@ -5,7 +5,7 @@ module Dnscaster
5
5
  belongs_to :nameserver_set
6
6
  has_many :hosts
7
7
 
8
- attr :external_ref, :hostname, :name, :uri
8
+ attr :external_ref, :hostname, :name, :properties, :uri
9
9
  attr :health, :in_use # readonly
10
10
  attr_datetime :health_at
11
11
 
@@ -8,7 +8,7 @@ module Dnscaster
8
8
  has_many :vanity_sets
9
9
  has_many :zones
10
10
 
11
- attr :external_ref, :hostmaster, :ip_ttl, :name, :ns_ttl
11
+ attr :hostmaster, :ip_ttl, :name, :ns_ttl, :properties
12
12
  attr :in_use # readonly
13
13
 
14
14
  end
@@ -6,7 +6,7 @@ module Dnscaster
6
6
  belongs_to :vanity_zone
7
7
  has_many :zones
8
8
 
9
- attr :default_set, :external_ref, :pattern
9
+ attr :default_set, :pattern, :properties
10
10
  attr :in_use, :name, :vanity_domain # readonly
11
11
 
12
12
 
@@ -7,7 +7,7 @@ module Dnscaster
7
7
  belongs_to :vanity_set
8
8
  has_many :hosts
9
9
 
10
- attr :default_ttl, :domain, :external_ref, :nx_ttl, :tags
10
+ attr :default_ttl, :domain, :nx_ttl, :properties, :tags
11
11
  attr :delegation_updates, :glue_updates
12
12
  attr :notes
13
13
  attr :delegation_errors, :domain_utf8, :glue_errors, :in_use, :synced # readonly
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dnscaster
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - DNScaster Team