dnsdeploy 0.0.2 → 0.0.3

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
  SHA1:
3
- metadata.gz: 4c9d6cfa6925af281c9d41a6becc2518aa531aa0
4
- data.tar.gz: 5680902a6b4c3d9f5e16df8eec07a4fd447ca7bf
3
+ metadata.gz: 2a4ae4f829fdc82326a2e44f9b362f275be9c01c
4
+ data.tar.gz: 5c472326105c0af70106b2edfd04b64b6e8ba314
5
5
  SHA512:
6
- metadata.gz: 84462a70458d3d0a067ce5ddb984eec9cb8e6ea98f5585ce17771b2371114219bc22305d5c0724c8aba82adc74b7eeee239e68379ecc67478a886aff96061350
7
- data.tar.gz: e1852dfcd43b1587fbe75f3f7daed1f72b0fef0988ba6abaef8206b1c2893556e7b327b2339507dd84b14b11421ba50c114de972896a0501d4e442df7f8d9413
6
+ metadata.gz: 06004f94f75ec6a4771a3e541c17c38d829ae2235f7ba722659bad1cc8ec1df4379de9508be987ad2e69f800030376d6b30698d9a0abdacf658fac57cb679d41
7
+ data.tar.gz: 68130b644cf28a340c3077cd0e91ca9fe481a99c8abbc650209f7fac99330b932f2a38a429eab424b8e52db285be66fd0dec1a865dc0ffd94318fe9ce12f679d
@@ -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
- # Dnsdeploy
1
+ # DNSdeploy
2
2
 
3
- TODO: Write a gem description
3
+ Continuous Deployment for your DNS Records
4
4
 
5
- ## Installation
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
- $ gem install dnsdeploy
7
+ We wrote a [blog post][blogpost] on how to use dns-deploy with DNSimple.
18
8
 
19
- ## Usage
9
+ [Example repository][repository]
20
10
 
21
- TODO: Write usage instructions here
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
- 1. Fork it ( https://github.com/[my-github-username]/dnsdeploy/fork )
26
- 2. Create your feature branch (`git checkout -b my-new-feature`)
27
- 3. Commit your changes (`git commit -am 'Add some feature'`)
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
@@ -14,6 +14,7 @@ module Dnsdeploy
14
14
  puts "#{@records_file_path} is valid json".green
15
15
  rescue => e
16
16
  puts "unable to parse #{@records_file_path}".red
17
+ exit(1)
17
18
  end
18
19
 
19
20
  def update_records
@@ -1,3 +1,3 @@
1
1
  module Dnsdeploy
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
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.2
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-09-07 00:00:00.000000000 Z
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