dns_mock 1.4.2 → 1.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: 897efc00bc504413b9241457c05b0a0936a37f6b7d787442ea900ebd1f4c9666
4
- data.tar.gz: afa0eaf67758320d173f5064932fe647931d5d9535cc2a2d60d283400ee32df0
3
+ metadata.gz: 9069a9d61624fa9e49041b67253d88d812933450d86e7f557266ec2914c1ffe1
4
+ data.tar.gz: 60d488d520030288cca869e464e710bb2606dc4b9e76dd38af355c8b5856fac0
5
5
  SHA512:
6
- metadata.gz: b62d6ddec01b675caa95ac157c005efc7fa5e794c4c98fd4b4a35f45586b0ee03f76a7398396bad6e7269475ae7710e7ccbf9c64adff430fa99440bc4fbe16c7
7
- data.tar.gz: d3a57d14f992448037f76045d6083e36f523565d460ba5826f3f952779e0d49c4d36a9108b7a3a473a275dd7274f5c8e7fe58c4513036863d88beac8ed7f999d
6
+ metadata.gz: 5e6c1ec6ad0d6f1e5b0688593b6d40c8b4df3fdefbc292652a33c7641fa4aaa4c382c8dda235f9a303b12e4da3050e45ebba5f85ab565ce454c1bc8a57d2ed62
7
+ data.tar.gz: c195a82ee5a5f88ca8d0c73cc5bee45eaf6120e408dc80553bd687961f62dfc39b7c8e757723183e9590e0a8fca3dbabab5a932487c5f8ff87e5db976cbc8e30
data/.circleci/config.yml CHANGED
@@ -4,18 +4,11 @@ defaults: &defaults
4
4
  working_directory: ~/ruby-dns-mock
5
5
  docker:
6
6
  - image: cimg/ruby:<< parameters.ruby-version >>
7
- environment:
8
- CC_TEST_REPORTER_ID: 18fba9e7d6885c48453a80a0f019a60d9ffa3fd80467652a6b3c95fef5ea9a50
9
7
 
10
8
  orbs:
11
- ruby: circleci/ruby@1.1.3
9
+ ruby: circleci/ruby@1.4.0
12
10
 
13
11
  references:
14
- install_bundler: &install_bundler
15
- run:
16
- name: Installing Bundler
17
- command: gem i bundler -v $(tail -1 Gemfile.lock | tr -d ' ')
18
-
19
12
  restore_bundle_cache: &restore_bundle_cache
20
13
  restore_cache:
21
14
  keys:
@@ -24,7 +17,9 @@ references:
24
17
  bundle_install: &bundle_install
25
18
  run:
26
19
  name: Installing gems
27
- command: bundle install --path vendor/bundle
20
+ command: |
21
+ bundle config set --local path 'vendor/bundle'
22
+ bundle install
28
23
 
29
24
  save_bundle_cache: &save_bundle_cache
30
25
  save_cache:
@@ -39,6 +34,12 @@ references:
39
34
  curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
40
35
  chmod +x ./cc-test-reporter
41
36
 
37
+ use_compatible_gemspec: &use_compatible_gemspec
38
+ run:
39
+ name: Use compatible gemspec
40
+ command: |
41
+ cp dns_mock.gemspec_compatible dns_mock.gemspec
42
+
42
43
  jobs:
43
44
  linters-ruby:
44
45
  parameters:
@@ -50,7 +51,6 @@ jobs:
50
51
  steps:
51
52
  - checkout
52
53
 
53
- - <<: *install_bundler
54
54
  - <<: *restore_bundle_cache
55
55
  - <<: *bundle_install
56
56
  - <<: *save_bundle_cache
@@ -71,7 +71,6 @@ jobs:
71
71
  steps:
72
72
  - checkout
73
73
 
74
- - <<: *install_bundler
75
74
  - <<: *restore_bundle_cache
76
75
  - <<: *bundle_install
77
76
  - <<: *save_bundle_cache
@@ -106,7 +105,9 @@ jobs:
106
105
  - image: cimg/ruby:<< parameters.ruby-version >>
107
106
  steps:
108
107
  - checkout
108
+ - <<: *use_compatible_gemspec
109
109
  - ruby/install-deps:
110
+ bundler-version: "2.3.5"
110
111
  with-cache: false
111
112
  path: './vendor/custom_bundle'
112
113
  - run:
@@ -119,12 +120,12 @@ workflows:
119
120
  - linters-ruby:
120
121
  matrix:
121
122
  parameters:
122
- ruby-version: ["2.5"]
123
+ ruby-version: ["3.1"]
123
124
  - tests-ruby:
124
125
  matrix:
125
126
  parameters:
126
- ruby-version: ["2.5"]
127
+ ruby-version: ["3.1"]
127
128
  - compatibility-ruby:
128
129
  matrix:
129
130
  parameters:
130
- ruby-version: ["2.6", "2.7", "3.0"]
131
+ ruby-version: ["2.5", "2.6", "2.7", "3.0"]
data/.codeclimate.yml CHANGED
@@ -7,7 +7,7 @@ checks:
7
7
  plugins:
8
8
  rubocop:
9
9
  enabled: true
10
- channel: rubocop-1-20
10
+ channel: rubocop-1-25
11
11
 
12
12
  reek:
13
13
  enabled: true
data/.gitignore CHANGED
@@ -8,3 +8,4 @@
8
8
  /tmp/
9
9
  .rspec_status
10
10
  .DS_Store
11
+ Gemfile.lock
data/.rubocop.yml CHANGED
@@ -31,6 +31,9 @@ Naming/RescuedExceptionsVariableName:
31
31
  Naming/InclusiveLanguage:
32
32
  Enabled: false
33
33
 
34
+ Naming/BlockForwarding:
35
+ Enabled: true
36
+
34
37
  Style/Documentation:
35
38
  Enabled: false
36
39
 
@@ -142,6 +145,27 @@ Style/QuotedSymbols:
142
145
  Style/RedundantSelfAssignmentBranch:
143
146
  Enabled: true
144
147
 
148
+ Style/NumberedParameters:
149
+ Enabled: true
150
+
151
+ Style/NumberedParametersLimit:
152
+ Enabled: true
153
+
154
+ Style/SelectByRegexp:
155
+ Enabled: true
156
+
157
+ Style/FileRead:
158
+ Enabled: true
159
+
160
+ Style/FileWrite:
161
+ Enabled: true
162
+
163
+ Style/MapToHash:
164
+ Enabled: true
165
+
166
+ Style/OpenStructUse:
167
+ Enabled: true
168
+
145
169
  Layout/LineLength:
146
170
  Max: 150
147
171
 
@@ -248,9 +272,27 @@ Lint/EmptyInPattern:
248
272
  Lint/AmbiguousRange:
249
273
  Enabled: true
250
274
 
275
+ Lint/AmbiguousOperatorPrecedence:
276
+ Enabled: true
277
+
278
+ Lint/IncompatibleIoSelectWithFiberScheduler:
279
+ Enabled: true
280
+
281
+ Lint/RequireRelativeSelfPath:
282
+ Enabled: true
283
+
284
+ Lint/UselessRuby2Keywords:
285
+ Enabled: true
286
+
251
287
  Gemspec/DateAssignment:
252
288
  Enabled: true
253
289
 
290
+ Gemspec/RequireMFA:
291
+ Enabled: false
292
+
293
+ Security/IoMethods:
294
+ Enabled: true
295
+
254
296
  Performance/AncestorsInclude:
255
297
  Enabled: true
256
298
 
@@ -299,6 +341,12 @@ Performance/RedundantSplitRegexpArgument:
299
341
  Performance/MapCompact:
300
342
  Enabled: true
301
343
 
344
+ Performance/ConcurrentMonotonicTime:
345
+ Enabled: true
346
+
347
+ Performance/StringIdentifierArgument:
348
+ Enabled: true
349
+
302
350
  RSpec/ExampleLength:
303
351
  Enabled: false
304
352
 
@@ -334,3 +382,12 @@ RSpec/IdenticalEqualityAssertion:
334
382
 
335
383
  RSpec/Rails/AvoidSetupHook:
336
384
  Enabled: true
385
+
386
+ RSpec/ExcessiveDocstringSpacing:
387
+ Enabled: true
388
+
389
+ RSpec/SubjectDeclaration:
390
+ Enabled: true
391
+
392
+ RSpec/FactoryBot/SyntaxMethods:
393
+ Enabled: true
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- ruby-2.5.0
1
+ ruby-3.1.0
data/CHANGELOG.md CHANGED
@@ -2,6 +2,41 @@
2
2
 
3
3
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
4
4
 
5
+ ## [1.5.1] - 2022-01-23
6
+
7
+ ### Updated
8
+
9
+ - Updated native Ruby test environment from 2.5 to 3.1
10
+ - Updated codeclimate/circleci configs
11
+ - Updated gem development dependencies
12
+ - Updated gem docs, version
13
+
14
+ ## [1.5.0] - 2021-12-29
15
+
16
+ ### Added
17
+
18
+ - Added Ruby 3.1.x compatibility
19
+
20
+ ### Updated
21
+
22
+ - Updated rubocop/codeclimate/circleci configs
23
+ - Updated gem development dependencies
24
+ - Updated gem docs, version
25
+
26
+ ## [1.4.4] - 2021-11-11
27
+
28
+ ### Updated
29
+
30
+ - Updated gem development dependencies
31
+ - Updated gem version
32
+
33
+ ## [1.4.3] - 2021-10-07
34
+
35
+ ### Updated
36
+
37
+ - Updated gem development dependencies
38
+ - Updated gem version
39
+
5
40
  ## [1.4.2] - 2021-09-04
6
41
 
7
42
  ### Updated
