dnsmadeeasy-api 0.9.5 → 0.9.6

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,19 @@
1
+ = Changelog
2
+
3
+ == Release 0.9.6 - Jul 08, 2011
4
+
5
+ * NEW: Added CHANGELOG
6
+
7
+ == Release 0.9.5 - Jul 08, 2011
8
+
9
+ * NEW: Added delete_records! api method.
10
+ * NEW: Added requests_remaining api method.
11
+ * NEW: Handle api limit exceeded errors.
12
+ * CHANGE: delete_domains!, delete_domain!, delete_record! return the objects deleted instead of true.
13
+ * CHANGE: Reduced the number of exceptions thrown. Removed UnknownDomainError, UnknownRecordError, DuplicateDomainNameError and grouped them as BadRequestError.
14
+ * CHANGE: When using the --json output format in the dme command line utility, a successful response is now always wrapped in a "data" key.
15
+ * CHANGE: Improved documentation of api methods
16
+
17
+ == Release 0.9.0 - Jul 07, 2011
18
+
19
+ * Initial Release.
data/Manifest CHANGED
@@ -1,3 +1,4 @@
1
+ CHANGELOG.rdoc
1
2
  Manifest
2
3
  README.rdoc
3
4
  Rakefile
@@ -1,4 +1,3 @@
1
- =begin rdoc
2
1
  = DnsMadeEasy/API
3
2
 
4
3
  Ruby client for DNSMadeEasy API.
@@ -38,6 +37,4 @@ The command line tool requires that your api credentials be stored in /etc/dnsma
38
37
 
39
38
  The command line tool also allows the running of queries in the sandbox mode. To do so, create
40
39
  /etc/dnsmadeeasy/api_sandbox.keys with your sandbox api key and secret key and use the --sandbox option
41
- with every command.
42
-
43
- =end
40
+ with every command.
data/Rakefile CHANGED
@@ -2,7 +2,7 @@ require "rubygems"
2
2
  require "rake"
3
3
  require "echoe"
4
4
 
5
- Echoe.new("dnsmadeeasy-api", "0.9.5") do |p|
5
+ Echoe.new("dnsmadeeasy-api", "0.9.6") do |p|
6
6
  p.description = "Ruby client for DNSMadeEasy API."
7
7
  p.summary = "Ruby client for DNSMadeEasy API."
8
8
  p.url = "http://rubygems.org/gems/dnsmadeeasy-api"
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{dnsmadeeasy-api}
5
- s.version = "0.9.5"
5
+ s.version = "0.9.6"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = [%q{Nitesh Goel}]
@@ -10,8 +10,8 @@ Gem::Specification.new do |s|
10
10
  s.description = %q{Ruby client for DNSMadeEasy API.}
11
11
  s.email = %q{nitesh@sigfig.com}
12
12
  s.executables = [%q{dme}]
13
- s.extra_rdoc_files = [%q{README.rdoc}, %q{bin/dme}, %q{lib/dnsmadeeasy/api.rb}, %q{lib/dnsmadeeasy/exceptions.rb}]
14
- s.files = [%q{Manifest}, %q{README.rdoc}, %q{Rakefile}, %q{bin/dme}, %q{lib/dnsmadeeasy/api.rb}, %q{lib/dnsmadeeasy/exceptions.rb}, %q{dnsmadeeasy-api.gemspec}]
13
+ s.extra_rdoc_files = [%q{CHANGELOG.rdoc}, %q{README.rdoc}, %q{bin/dme}, %q{lib/dnsmadeeasy/api.rb}, %q{lib/dnsmadeeasy/exceptions.rb}]
14
+ s.files = [%q{CHANGELOG.rdoc}, %q{Manifest}, %q{README.rdoc}, %q{Rakefile}, %q{bin/dme}, %q{lib/dnsmadeeasy/api.rb}, %q{lib/dnsmadeeasy/exceptions.rb}, %q{dnsmadeeasy-api.gemspec}]
15
15
  s.homepage = %q{http://rubygems.org/gems/dnsmadeeasy-api}
16
16
  s.post_install_message = %q{Create /etc/dnsmadeeasy/api.keys and/or /etc/dnsmadeeasy/api_sandbox.keys with the following information
17
17
  api_key=<your api key>
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dnsmadeeasy-api
3
3
  version: !ruby/object:Gem::Version
4
- hash: 49
4
+ hash: 55
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 9
9
- - 5
10
- version: 0.9.5
9
+ - 6
10
+ version: 0.9.6
11
11
  platform: ruby
12
12
  authors:
13
13
  - Nitesh Goel
@@ -80,11 +80,13 @@ executables:
80
80
  extensions: []
81
81
 
82
82
  extra_rdoc_files:
83
+ - CHANGELOG.rdoc
83
84
  - README.rdoc
84
85
  - bin/dme
85
86
  - lib/dnsmadeeasy/api.rb
86
87
  - lib/dnsmadeeasy/exceptions.rb
87
88
  files:
89
+ - CHANGELOG.rdoc
88
90
  - Manifest
89
91
  - README.rdoc
90
92
  - Rakefile