active_zone 0.2.3 → 0.2.5

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
2
  SHA256:
3
- metadata.gz: eaaf6a85bac23d57d57290cfadf2dd6a1b762f74e40e3f5fa54696061b5bfe55
4
- data.tar.gz: 7dd39db536ebd40afdb60f41bc476a5c1bba5476d98af686bc606949e4722ebb
3
+ metadata.gz: c2fd6ce933565f7c2cf2b16de2534eabef6faf871dc520f18d882b9a796414f2
4
+ data.tar.gz: 5234aafb051bef06d869369eaad20b776ce86b43a65a24ff0f450b7efec4a618
5
5
  SHA512:
6
- metadata.gz: 760a6aeaede10427965aba436f9e144ad1e4560a22fa9648d39c51ba3b766721de9c6c57da01a4927b1f5c9796a048b50a2208e69b19d7ccf9adcd0cc206c78d
7
- data.tar.gz: 1a6db29c662f771be43c5d5a503cb17d3b0d7f53f535a8b05406e69d7e6cda4cdd78f62be9c8efc48b583312b0d522e8e82a4d32f1810a76dc4e421a5ff996f3
6
+ metadata.gz: 2386b64f7d171d25d90aab454ca9bdd9df051248e80d8b2876cac255eed6c2ca6a87ecdfbcc8876752f1d2c41c5cc0387c2e09d67a6789c640a6533264df73f9
7
+ data.tar.gz: 64c3c9f8d2f4d4d051ffd41aa295fe7da7f6f151e2605c0ac7138dbc6d63a3379308c2367e0db528923e9a31110418637885213fbcc84a56ab6a6e93e7aeac5c
data/README.md CHANGED
@@ -1,28 +1,37 @@
1
1
  # Active Zone
2
- A library for managing database-backed DNS zones with various nameserver adapters.
2
+ A nameserver-agnostic library to manage DNS zones with Active Model
3
3
 
4
4
  ## Usage
5
- How to use my plugin.
5
+ Usage references are available at [RubyDoc](https://rubydoc.info/gems/active_zone)
6
6
 
7
- ## Installation
8
- Add this line to your application's Gemfile:
7
+ To set a default provider to enable `ActiveZone::Zone` and other defaults add the following at the beginning of your app or a Rails initializer:
9
8
 
10
9
  ```ruby
11
- gem "active_zone"
10
+ ActiveZone.provider = YourProvider.new(**options)
12
11
  ```
13
12
 
14
- And then execute:
15
- ```bash
16
- $ bundle
13
+ Replace `YourProvider` with your nameserver's relevant Active Zone provider and `**options` with keyword options to configure the provider.
14
+
15
+ ## Installation
16
+
17
+ ### Bundler
18
+
19
+ ```bash
20
+ bundle add active_zone
17
21
  ```
18
22
 
19
- Or install it yourself as:
23
+ ### RubyGems
24
+
20
25
  ```bash
21
- $ gem install active_zone
26
+ gem install active_zone
22
27
  ```
23
28
 
24
29
  ## Contributing
25
- Contribution directions go here.
30
+ All contributions welcome
31
+
32
+ ## Copyright
33
+ This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
34
+
35
+ This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
26
36
 
27
- ## License
28
- The gem is available as open source under the terms of the LGPL 3.0 or later.
37
+ You should have received a copy of the GNU Lesser General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.
@@ -61,7 +61,6 @@ module ActiveZone
61
61
  end
62
62
 
63
63
  # Underlying method to delete the current zone
64
- # @api private
65
64
  # @abstract Override in subclass with how to delete a Zone at your provider.
66
65
  # @macro boolean
67
66
  def delete!
@@ -1,5 +1,5 @@
1
1
  module ActiveZone
2
2
  # Version of the gem
3
3
  # @return [String]
4
- VERSION = "0.2.3"
4
+ VERSION = "0.2.5"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: active_zone
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.3
4
+ version: 0.2.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Obl.ong
@@ -73,12 +73,12 @@ files:
73
73
  - lib/active_zone/zone.rb
74
74
  - lib/active_zone/zone/builtins.rb
75
75
  - lib/active_zone/zone/builtins/persistence.rb
76
- homepage: https://codeberg.org/obl-ong/active_zone
76
+ homepage: https://codeberg.org/oblong/active_zone
77
77
  licenses:
78
78
  - LGPL-3.0-or-later
79
79
  metadata:
80
80
  allowed_push_host: https://rubygems.org
81
- homepage_uri: https://codeberg.org/obl-ong/active_zone
81
+ homepage_uri: https://codeberg.org/oblong/active_zone
82
82
  source_code_uri: https://codeberg.org/oblong/active_zone
83
83
  changelog_uri: https://codeberg.org/oblong/active_zone/releases
84
84
  post_install_message: