porkbun 0.5.0 → 0.5.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 55966f08e27676143e86c9a7e8d20e93ab18f18072484a9212d4102706532d93
4
- data.tar.gz: c75016c446c7e25d57be8c0faaf996df401494df87ac66b614a067e202a14fb8
3
+ metadata.gz: 3cf1f7fe28b5a9b974cf289160cd9f7c8b12bd4547e2814ba6d50e99a6d1feb3
4
+ data.tar.gz: 5e3514fa7eecd74e9572d34c123af1953d6daaba34359184c2934adc62e20f22
5
5
  SHA512:
6
- metadata.gz: 0a600d3705630e2062507e211dd6c3f000994463e60bdab46592aa6761d74d9704b1b3ca188fa5a76150948b36016442c3dda17189f9d2eb76781ca7b4b80556
7
- data.tar.gz: f299259861ccb74e64f1d05d0eb8eecc9c22e9918ca7b243560604663e55ff06986cea57afc34d78530361b6cb73eabe3fac6e483e78b483db751b184a2a9d7a
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Porkbun
4
- VERSION = "0.5.0"
4
+ VERSION = "0.5.1"
5
5
  end
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.0
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-04 00:00:00.000000000 Z
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