porkbun 0.5.0 → 0.5.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +76 -0
- data/lib/porkbun/version.rb +1 -1
- data/lib/porkbun.rb +0 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3cf1f7fe28b5a9b974cf289160cd9f7c8b12bd4547e2814ba6d50e99a6d1feb3
|
4
|
+
data.tar.gz: 5e3514fa7eecd74e9572d34c123af1953d6daaba34359184c2934adc62e20f22
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a11ad716a955f544a22c59f3c2bcad9bdb44bd310aee0d7c53427457c051ee5fb48ae6867e41db2e82c85abe2ee16e1a8a7f8659d23fa541db8a0ca920b024e7
|
7
|
+
data.tar.gz: 802ccbc80c9082e90f357e83cd54da76e90aac3cffb28eb09857875c2bad71081f9b43d0815a547b003abec470c30fd43c476841c685f2c611bd543f68e57c76
|
data/Gemfile.lock
ADDED
@@ -0,0 +1,76 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
porkbun (0.4.0)
|
5
|
+
http (~> 5.1.1)
|
6
|
+
thor (~> 1.2)
|
7
|
+
|
8
|
+
GEM
|
9
|
+
remote: https://rubygems.org/
|
10
|
+
specs:
|
11
|
+
addressable (2.8.5)
|
12
|
+
public_suffix (>= 2.0.2, < 6.0)
|
13
|
+
coderay (1.1.3)
|
14
|
+
crack (0.4.5)
|
15
|
+
rexml
|
16
|
+
diff-lcs (1.5.0)
|
17
|
+
domain_name (0.5.20190701)
|
18
|
+
unf (>= 0.0.5, < 1.0.0)
|
19
|
+
ffi (1.15.5)
|
20
|
+
ffi-compiler (1.0.1)
|
21
|
+
ffi (>= 1.0.0)
|
22
|
+
rake
|
23
|
+
hashdiff (1.0.1)
|
24
|
+
http (5.1.1)
|
25
|
+
addressable (~> 2.8)
|
26
|
+
http-cookie (~> 1.0)
|
27
|
+
http-form_data (~> 2.2)
|
28
|
+
llhttp-ffi (~> 0.4.0)
|
29
|
+
http-cookie (1.0.5)
|
30
|
+
domain_name (~> 0.5)
|
31
|
+
http-form_data (2.3.0)
|
32
|
+
llhttp-ffi (0.4.0)
|
33
|
+
ffi-compiler (~> 1.0)
|
34
|
+
rake (~> 13.0)
|
35
|
+
method_source (1.0.0)
|
36
|
+
pry (0.14.2)
|
37
|
+
coderay (~> 1.1)
|
38
|
+
method_source (~> 1.0)
|
39
|
+
public_suffix (5.0.3)
|
40
|
+
rake (13.0.6)
|
41
|
+
rexml (3.2.6)
|
42
|
+
rspec (3.12.0)
|
43
|
+
rspec-core (~> 3.12.0)
|
44
|
+
rspec-expectations (~> 3.12.0)
|
45
|
+
rspec-mocks (~> 3.12.0)
|
46
|
+
rspec-core (3.12.2)
|
47
|
+
rspec-support (~> 3.12.0)
|
48
|
+
rspec-expectations (3.12.3)
|
49
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
50
|
+
rspec-support (~> 3.12.0)
|
51
|
+
rspec-mocks (3.12.6)
|
52
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
53
|
+
rspec-support (~> 3.12.0)
|
54
|
+
rspec-support (3.12.1)
|
55
|
+
thor (1.2.2)
|
56
|
+
unf (0.1.4)
|
57
|
+
unf_ext
|
58
|
+
unf_ext (0.0.8.2)
|
59
|
+
webmock (3.19.1)
|
60
|
+
addressable (>= 2.8.0)
|
61
|
+
crack (>= 0.3.2)
|
62
|
+
hashdiff (>= 0.4.0, < 2.0.0)
|
63
|
+
|
64
|
+
PLATFORMS
|
65
|
+
arm64-darwin-22
|
66
|
+
arm64-darwin-23
|
67
|
+
|
68
|
+
DEPENDENCIES
|
69
|
+
porkbun!
|
70
|
+
pry (~> 0.14.2)
|
71
|
+
rspec (~> 3.12)
|
72
|
+
thor (~> 1.2)
|
73
|
+
webmock (~> 3.19)
|
74
|
+
|
75
|
+
BUNDLED WITH
|
76
|
+
2.4.12
|
data/lib/porkbun/version.rb
CHANGED
data/lib/porkbun.rb
CHANGED
@@ -7,7 +7,6 @@ module Porkbun
|
|
7
7
|
class Error < StandardError; end
|
8
8
|
|
9
9
|
def self.porkbun(path, options = {})
|
10
|
-
pp options
|
11
10
|
if ENV.fetch('PORKBUN_API_KEY', nil).nil? || ENV.fetch('PORKBUN_SECRET_API_KEY', nil).nil?
|
12
11
|
abort 'PORKBUN_API_KEY and PORKBUN_SECRET_API_KEY must be set'
|
13
12
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: porkbun
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Daniel Bretoi
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-07-
|
11
|
+
date: 2024-07-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: http
|
@@ -48,6 +48,7 @@ extra_rdoc_files: []
|
|
48
48
|
files:
|
49
49
|
- ".rspec"
|
50
50
|
- Gemfile
|
51
|
+
- Gemfile.lock
|
51
52
|
- README.md
|
52
53
|
- Rakefile
|
53
54
|
- bin/porkbun
|