dnsimpler 0.0.1 → 0.0.2
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 +13 -5
- data/.gitignore +1 -0
- data/.travis.yml +4 -4
- data/README.md +1 -1
- data/lib/dnsimpler/try.rb +17 -0
- data/lib/dnsimpler/version.rb +1 -1
- data/lib/dnsimpler.rb +1 -0
- data/test/dnsimpler/try_test.rb +13 -0
- metadata +17 -14
checksums.yaml
CHANGED
@@ -1,7 +1,15 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
|
2
|
+
!binary "U0hBMQ==":
|
3
|
+
metadata.gz: !binary |-
|
4
|
+
YWJkZDc5MTk3NDc5ZTg5MjZiYmYzZjNjZmJkOWRiOGJjNDMzMzE0Ng==
|
5
|
+
data.tar.gz: !binary |-
|
6
|
+
Y2FmNmIxMTEzYTc1NjY4ZmExM2EyMjc2ZTQ2ODJlMjI1ZDU5YTNhMQ==
|
5
7
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
|
8
|
+
metadata.gz: !binary |-
|
9
|
+
YmY5YzExMDQyZmI5NDZkN2U2NDU1ODBkYjFiNTMyMzc3NzFlNDFlNzZlYjM1
|
10
|
+
NmE4MDBlMmJjYzQyNmExYTNhOGRkYzkzZWY1YzlkNjhhZTI3YjZmMWJmZWQ2
|
11
|
+
ODVjODUzZjlmNDM5YWYzOTZjMTU5Nzk0NmRjNGEzZWRmZjBiNjQ=
|
12
|
+
data.tar.gz: !binary |-
|
13
|
+
NDVhOWVjMjk3OGQ1ZWY3NDdmM2NjZTBkZGRkZmYxZTJjMjllNzM1YjQyOTBl
|
14
|
+
YzBlOGI0MGJjOGY2N2ZmOTVlZDVkZWEyYmQ2NjFhNTI1MGNlZTVmM2IzNGVj
|
15
|
+
OTNhM2ZiMjNhYTE2MmE1YWMyNDU1ZmY0NDY5ZWEyYTE2YzE1ZmU=
|
data/.gitignore
CHANGED
data/.travis.yml
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
language: ruby
|
2
2
|
rvm:
|
3
|
-
|
3
|
+
- 2.2.0
|
4
4
|
script:
|
5
|
-
|
5
|
+
- bundle exec rake test
|
6
6
|
deploy:
|
7
7
|
provider: rubygems
|
8
8
|
api_key:
|
9
|
-
secure:
|
9
|
+
secure: tMNAGuZR+hxrHNxnoj6LJtnaXRO8hbW0AGt855Cy5bhY0/k7wYZNC69fVkOrCNu7DBq+QKwnmyyOIgf9vn5N+4EOMtKVrrtNxl1aPqD/c6izodjRjoEbJi6xFCsSdpp6strKFYDf9itQr2RPWV2D9pNyI5y5I9JaGVtGtMspgRQ=
|
10
10
|
addons:
|
11
11
|
code_climate:
|
12
|
-
repo_token: 4ee7d32ad4a19408aa4c0d5846e6451a05635e4c1a31109cb0eac9d3a2efa265
|
12
|
+
repo_token: 4ee7d32ad4a19408aa4c0d5846e6451a05635e4c1a31109cb0eac9d3a2efa265
|
data/README.md
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
# Dnsimpler
|
2
|
-
[](https://travis-ci.org/danielwestendorf/dnsimpler)[](https://codeclimate.com/github/danielwestendorf/dnsimpler)[](https://codeclimate.com/github/danielwestendorf/dnsimpler)
|
2
|
+
[](https://travis-ci.org/danielwestendorf/dnsimpler) [](https://codeclimate.com/github/danielwestendorf/dnsimpler) [](https://codeclimate.com/github/danielwestendorf/dnsimpler)
|
3
3
|
|
4
4
|
A simple API wrapper for [DNSimple](https://dnsimple.com). Always returns the full response. Requires you to use the [API documentation](https://developer.dnsimple.com).
|
5
5
|
|
data/lib/dnsimpler/version.rb
CHANGED
data/lib/dnsimpler.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dnsimpler
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Daniel Westendorf
|
@@ -14,56 +14,56 @@ dependencies:
|
|
14
14
|
name: httparty
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- -
|
17
|
+
- - ! '>='
|
18
18
|
- !ruby/object:Gem::Version
|
19
19
|
version: '0'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- -
|
24
|
+
- - ! '>='
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '0'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: bundler
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- -
|
31
|
+
- - ~>
|
32
32
|
- !ruby/object:Gem::Version
|
33
33
|
version: '1.7'
|
34
34
|
type: :development
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
|
-
- -
|
38
|
+
- - ~>
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '1.7'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: rake
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
|
-
- -
|
45
|
+
- - ~>
|
46
46
|
- !ruby/object:Gem::Version
|
47
47
|
version: '10.0'
|
48
48
|
type: :development
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
|
-
- -
|
52
|
+
- - ~>
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '10.0'
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: webmock
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
58
58
|
requirements:
|
59
|
-
- -
|
59
|
+
- - ! '>='
|
60
60
|
- !ruby/object:Gem::Version
|
61
61
|
version: '0'
|
62
62
|
type: :development
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
|
-
- -
|
66
|
+
- - ! '>='
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '0'
|
69
69
|
description: dnsimple-ruby is too opinionated on how to use its method calls. We're
|
@@ -74,8 +74,8 @@ executables: []
|
|
74
74
|
extensions: []
|
75
75
|
extra_rdoc_files: []
|
76
76
|
files:
|
77
|
-
-
|
78
|
-
-
|
77
|
+
- .gitignore
|
78
|
+
- .travis.yml
|
79
79
|
- Gemfile
|
80
80
|
- Guardfile
|
81
81
|
- LICENSE.txt
|
@@ -84,8 +84,10 @@ files:
|
|
84
84
|
- dnsimpler.gemspec
|
85
85
|
- lib/dnsimpler.rb
|
86
86
|
- lib/dnsimpler/http.rb
|
87
|
+
- lib/dnsimpler/try.rb
|
87
88
|
- lib/dnsimpler/version.rb
|
88
89
|
- test/dnsimpler/http_test.rb
|
90
|
+
- test/dnsimpler/try_test.rb
|
89
91
|
- test/dnsimpler_test.rb
|
90
92
|
- test/test_helper.rb
|
91
93
|
homepage: ''
|
@@ -98,22 +100,23 @@ require_paths:
|
|
98
100
|
- lib
|
99
101
|
required_ruby_version: !ruby/object:Gem::Requirement
|
100
102
|
requirements:
|
101
|
-
- -
|
103
|
+
- - ~>
|
102
104
|
- !ruby/object:Gem::Version
|
103
105
|
version: '2.0'
|
104
106
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
105
107
|
requirements:
|
106
|
-
- -
|
108
|
+
- - ! '>='
|
107
109
|
- !ruby/object:Gem::Version
|
108
110
|
version: '0'
|
109
111
|
requirements: []
|
110
112
|
rubyforge_project:
|
111
|
-
rubygems_version: 2.
|
113
|
+
rubygems_version: 2.4.5
|
112
114
|
signing_key:
|
113
115
|
specification_version: 4
|
114
116
|
summary: A simple DNSimple API wrapper that always provides the response you're looking
|
115
117
|
for.
|
116
118
|
test_files:
|
117
119
|
- test/dnsimpler/http_test.rb
|
120
|
+
- test/dnsimpler/try_test.rb
|
118
121
|
- test/dnsimpler_test.rb
|
119
122
|
- test/test_helper.rb
|