dnsdeploy 0.0.2 → 0.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 +4 -4
- data/CONTRIBUTING.md +42 -0
- data/README.md +10 -21
- data/lib/dnsdeploy/base.rb +1 -0
- data/lib/dnsdeploy/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2a4ae4f829fdc82326a2e44f9b362f275be9c01c
|
|
4
|
+
data.tar.gz: 5c472326105c0af70106b2edfd04b64b6e8ba314
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 06004f94f75ec6a4771a3e541c17c38d829ae2235f7ba722659bad1cc8ec1df4379de9508be987ad2e69f800030376d6b30698d9a0abdacf658fac57cb679d41
|
|
7
|
+
data.tar.gz: 68130b644cf28a340c3077cd0e91ca9fe481a99c8abbc650209f7fac99330b932f2a38a429eab424b8e52db285be66fd0dec1a865dc0ffd94318fe9ce12f679d
|
data/CONTRIBUTING.md
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# Contributing
|
|
2
|
+
In the spirit of [free software][free-sw], **everyone** is encouraged to help
|
|
3
|
+
improve this project.
|
|
4
|
+
|
|
5
|
+
[free-sw]: http://www.fsf.org/licensing/essays/free-sw.html
|
|
6
|
+
|
|
7
|
+
Here are some ways *you* can contribute:
|
|
8
|
+
|
|
9
|
+
* by using alpha, beta, and prerelease versions
|
|
10
|
+
* by reporting bugs
|
|
11
|
+
* by suggesting new features
|
|
12
|
+
* by writing or editing documentation
|
|
13
|
+
* by writing specifications
|
|
14
|
+
* by writing code ( **no patch is too small** : fix typos, add comments, clean up inconsistent whitespace )
|
|
15
|
+
* by refactoring code
|
|
16
|
+
* by closing [issues][]
|
|
17
|
+
* by reviewing patches
|
|
18
|
+
|
|
19
|
+
[issues]: https://github.com/beanieboi/ffprober/issues
|
|
20
|
+
|
|
21
|
+
## Submitting an Issue
|
|
22
|
+
We use the [GitHub issue tracker][issues] to track bugs and features. Before
|
|
23
|
+
submitting a bug report or feature request, check to make sure it hasn't
|
|
24
|
+
already been submitted. When submitting a bug report, please include a [Gist][]
|
|
25
|
+
that includes a stack trace and any details that may be necessary to reproduce
|
|
26
|
+
the bug, including your gem version, Ruby version, and operating system.
|
|
27
|
+
Ideally, a bug report should include a pull request with failing specs.
|
|
28
|
+
|
|
29
|
+
[gist]: https://gist.github.com/
|
|
30
|
+
|
|
31
|
+
## Submitting a Pull Request
|
|
32
|
+
1. [Fork the repository.][fork]
|
|
33
|
+
2. [Create a topic branch.][branch]
|
|
34
|
+
3. Implement your feature or bug fix.
|
|
35
|
+
4. Add, commit, and push your changes.
|
|
36
|
+
5. [Submit a pull request.][pr]
|
|
37
|
+
|
|
38
|
+
[fork]: http://help.github.com/fork-a-repo/
|
|
39
|
+
[branch]: http://learn.github.com/p/branching.html
|
|
40
|
+
[pr]: http://help.github.com/send-pull-requests/
|
|
41
|
+
|
|
42
|
+
This file was taken from https://github.com/middleman/middleman-heroku/blob/master/CONTRIBUTING.md
|
data/README.md
CHANGED
|
@@ -1,29 +1,18 @@
|
|
|
1
|
-
#
|
|
1
|
+
# DNSdeploy
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Continuous Deployment for your DNS Records
|
|
4
4
|
|
|
5
|
-
##
|
|
6
|
-
|
|
7
|
-
Add this line to your application's Gemfile:
|
|
8
|
-
|
|
9
|
-
gem 'dnsdeploy'
|
|
10
|
-
|
|
11
|
-
And then execute:
|
|
12
|
-
|
|
13
|
-
$ bundle
|
|
14
|
-
|
|
15
|
-
Or install it yourself as:
|
|
5
|
+
## Usage
|
|
16
6
|
|
|
17
|
-
|
|
7
|
+
We wrote a [blog post][blogpost] on how to use dns-deploy with DNSimple.
|
|
18
8
|
|
|
19
|
-
|
|
9
|
+
[Example repository][repository]
|
|
20
10
|
|
|
21
|
-
|
|
11
|
+
[blogpost]: http://blog.codeship.io/2014/09/09/continuous-deployment-of-dns-records-with-dnsimple.html
|
|
12
|
+
[repository]: https://github.com/codeship/dns-example
|
|
22
13
|
|
|
23
14
|
## Contributing
|
|
24
15
|
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
4. Push to the branch (`git push origin my-new-feature`)
|
|
29
|
-
5. Create a new Pull Request
|
|
16
|
+
see [CONTRIBUTING.md][contributing]
|
|
17
|
+
|
|
18
|
+
[contributing]: https://github.com/beanieboi/ffprober/blob/master/CONTRIBUTING.md
|
data/lib/dnsdeploy/base.rb
CHANGED
data/lib/dnsdeploy/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dnsdeploy
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- beanieboi
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-
|
|
11
|
+
date: 2014-11-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: dnsimple-ruby
|
|
@@ -90,6 +90,7 @@ extra_rdoc_files: []
|
|
|
90
90
|
files:
|
|
91
91
|
- ".gitignore"
|
|
92
92
|
- ".rspec"
|
|
93
|
+
- CONTRIBUTING.md
|
|
93
94
|
- Gemfile
|
|
94
95
|
- History.md
|
|
95
96
|
- LICENSE.txt
|