data/LICENSE.txt CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2020-2021 Vladislav Trotsenko
3
+ Copyright (c) 2020-2022 Vladislav Trotsenko
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
data/README.md CHANGED
@@ -5,6 +5,7 @@
5
5
  [![CircleCI](https://circleci.com/gh/mocktools/ruby-dns-mock/tree/master.svg?style=svg)](https://circleci.com/gh/mocktools/ruby-dns-mock/tree/master)
6
6
  [![Gem Version](https://badge.fury.io/rb/dns_mock.svg)](https://badge.fury.io/rb/dns_mock)
7
7
  [![Downloads](https://img.shields.io/gem/dt/dns_mock.svg?colorA=004d99&colorB=0073e6)](https://rubygems.org/gems/dns_mock)
8
+ [![In Awesome Ruby](https://raw.githubusercontent.com/sindresorhus/awesome/main/media/mentioned-badge.svg)](https://github.com/markets/awesome-ruby)
8
9
  [![GitHub](https://img.shields.io/github/license/mocktools/ruby-dns-mock)](LICENSE.txt)
9
10
  [![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-v1.4%20adopted-ff69b4.svg)](CODE_OF_CONDUCT.md)
10
11
 
@@ -180,7 +181,7 @@ DnsMock::TestFramework::RSpec::Interface.clear_server! # stops and clears curren
180
181
 
181
182
  ## Contributing
182
183
 
183
- Bug reports and pull requests are welcome on GitHub at https://github.com/mocktools/ruby-dns-mock. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct. Please check the [open tikets](https://github.com/mocktools/ruby-dns-mock/issues). Be shure to follow Contributor Code of Conduct below and our [Contributing Guidelines](CONTRIBUTING.md).
184
+ Bug reports and pull requests are welcome on GitHub at https://github.com/mocktools/ruby-dns-mock. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct. Please check the [open tickets](https://github.com/mocktools/ruby-dns-mock/issues). Be sure to follow Contributor Code of Conduct below and our [Contributing Guidelines](CONTRIBUTING.md).
184
185
 
185
186
  ## License
186
187
 
data/dns_mock.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- lib = File.expand_path('lib', __dir__)
3
+ lib = ::File.expand_path('lib', __dir__)
4
4
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
5
  require 'dns_mock/version'
6
6
 
@@ -28,23 +28,23 @@ Gem::Specification.new do |spec|
28
28
 
29
29
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
30
30
  spec.bindir = 'exe'
31
- spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
31
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| ::File.basename(f) }
32
32
  spec.require_paths = ['lib']
33
33
 
34
34
  spec.add_runtime_dependency 'simpleidn', '~> 0.2.1'
35
35
 
36
- spec.add_development_dependency 'bundler', '~> 2.2', '>= 2.2.27'
37
36
  spec.add_development_dependency 'bundler-audit', '~> 0.9.0.1'
38
37
  spec.add_development_dependency 'fasterer', '~> 0.9.0'
39
- spec.add_development_dependency 'ffaker', '~> 2.19'
38
+ spec.add_development_dependency 'ffaker', '~> 2.20'
39
+ spec.add_development_dependency 'net-ftp', '~> 0.1.3'
40
40
  spec.add_development_dependency 'overcommit', '~> 0.58.0'
41
41
  spec.add_development_dependency 'pry-byebug', '~> 3.9'
42
42
  spec.add_development_dependency 'rake', '~> 13.0', '>= 13.0.6'
43
- spec.add_development_dependency 'reek', '~> 6.0', '>= 6.0.6'
43
+ spec.add_development_dependency 'reek', '~> 6.1'
44
44
  spec.add_development_dependency 'rspec', '~> 3.10'
45
45
  spec.add_development_dependency 'rspec-dns', '~> 0.1.8'
46
- spec.add_development_dependency 'rubocop', '~> 1.20'
47
- spec.add_development_dependency 'rubocop-performance', '~> 1.11', '>= 1.11.5'
48
- spec.add_development_dependency 'rubocop-rspec', '~> 2.4'
46
+ spec.add_development_dependency 'rubocop', '~> 1.25'
47
+ spec.add_development_dependency 'rubocop-performance', '~> 1.13', '>= 1.13.2'
48
+ spec.add_development_dependency 'rubocop-rspec', '~> 2.7'
49
49
  spec.add_development_dependency 'simplecov', '~> 0.17.1'
50
50
  end
@@ -0,0 +1,42 @@
1
+ # frozen_string_literal: true
2
+
3
+ lib = ::File.expand_path('lib', __dir__)
4
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
+ require 'dns_mock/version'
6
+
7
+ Gem::Specification.new do |spec|
8
+ spec.name = 'dns_mock'
9
+ spec.version = DnsMock::VERSION
10
+ spec.authors = ['Vladislav Trotsenko']
11
+ spec.email = ['admin@bestweb.com.ua']
12
+
13
+ spec.summary = %(dns_mock)
14
+ spec.description = %(💎 Ruby DNS mock. Mimic any DNS records for your test environment and even more.)
15
+
16
+ spec.homepage = 'https://github.com/mocktools/ruby-dns-mock'
17
+ spec.license = 'MIT'
18
+
19
+ spec.metadata = {
20
+ 'homepage_uri' => 'https://github.com/mocktools/ruby-dns-mock',
21
+ 'changelog_uri' => 'https://github.com/mocktools/ruby-dns-mock/blob/master/CHANGELOG.md',
22
+ 'source_code_uri' => 'https://github.com/mocktools/ruby-dns-mock',
23
+ 'documentation_uri' => 'https://github.com/mocktools/ruby-dns-mock/blob/master/README.md',
24
+ 'bug_tracker_uri' => 'https://github.com/mocktools/ruby-dns-mock/issues'
25
+ }
26
+
27
+ spec.required_ruby_version = '>= 2.5.0'
28
+
29
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
30
+ spec.bindir = 'exe'
31
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| ::File.basename(f) }
32
+ spec.require_paths = ['lib']
33
+
34
+ spec.add_runtime_dependency 'simpleidn', '~> 0.2.1'
35
+
36
+ spec.add_development_dependency 'ffaker', '~> 2.20'
37
+ spec.add_development_dependency 'pry-byebug'
38
+ spec.add_development_dependency 'rake', '~> 13.0', '>= 13.0.6'
39
+ spec.add_development_dependency 'rspec', '~> 3.10'
40
+ spec.add_development_dependency 'rspec-dns', '~> 0.1.8'
41
+ spec.add_development_dependency 'simplecov', '~> 0.17.1'
42
+ end
@@ -14,7 +14,7 @@ module DnsMock
14
14
  record_data, custom_record_preference = parse_mx_record_data(record_data)
15
15
  target_factory.new(
16
16
  record_data: [
17
- custom_record_preference&.to_i || record_preference * DnsMock::Record::Builder::Mx::RECORD_PREFERENCE_STEP,
17
+ custom_record_preference&.to_i || (record_preference * DnsMock::Record::Builder::Mx::RECORD_PREFERENCE_STEP),
18
18
  record_data
19
19
  ]
20
20
  ).create
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module DnsMock
4
- VERSION = '1.4.2'
4
+ VERSION = '1.5.1'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dns_mock
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.2
4
+ version: 1.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vladislav Trotsenko
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-09-04 00:00:00.000000000 Z
11
+ date: 2022-01-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: simpleidn
@@ -25,67 +25,61 @@ dependencies:
25
25
  - !ruby/object:Gem::Version
26
26
  version: 0.2.1
27
27
  - !ruby/object:Gem::Dependency
28
- name: bundler
28
+ name: bundler-audit
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: '2.2'
34
- - - ">="
35
- - !ruby/object:Gem::Version
36
- version: 2.2.27
33
+ version: 0.9.0.1
37
34
  type: :development
38
35
  prerelease: false
39
36
  version_requirements: !ruby/object:Gem::Requirement
40
37
  requirements:
41
38
  - - "~>"
42
39
  - !ruby/object:Gem::Version
43
- version: '2.2'
44
- - - ">="
45
- - !ruby/object:Gem::Version
46
- version: 2.2.27
40
+ version: 0.9.0.1
47
41
  - !ruby/object:Gem::Dependency
48
- name: bundler-audit
42
+ name: fasterer
49
43
  requirement: !ruby/object:Gem::Requirement
50
44
  requirements:
51
45
  - - "~>"
52
46
  - !ruby/object:Gem::Version
53
- version: 0.9.0.1
47
+ version: 0.9.0
54
48
  type: :development
55
49
  prerelease: false
56
50
  version_requirements: !ruby/object:Gem::Requirement
57
51
  requirements:
58
52
  - - "~>"
59
53
  - !ruby/object:Gem::Version
60
- version: 0.9.0.1
54
+ version: 0.9.0
61
55
  - !ruby/object:Gem::Dependency
62
- name: fasterer
56
+ name: ffaker
63
57
  requirement: !ruby/object:Gem::Requirement
64
58
  requirements:
65
59
  - - "~>"
66
60
  - !ruby/object:Gem::Version
67
- version: 0.9.0
61
+ version: '2.20'
68
62
  type: :development
69
63
  prerelease: false
70
64
  version_requirements: !ruby/object:Gem::Requirement
71
65
  requirements:
72
66
  - - "~>"
73
67
  - !ruby/object:Gem::Version
74
- version: 0.9.0
68
+ version: '2.20'
75
69
  - !ruby/object:Gem::Dependency
76
- name: ffaker
70
+ name: net-ftp
77
71
  requirement: !ruby/object:Gem::Requirement
78
72
  requirements:
79
73
  - - "~>"
80
74
  - !ruby/object:Gem::Version
81
- version: '2.19'
75
+ version: 0.1.3
82
76
  type: :development
83
77
  prerelease: false
84
78
  version_requirements: !ruby/object:Gem::Requirement
85
79
  requirements:
86
80
  - - "~>"
87
81
  - !ruby/object:Gem::Version
88
- version: '2.19'
82
+ version: 0.1.3
89
83
  - !ruby/object:Gem::Dependency
90
84
  name: overcommit
91
85
  requirement: !ruby/object:Gem::Requirement
@@ -140,20 +134,14 @@ dependencies:
140
134
  requirements:
141
135
  - - "~>"
142
136
  - !ruby/object:Gem::Version
143
- version: '6.0'
144
- - - ">="
145
- - !ruby/object:Gem::Version
146
- version: 6.0.6
137
+ version: '6.1'
147
138
  type: :development
148
139
  prerelease: false
149
140
  version_requirements: !ruby/object:Gem::Requirement
150
141
  requirements:
151
142
  - - "~>"
152
143
  - !ruby/object:Gem::Version
153
- version: '6.0'
154
- - - ">="
155
- - !ruby/object:Gem::Version
156
- version: 6.0.6
144
+ version: '6.1'
157
145
  - !ruby/object:Gem::Dependency
158
146
  name: rspec
159
147
  requirement: !ruby/object:Gem::Requirement
@@ -188,48 +176,48 @@ dependencies:
188
176
  requirements:
189
177
  - - "~>"
190
178
  - !ruby/object:Gem::Version
191
- version: '1.20'
179
+ version: '1.25'
192
180
  type: :development
193
181
  prerelease: false
194
182
  version_requirements: !ruby/object:Gem::Requirement
195
183
  requirements:
196
184
  - - "~>"
197
185
  - !ruby/object:Gem::Version
198
- version: '1.20'
186
+ version: '1.25'
199
187
  - !ruby/object:Gem::Dependency
200
188
  name: rubocop-performance
201
189
  requirement: !ruby/object:Gem::Requirement
202
190
  requirements:
203
191
  - - "~>"
204
192
  - !ruby/object:Gem::Version
205
- version: '1.11'
193
+ version: '1.13'
206
194
  - - ">="
207
195
  - !ruby/object:Gem::Version
208
- version: 1.11.5
196
+ version: 1.13.2
209
197
  type: :development
210
198
  prerelease: false
211
199
  version_requirements: !ruby/object:Gem::Requirement
212
200
  requirements:
213
201
  - - "~>"
214
202
  - !ruby/object:Gem::Version
215
- version: '1.11'
203
+ version: '1.13'
216
204
  - - ">="
217
205
  - !ruby/object:Gem::Version
218
- version: 1.11.5
206
+ version: 1.13.2
219
207
  - !ruby/object:Gem::Dependency
220
208
  name: rubocop-rspec
221
209
  requirement: !ruby/object:Gem::Requirement
222
210
  requirements:
223
211
  - - "~>"
224
212
  - !ruby/object:Gem::Version
225
- version: '2.4'
213
+ version: '2.7'
226
214
  type: :development
227
215
  prerelease: false
228
216
  version_requirements: !ruby/object:Gem::Requirement
229
217
  requirements:
230
218
  - - "~>"
231
219
  - !ruby/object:Gem::Version
232
- version: '2.4'
220
+ version: '2.7'
233
221
  - !ruby/object:Gem::Dependency
234
222
  name: simplecov
235
223
  requirement: !ruby/object:Gem::Requirement
@@ -271,13 +259,13 @@ files:
271
259
  - CODE_OF_CONDUCT.md
272
260
  - CONTRIBUTING.md
273
261
  - Gemfile
274
- - Gemfile.lock
275
262
  - LICENSE.txt
276
263
  - README.md
277
264
  - Rakefile
278
265
  - bin/console
279
266
  - bin/setup
280
267
  - dns_mock.gemspec
268
+ - dns_mock.gemspec_compatible
281
269
  - lib/dns_mock.rb
282
270
  - lib/dns_mock/core.rb
283
271
  - lib/dns_mock/error/argument_type.rb
@@ -341,7 +329,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
341
329
  - !ruby/object:Gem::Version
342
330
  version: '0'
343
331
  requirements: []
344
- rubygems_version: 3.2.20
332
+ rubygems_version: 3.3.3
345
333
  signing_key:
346
334
  specification_version: 4
347
335
  summary: dns_mock
data/Gemfile.lock DELETED
@@ -1,123 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- dns_mock (1.4.2)
5
- simpleidn (~> 0.2.1)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- ast (2.4.2)
11
- bundler-audit (0.9.0.1)
12
- bundler (>= 1.2.0, < 3)
13
- thor (~> 1.0)
14
- byebug (11.1.3)
15
- childprocess (4.1.0)
16
- coderay (1.1.3)
17
- colorize (0.8.1)
18
- diff-lcs (1.4.4)
19
- dnsruby (1.61.7)
20
- simpleidn (~> 0.1)
21
- docile (1.4.0)
22
- fasterer (0.9.0)
23
- colorize (~> 0.7)
24
- ruby_parser (>= 3.14.1)
25
- ffaker (2.19.0)
26
- iniparse (1.5.0)
27
- json (2.5.1)
28
- kwalify (0.7.2)
29
- method_source (1.0.0)
30
- overcommit (0.58.0)
31
- childprocess (>= 0.6.3, < 5)
32
- iniparse (~> 1.4)
33
- rexml (~> 3.2)
34
- parallel (1.20.1)
35
- parser (3.0.2.0)
36
- ast (~> 2.4.1)
37
- pry (0.13.1)
38
- coderay (~> 1.1)
39
- method_source (~> 1.0)
40
- pry-byebug (3.9.0)
41
- byebug (~> 11.0)
42
- pry (~> 0.13.0)
43
- rainbow (3.0.0)
44
- rake (13.0.6)
45
- reek (6.0.6)
46
- kwalify (~> 0.7.0)
47
- parser (~> 3.0.0)
48
- rainbow (>= 2.0, < 4.0)
49
- regexp_parser (2.1.1)
50
- rexml (3.2.5)
51
- rspec (3.10.0)
52
- rspec-core (~> 3.10.0)
53
- rspec-expectations (~> 3.10.0)
54
- rspec-mocks (~> 3.10.0)
55
- rspec-core (3.10.1)
56
- rspec-support (~> 3.10.0)
57
- rspec-dns (0.1.8)
58
- dnsruby (~> 1.54)
59
- rake
60
- rspec (>= 2.9)
61
- rspec-expectations (3.10.1)
62
- diff-lcs (>= 1.2.0, < 2.0)
63
- rspec-support (~> 3.10.0)
64
- rspec-mocks (3.10.2)
65
- diff-lcs (>= 1.2.0, < 2.0)
66
- rspec-support (~> 3.10.0)
67
- rspec-support (3.10.2)
68
- rubocop (1.20.0)
69
- parallel (~> 1.10)
70
- parser (>= 3.0.0.0)
71
- rainbow (>= 2.2.2, < 4.0)
72
- regexp_parser (>= 1.8, < 3.0)
73
- rexml
74
- rubocop-ast (>= 1.9.1, < 2.0)
75
- ruby-progressbar (~> 1.7)
76
- unicode-display_width (>= 1.4.0, < 3.0)
77
- rubocop-ast (1.11.0)
78
- parser (>= 3.0.1.1)
79
- rubocop-performance (1.11.5)
80
- rubocop (>= 1.7.0, < 2.0)
81
- rubocop-ast (>= 0.4.0)
82
- rubocop-rspec (2.4.0)
83
- rubocop (~> 1.0)
84
- rubocop-ast (>= 1.1.0)
85
- ruby-progressbar (1.11.0)
86
- ruby_parser (3.17.0)
87
- sexp_processor (~> 4.15, >= 4.15.1)
88
- sexp_processor (4.15.3)
89
- simplecov (0.17.1)
90
- docile (~> 1.1)
91
- json (>= 1.8, < 3)
92
- simplecov-html (~> 0.10.0)
93
- simplecov-html (0.10.2)
94
- simpleidn (0.2.1)
95
- unf (~> 0.1.4)
96
- thor (1.1.0)
97
- unf (0.1.4)
98
- unf_ext
99
- unf_ext (0.0.7.7)
100
- unicode-display_width (2.0.0)
101
-
102
- PLATFORMS
103
- x86_64-darwin-20
104
-
105
- DEPENDENCIES
106
- bundler (~> 2.2, >= 2.2.27)
107
- bundler-audit (~> 0.9.0.1)
108
- dns_mock!
109
- fasterer (~> 0.9.0)
110
- ffaker (~> 2.19)
111
- overcommit (~> 0.58.0)
112
- pry-byebug (~> 3.9)
113
- rake (~> 13.0, >= 13.0.6)
114
- reek (~> 6.0, >= 6.0.6)
115
- rspec (~> 3.10)
116
- rspec-dns (~> 0.1.8)
117
- rubocop (~> 1.20)
118
- rubocop-performance (~> 1.11, >= 1.11.5)
119
- rubocop-rspec (~> 2.4)
120
- simplecov (~> 0.17.1)
121
-
122
- BUNDLED WITH
123
- 2.2.27