dns-zonefile 1.1.12 → 1.1.13
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CONTRIBUTING.md +2 -2
- data/{TODO → TODO.md} +0 -2
- data/dns-zonefile.gemspec +1 -1
- data/lib/dns/zonefile/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 52eb68dd2b6354b08b882718cc9ea59fdd0db340695695d10a5332211bb2f192
|
4
|
+
data.tar.gz: 0031fab46b67d08b8a44336cc80d5b5970b0dcd45b3e7470a4822235427dbde7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dc626d8ac11cd536e1fe8106d707efd4a63af9a57f211afd5e40d4dcec4cfdba9384332986e0d6c2fe13a6e72fba868fb9ae979231045b9831ec4b2c1389e96f
|
7
|
+
data.tar.gz: b4450217343c924d6985ea62a26f86f83717f851311f922830992569101228401794020693920683a0c87320bf90ac6e3eb4d0465b985f0f3545f3c42999f00a
|
data/CONTRIBUTING.md
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
Clone the repository and move into it:
|
6
6
|
|
7
7
|
```
|
8
|
-
$ git clone git@github.com:
|
8
|
+
$ git clone git@github.com:aeden/dns-zonefile.git
|
9
9
|
$ cd dns-zonefile
|
10
10
|
```
|
11
11
|
|
@@ -33,4 +33,4 @@ Submit unit tests for your changes. You can test your changes on your machine by
|
|
33
33
|
|
34
34
|
## Publishing
|
35
35
|
|
36
|
-
Once a PR is merged into
|
36
|
+
Once a PR is merged into `main`, bump the version in `lib/dns/zonefile/version.rb` and commit that change. Next, add a new tag with that version number 'git tag vx.x.x' and push the tag to GitHub 'git push origin vx.x.x'. Finally, if you are a maintainer with access rights for rubygems.org, run `gem build dns-zonefile.gemspec` followed by `gem push dns-zonefile-x.x.x.gem` where x.x.x is the version number you just set.
|
data/{TODO → TODO.md}
RENAMED
@@ -2,5 +2,3 @@
|
|
2
2
|
* Output the zone object-graph as a zone string.
|
3
3
|
* Allow comparison of resource records and zones for checking equality.
|
4
4
|
* Allow unqualified ns and rp in SOA
|
5
|
-
* Implement the changes in the eam pull request for other record types:
|
6
|
-
https://github.com/craigw/dns-zonefile/pull/1
|
data/dns-zonefile.gemspec
CHANGED
@@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
|
|
18
18
|
be investigated programatically, manipulated, validated or printed into
|
19
19
|
some canonical form.
|
20
20
|
EOD
|
21
|
-
spec.homepage = "https://github.com/
|
21
|
+
spec.homepage = "https://github.com/aeden/dns-zonefile"
|
22
22
|
|
23
23
|
# Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
|
24
24
|
# delete this section to allow pushing this gem to any host.
|
data/lib/dns/zonefile/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dns-zonefile
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.13
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Craig R Webster
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: exe
|
11
11
|
cert_chain: []
|
12
|
-
date: 2022-
|
12
|
+
date: 2022-12-12 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: treetop
|
@@ -106,7 +106,7 @@ files:
|
|
106
106
|
- LICENCE
|
107
107
|
- README.md
|
108
108
|
- Rakefile
|
109
|
-
- TODO
|
109
|
+
- TODO.md
|
110
110
|
- bin/console
|
111
111
|
- bin/setup
|
112
112
|
- dns-zonefile.gemspec
|
@@ -122,7 +122,7 @@ files:
|
|
122
122
|
- lib/dns/zonefile.rb
|
123
123
|
- lib/dns/zonefile.treetop
|
124
124
|
- lib/dns/zonefile/version.rb
|
125
|
-
homepage: https://github.com/
|
125
|
+
homepage: https://github.com/aeden/dns-zonefile
|
126
126
|
licenses: []
|
127
127
|
metadata:
|
128
128
|
allowed_push_host: https://rubygems.org
|