record_store 5.0.1 → 5.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/README.md +1 -1
- data/circle.yml +1 -1
- data/lib/record_store/version.rb +1 -1
- data/record_store.gemspec +2 -2
- data/template/secrets.json +1 -1
- metadata +6 -7
- data/Gemfile.lock +0 -235
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4233c0b5b021897c3099a6de3098150f87f6a04c
|
4
|
+
data.tar.gz: '08c0b76a01f425ff140884fe8bdcd497e88a1e20'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 42f1be5f7e96763028f94b1863842fe0aa8c37b65d58238f3db0aee4fd3b3fcec7f3a62244bcc205f94fde7d5a89b0c7cf140705a967b44fccaf24259e9548b6
|
7
|
+
data.tar.gz: a032ecf48371a93baf4b2f012d0b01b2cb5265925ca350a68ebe0af4490821a58a5cc3006567f49f6fa7535a4fa7ed09cc834cf97c88972576ba32f80549aec6
|
data/.gitignore
CHANGED
data/README.md
CHANGED
@@ -26,7 +26,7 @@ Below is the list of DNS providers supported by Record Store. PRs [adding more](
|
|
26
26
|
|
27
27
|
### DNSimple
|
28
28
|
|
29
|
-
Record Store uses DNSimple's [
|
29
|
+
Record Store uses DNSimple's [v2 API](https://developer.dnsimple.com/v2/). To use DNSimple, you'll need to add the primary user's `account_id` and `api_token` to `secrets.json`.
|
30
30
|
|
31
31
|
### DynECT
|
32
32
|
|
data/circle.yml
CHANGED
data/lib/record_store/version.rb
CHANGED
data/record_store.gemspec
CHANGED
@@ -20,8 +20,8 @@ Gem::Specification.new do |spec|
|
|
20
20
|
spec.required_ruby_version = '>= 2.0'
|
21
21
|
|
22
22
|
spec.add_runtime_dependency 'thor'
|
23
|
-
spec.add_runtime_dependency 'activesupport', '
|
24
|
-
spec.add_runtime_dependency 'activemodel', '
|
23
|
+
spec.add_runtime_dependency 'activesupport', '>= 4.2'
|
24
|
+
spec.add_runtime_dependency 'activemodel', '>= 4.2'
|
25
25
|
spec.add_runtime_dependency 'ejson'
|
26
26
|
|
27
27
|
spec.add_runtime_dependency 'fog', '>= 1.33.0'
|
data/template/secrets.json
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: record_store
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.0.
|
4
|
+
version: 5.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Willem van Bergen
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2018-
|
12
|
+
date: 2018-02-13 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: thor
|
@@ -29,28 +29,28 @@ dependencies:
|
|
29
29
|
name: activesupport
|
30
30
|
requirement: !ruby/object:Gem::Requirement
|
31
31
|
requirements:
|
32
|
-
- - "
|
32
|
+
- - ">="
|
33
33
|
- !ruby/object:Gem::Version
|
34
34
|
version: '4.2'
|
35
35
|
type: :runtime
|
36
36
|
prerelease: false
|
37
37
|
version_requirements: !ruby/object:Gem::Requirement
|
38
38
|
requirements:
|
39
|
-
- - "
|
39
|
+
- - ">="
|
40
40
|
- !ruby/object:Gem::Version
|
41
41
|
version: '4.2'
|
42
42
|
- !ruby/object:Gem::Dependency
|
43
43
|
name: activemodel
|
44
44
|
requirement: !ruby/object:Gem::Requirement
|
45
45
|
requirements:
|
46
|
-
- - "
|
46
|
+
- - ">="
|
47
47
|
- !ruby/object:Gem::Version
|
48
48
|
version: '4.2'
|
49
49
|
type: :runtime
|
50
50
|
prerelease: false
|
51
51
|
version_requirements: !ruby/object:Gem::Requirement
|
52
52
|
requirements:
|
53
|
-
- - "
|
53
|
+
- - ">="
|
54
54
|
- !ruby/object:Gem::Version
|
55
55
|
version: '4.2'
|
56
56
|
- !ruby/object:Gem::Dependency
|
@@ -247,7 +247,6 @@ extra_rdoc_files: []
|
|
247
247
|
files:
|
248
248
|
- ".gitignore"
|
249
249
|
- Gemfile
|
250
|
-
- Gemfile.lock
|
251
250
|
- LICENSE
|
252
251
|
- README.md
|
253
252
|
- Rakefile
|
data/Gemfile.lock
DELETED
@@ -1,235 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: .
|
3
|
-
specs:
|
4
|
-
record_store (5.0.1)
|
5
|
-
activemodel (~> 4.2)
|
6
|
-
activesupport (~> 4.2)
|
7
|
-
ejson
|
8
|
-
fog (>= 1.33.0)
|
9
|
-
fog-dnsimple (~> 2.0.0)
|
10
|
-
fog-dynect (~> 0.2.0)
|
11
|
-
fog-json
|
12
|
-
fog-xml
|
13
|
-
google-cloud-dns
|
14
|
-
thor
|
15
|
-
|
16
|
-
GEM
|
17
|
-
remote: https://rubygems.org/
|
18
|
-
specs:
|
19
|
-
CFPropertyList (2.3.6)
|
20
|
-
activemodel (4.2.10)
|
21
|
-
activesupport (= 4.2.10)
|
22
|
-
builder (~> 3.1)
|
23
|
-
activesupport (4.2.10)
|
24
|
-
i18n (~> 0.7)
|
25
|
-
minitest (~> 5.1)
|
26
|
-
thread_safe (~> 0.3, >= 0.3.4)
|
27
|
-
tzinfo (~> 1.1)
|
28
|
-
addressable (2.5.2)
|
29
|
-
public_suffix (>= 2.0.2, < 4.0)
|
30
|
-
builder (3.2.3)
|
31
|
-
coderay (1.1.1)
|
32
|
-
concurrent-ruby (1.0.5)
|
33
|
-
crack (0.4.3)
|
34
|
-
safe_yaml (~> 1.0.0)
|
35
|
-
declarative (0.0.10)
|
36
|
-
declarative-option (0.1.0)
|
37
|
-
ejson (1.1.0)
|
38
|
-
excon (0.60.0)
|
39
|
-
faraday (0.14.0)
|
40
|
-
multipart-post (>= 1.2, < 3)
|
41
|
-
fission (0.5.0)
|
42
|
-
CFPropertyList (~> 2.2)
|
43
|
-
fog (1.33.0)
|
44
|
-
fog-atmos
|
45
|
-
fog-aws (>= 0.6.0)
|
46
|
-
fog-brightbox (~> 0.4)
|
47
|
-
fog-core (~> 1.32)
|
48
|
-
fog-dynect
|
49
|
-
fog-ecloud (= 0.1.1)
|
50
|
-
fog-google (>= 0.0.2)
|
51
|
-
fog-json
|
52
|
-
fog-local
|
53
|
-
fog-powerdns (>= 0.1.1)
|
54
|
-
fog-profitbricks
|
55
|
-
fog-radosgw (>= 0.0.2)
|
56
|
-
fog-riakcs
|
57
|
-
fog-sakuracloud (>= 0.0.4)
|
58
|
-
fog-serverlove
|
59
|
-
fog-softlayer
|
60
|
-
fog-storm_on_demand
|
61
|
-
fog-terremark
|
62
|
-
fog-vmfusion
|
63
|
-
fog-voxel
|
64
|
-
fog-xml (~> 0.1.1)
|
65
|
-
ipaddress (~> 0.5)
|
66
|
-
nokogiri (~> 1.5, >= 1.5.11)
|
67
|
-
fog-atmos (0.1.0)
|
68
|
-
fog-core
|
69
|
-
fog-xml
|
70
|
-
fog-aws (2.0.0)
|
71
|
-
fog-core (~> 1.38)
|
72
|
-
fog-json (~> 1.0)
|
73
|
-
fog-xml (~> 0.1)
|
74
|
-
ipaddress (~> 0.8)
|
75
|
-
fog-brightbox (0.14.0)
|
76
|
-
fog-core (~> 1.22)
|
77
|
-
fog-json
|
78
|
-
inflecto (~> 0.0.2)
|
79
|
-
fog-core (1.45.0)
|
80
|
-
builder
|
81
|
-
excon (~> 0.58)
|
82
|
-
formatador (~> 0.2)
|
83
|
-
fog-dnsimple (2.0.0)
|
84
|
-
fog-core (>= 1.38, < 3)
|
85
|
-
fog-json (~> 1.0)
|
86
|
-
fog-dynect (0.2.0)
|
87
|
-
fog-core
|
88
|
-
fog-json
|
89
|
-
fog-xml
|
90
|
-
fog-ecloud (0.1.1)
|
91
|
-
fog-core
|
92
|
-
fog-xml
|
93
|
-
fog-google (0.6.0)
|
94
|
-
fog-core
|
95
|
-
fog-json
|
96
|
-
fog-xml
|
97
|
-
fog-json (1.0.2)
|
98
|
-
fog-core (~> 1.0)
|
99
|
-
multi_json (~> 1.10)
|
100
|
-
fog-local (0.4.0)
|
101
|
-
fog-core (~> 1.27)
|
102
|
-
fog-powerdns (0.1.1)
|
103
|
-
fog-core (~> 1.27)
|
104
|
-
fog-json (~> 1.0)
|
105
|
-
fog-xml (~> 0.1)
|
106
|
-
fog-profitbricks (4.1.1)
|
107
|
-
fog-core (~> 1.42)
|
108
|
-
fog-json (~> 1.0)
|
109
|
-
fog-radosgw (0.0.5)
|
110
|
-
fog-core (>= 1.21.0)
|
111
|
-
fog-json
|
112
|
-
fog-xml (>= 0.0.1)
|
113
|
-
fog-riakcs (0.1.0)
|
114
|
-
fog-core
|
115
|
-
fog-json
|
116
|
-
fog-xml
|
117
|
-
fog-sakuracloud (1.7.5)
|
118
|
-
fog-core
|
119
|
-
fog-json
|
120
|
-
fog-serverlove (0.1.2)
|
121
|
-
fog-core
|
122
|
-
fog-json
|
123
|
-
fog-softlayer (1.1.4)
|
124
|
-
fog-core
|
125
|
-
fog-json
|
126
|
-
fog-storm_on_demand (0.1.1)
|
127
|
-
fog-core
|
128
|
-
fog-json
|
129
|
-
fog-terremark (0.1.0)
|
130
|
-
fog-core
|
131
|
-
fog-xml
|
132
|
-
fog-vmfusion (0.1.0)
|
133
|
-
fission
|
134
|
-
fog-core
|
135
|
-
fog-voxel (0.1.0)
|
136
|
-
fog-core
|
137
|
-
fog-xml
|
138
|
-
fog-xml (0.1.3)
|
139
|
-
fog-core
|
140
|
-
nokogiri (>= 1.5.11, < 2.0.0)
|
141
|
-
formatador (0.2.5)
|
142
|
-
google-api-client (0.17.4)
|
143
|
-
addressable (~> 2.5, >= 2.5.1)
|
144
|
-
googleauth (>= 0.5, < 0.7.0)
|
145
|
-
httpclient (>= 2.8.1, < 3.0)
|
146
|
-
mime-types (~> 3.0)
|
147
|
-
representable (~> 3.0)
|
148
|
-
retriable (>= 2.0, < 4.0)
|
149
|
-
google-cloud-core (1.1.0)
|
150
|
-
google-cloud-env (~> 1.0)
|
151
|
-
google-cloud-dns (0.27.0)
|
152
|
-
google-api-client (~> 0.17.0)
|
153
|
-
google-cloud-core (~> 1.1)
|
154
|
-
googleauth (~> 0.6.2)
|
155
|
-
zonefile (~> 1.04)
|
156
|
-
google-cloud-env (1.0.1)
|
157
|
-
faraday (~> 0.11)
|
158
|
-
googleauth (0.6.2)
|
159
|
-
faraday (~> 0.12)
|
160
|
-
jwt (>= 1.4, < 3.0)
|
161
|
-
logging (~> 2.0)
|
162
|
-
memoist (~> 0.12)
|
163
|
-
multi_json (~> 1.11)
|
164
|
-
os (~> 0.9)
|
165
|
-
signet (~> 0.7)
|
166
|
-
hashdiff (0.3.7)
|
167
|
-
httpclient (2.8.3)
|
168
|
-
i18n (0.9.3)
|
169
|
-
concurrent-ruby (~> 1.0)
|
170
|
-
inflecto (0.0.2)
|
171
|
-
ipaddress (0.8.3)
|
172
|
-
jwt (2.1.0)
|
173
|
-
little-plugger (1.1.4)
|
174
|
-
logging (2.2.2)
|
175
|
-
little-plugger (~> 1.1)
|
176
|
-
multi_json (~> 1.10)
|
177
|
-
memoist (0.16.0)
|
178
|
-
metaclass (0.0.4)
|
179
|
-
method_source (0.8.2)
|
180
|
-
mime-types (3.1)
|
181
|
-
mime-types-data (~> 3.2015)
|
182
|
-
mime-types-data (3.2016.0521)
|
183
|
-
mini_portile2 (2.3.0)
|
184
|
-
minitest (5.11.2)
|
185
|
-
mocha (1.2.1)
|
186
|
-
metaclass (~> 0.0.1)
|
187
|
-
multi_json (1.13.1)
|
188
|
-
multipart-post (2.0.0)
|
189
|
-
nokogiri (1.8.1)
|
190
|
-
mini_portile2 (~> 2.3.0)
|
191
|
-
os (0.9.6)
|
192
|
-
pry (0.10.4)
|
193
|
-
coderay (~> 1.1.0)
|
194
|
-
method_source (~> 0.8.1)
|
195
|
-
slop (~> 3.4)
|
196
|
-
public_suffix (3.0.1)
|
197
|
-
rake (12.0.0)
|
198
|
-
representable (3.0.4)
|
199
|
-
declarative (< 0.1.0)
|
200
|
-
declarative-option (< 0.2.0)
|
201
|
-
uber (< 0.2.0)
|
202
|
-
retriable (3.1.1)
|
203
|
-
safe_yaml (1.0.4)
|
204
|
-
signet (0.8.1)
|
205
|
-
addressable (~> 2.3)
|
206
|
-
faraday (~> 0.9)
|
207
|
-
jwt (>= 1.5, < 3.0)
|
208
|
-
multi_json (~> 1.10)
|
209
|
-
slop (3.6.0)
|
210
|
-
thor (0.20.0)
|
211
|
-
thread_safe (0.3.6)
|
212
|
-
tzinfo (1.2.4)
|
213
|
-
thread_safe (~> 0.1)
|
214
|
-
uber (0.1.0)
|
215
|
-
vcr (4.0.0)
|
216
|
-
webmock (3.3.0)
|
217
|
-
addressable (>= 2.3.6)
|
218
|
-
crack (>= 0.3.2)
|
219
|
-
hashdiff
|
220
|
-
zonefile (1.06)
|
221
|
-
|
222
|
-
PLATFORMS
|
223
|
-
ruby
|
224
|
-
|
225
|
-
DEPENDENCIES
|
226
|
-
bundler
|
227
|
-
mocha
|
228
|
-
pry
|
229
|
-
rake
|
230
|
-
record_store!
|
231
|
-
vcr
|
232
|
-
webmock
|
233
|
-
|
234
|
-
BUNDLED WITH
|
235
|
-
1.16.0
|