dns_mock 1.4.4 → 1.5.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d5c5667d59fb9ca903b86d07db9ea589aab8af84ea9e5cdbe4db59e0b42a6f7f
4
- data.tar.gz: 4b28259e0bb3eb7bf8c9df457fdc5bb93e7d70db3c2cdcac70b6893353a79532
3
+ metadata.gz: 4f9619c8cde22bb1fc930c91a7aca80484933552d752c0b16a5b11e9d09bc2a0
4
+ data.tar.gz: e763c628b2d0615b4e62d03f15110b9434d7f7a75400aad8c5925d823a71ec05
5
5
  SHA512:
6
- metadata.gz: aeaebb04153c229192b4db833f8154a9fd631d6ce1c6f0a14cc1de3263a2447d0a13792854f554607d547d1732be1c922fcf78542d081267f0c73073d1654520
7
- data.tar.gz: 8ed61b7ba70335ed5d1ff344aa75888b6ac5fd8d92d61a5d2c9e13e5c47128ae4311ee90b3bf8e53500338cdc31834ce57447c899d77adced3250bf424f7d23d
6
+ metadata.gz: d7282581f314ad2d3d245a103362abbea044c9a74b2ca5d660e96482609d4c9adf6631734b5a47012ad5f8ff500c1732a9ec76b07e800db612589df18a0cd864
7
+ data.tar.gz: 8486ad4d2e2521a9223368766311873ee96b0d520b36b31241c419171ab640ab25964ee8a71bf337377dbf554a83e945bfdd95f44d9ee4569de6d74a52f1be08
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,18 @@ 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_latest_gemspec: &use_latest_gemspec
38
+ run:
39
+ name: Using latest gemspec
40
+ command: |
41
+ cp .circleci/gemspec_latest dns_mock.gemspec
42
+
43
+ use_compatible_gemspec: &use_compatible_gemspec
44
+ run:
45
+ name: Using compatible gemspec
46
+ command: |
47
+ cp .circleci/gemspec_compatible dns_mock.gemspec
48
+
42
49
  jobs:
43
50
  linters-ruby:
44
51
  parameters:
@@ -50,7 +57,7 @@ jobs:
50
57
  steps:
51
58
  - checkout
52
59
 
53
- - <<: *install_bundler
60
+ - <<: *use_latest_gemspec
54
61
  - <<: *restore_bundle_cache
55
62
  - <<: *bundle_install
56
63
  - <<: *save_bundle_cache
@@ -71,7 +78,7 @@ jobs:
71
78
  steps:
72
79
  - checkout
73
80
 
74
- - <<: *install_bundler
81
+ - <<: *use_latest_gemspec
75
82
  - <<: *restore_bundle_cache
76
83
  - <<: *bundle_install
77
84
  - <<: *save_bundle_cache
@@ -106,7 +113,9 @@ jobs:
106
113
  - image: cimg/ruby:<< parameters.ruby-version >>
107
114
  steps:
108
115
  - checkout
116
+ - <<: *use_compatible_gemspec
109
117
  - ruby/install-deps:
118
+ bundler-version: "2.3.8"
110
119
  with-cache: false
111
120
  path: './vendor/custom_bundle'
112
121
  - run:
@@ -119,12 +128,12 @@ workflows:
119
128
  - linters-ruby:
120
129
  matrix:
121
130
  parameters:
122
- ruby-version: ["2.5"]
131
+ ruby-version: ["3.1"]
123
132
  - tests-ruby:
124
133
  matrix:
125
134
  parameters:
126
- ruby-version: ["2.5"]
135
+ ruby-version: ["3.1"]
127
136
  - compatibility-ruby:
128
137
  matrix:
129
138
  parameters:
130
- ruby-version: ["2.6", "2.7", "3.0"]
139
+ ruby-version: ["2.5", "2.6", "2.7", "3.0"]
@@ -0,0 +1,38 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'lib/dns_mock/version'
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = 'dns_mock'
7
+ spec.version = DnsMock::VERSION
8
+ spec.authors = ['Vladislav Trotsenko']
9
+ spec.email = ['admin@bestweb.com.ua']
10
+
11
+ spec.summary = %(dns_mock)
12
+ spec.description = %(💎 Ruby DNS mock. Mimic any DNS records for your test environment and even more.)
13
+
14
+ spec.homepage = 'https://github.com/mocktools/ruby-dns-mock'
15
+ spec.license = 'MIT'
16
+
17
+ spec.metadata = {
18
+ 'homepage_uri' => 'https://github.com/mocktools/ruby-dns-mock',
19
+ 'changelog_uri' => 'https://github.com/mocktools/ruby-dns-mock/blob/master/CHANGELOG.md',
20
+ 'source_code_uri' => 'https://github.com/mocktools/ruby-dns-mock',
21
+ 'documentation_uri' => 'https://github.com/mocktools/ruby-dns-mock/blob/master/README.md',
22
+ 'bug_tracker_uri' => 'https://github.com/mocktools/ruby-dns-mock/issues'
23
+ }
24
+
25
+ spec.required_ruby_version = '>= 2.5.0'
26
+
27
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
28
+ spec.bindir = 'exe'
29
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| ::File.basename(f) }
30
+ spec.require_paths = ['lib']
31
+
32
+ spec.add_runtime_dependency 'simpleidn', '~> 0.2.1'
33
+
34
+ spec.add_development_dependency 'ffaker', '~> 2.20'
35
+ spec.add_development_dependency 'rake', '~> 13.0', '>= 13.0.6'
36
+ spec.add_development_dependency 'rspec', '~> 3.11'
37
+ spec.add_development_dependency 'rspec-dns', '~> 0.1.8'
38
+ end
@@ -0,0 +1,48 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'lib/dns_mock/version'
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = 'dns_mock'
7
+ spec.version = DnsMock::VERSION
8
+ spec.authors = ['Vladislav Trotsenko']
9
+ spec.email = ['admin@bestweb.com.ua']
10
+
11
+ spec.summary = %(dns_mock)
12
+ spec.description = %(💎 Ruby DNS mock. Mimic any DNS records for your test environment and even more.)
13
+
14
+ spec.homepage = 'https://github.com/mocktools/ruby-dns-mock'
15
+ spec.license = 'MIT'
16
+
17
+ spec.metadata = {
18
+ 'homepage_uri' => 'https://github.com/mocktools/ruby-dns-mock',
19
+ 'changelog_uri' => 'https://github.com/mocktools/ruby-dns-mock/blob/master/CHANGELOG.md',
20
+ 'source_code_uri' => 'https://github.com/mocktools/ruby-dns-mock',
21
+ 'documentation_uri' => 'https://github.com/mocktools/ruby-dns-mock/blob/master/README.md',
22
+ 'bug_tracker_uri' => 'https://github.com/mocktools/ruby-dns-mock/issues'
23
+ }
24
+
25
+ spec.required_ruby_version = '>= 2.5.0'
26
+
27
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
28
+ spec.bindir = 'exe'
29
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| ::File.basename(f) }
30
+ spec.require_paths = ['lib']
31
+
32
+ spec.add_runtime_dependency 'simpleidn', '~> 0.2.1'
33
+
34
+ spec.add_development_dependency 'bundler-audit', '~> 0.9.0.1'
35
+ spec.add_development_dependency 'fasterer', '~> 0.9.0'
36
+ spec.add_development_dependency 'ffaker', '~> 2.20'
37
+ spec.add_development_dependency 'net-ftp', '~> 0.1.3'
38
+ spec.add_development_dependency 'overcommit', '~> 0.58.0'
39
+ spec.add_development_dependency 'pry-byebug', '~> 3.9'
40
+ spec.add_development_dependency 'rake', '~> 13.0', '>= 13.0.6'
41
+ spec.add_development_dependency 'reek', '~> 6.1'
42
+ spec.add_development_dependency 'rspec', '~> 3.11'
43
+ spec.add_development_dependency 'rspec-dns', '~> 0.1.8'
44
+ spec.add_development_dependency 'rubocop', '~> 1.26'
45
+ spec.add_development_dependency 'rubocop-performance', '~> 1.13', '>= 1.13.3'
46
+ spec.add_development_dependency 'rubocop-rspec', '~> 2.9'
47
+ spec.add_development_dependency 'simplecov', '~> 0.21.2'
48
+ end
data/.codeclimate.yml CHANGED
@@ -7,7 +7,7 @@ checks:
7
7
  plugins:
8
8
  rubocop:
9
9
  enabled: true
10
- channel: rubocop-1-22
10
+ channel: rubocop-1-26
11
11
 
12
12
  reek:
13
13
  enabled: true
@@ -0,0 +1,26 @@
1
+ # Development environment guide
2
+
3
+ ## Preparing
4
+
5
+ Clone `dns_mock` repository:
6
+
7
+ ```bash
8
+ git clone https://github.com/mocktools/ruby-dns-mock.git
9
+ cd ruby-dns-mock
10
+ ```
11
+
12
+ Configure latest Ruby environment:
13
+
14
+ ```bash
15
+ echo 'ruby-3.1.1' > .ruby-version
16
+ cp .circleci/gemspec_latest dns_mock.gemspec
17
+ ```
18
+
19
+ ## Commiting
20
+
21
+ Commit your changes excluding `.ruby-version`, `dns_mock.gemspec`
22
+
23
+ ```bash
24
+ git add . ':!.ruby-version' ':!dns_mock.gemspec'
25
+ git commit -m 'Your new awesome dns_mock feature'
26
+ ```
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
 
@@ -151,6 +154,18 @@ Style/NumberedParametersLimit:
151
154
  Style/SelectByRegexp:
152
155
  Enabled: true
153
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
+
154
169
  Layout/LineLength:
155
170
  Max: 150
156
171
 
@@ -266,9 +281,15 @@ Lint/IncompatibleIoSelectWithFiberScheduler:
266
281
  Lint/RequireRelativeSelfPath:
267
282
  Enabled: true
268
283
 
284
+ Lint/UselessRuby2Keywords:
285
+ Enabled: true
286
+
269
287
  Gemspec/DateAssignment:
270
288
  Enabled: true
271
289
 
290
+ Gemspec/RequireMFA:
291
+ Enabled: false
292
+
272
293
  Security/IoMethods:
273
294
  Enabled: true
274
295
 
@@ -323,6 +344,9 @@ Performance/MapCompact:
323
344
  Performance/ConcurrentMonotonicTime:
324
345
  Enabled: true
325
346
 
347
+ Performance/StringIdentifierArgument:
348
+ Enabled: true
349
+
326
350
  RSpec/ExampleLength:
327
351
  Enabled: false
328
352
 
@@ -364,3 +388,6 @@ RSpec/ExcessiveDocstringSpacing:
364
388
 
365
389
  RSpec/SubjectDeclaration:
366
390
  Enabled: true
391
+
392
+ RSpec/FactoryBot/SyntaxMethods:
393
+ Enabled: true
data/CHANGELOG.md CHANGED
@@ -2,6 +2,40 @@
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.2] - 2022-03-10
6
+
7
+ ### Added
8
+
9
+ - Development environment guide
10
+
11
+ ### Updated
12
+
13
+ - Updated gemspecs
14
+ - Updated codeclimate/circleci configs
15
+ - Updated gem development dependencies
16
+ - Updated gem version
17
+
18
+ ## [1.5.1] - 2022-01-23
19
+
20
+ ### Updated
21
+
22
+ - Updated native Ruby test environment from 2.5 to 3.1
23
+ - Updated codeclimate/circleci configs
24
+ - Updated gem development dependencies
25
+ - Updated gem docs, version
26
+
27
+ ## [1.5.0] - 2021-12-29
28
+
29
+ ### Added
30
+
31
+ - Added Ruby 3.1.x compatibility
32
+
33
+ ### Updated
34
+
35
+ - Updated rubocop/codeclimate/circleci configs
36
+ - Updated gem development dependencies
37
+ - Updated gem docs, version
38
+
5
39
  ## [1.4.4] - 2021-11-11
6
40
 
7
41
  ### Updated
data/CONTRIBUTING.md CHANGED
@@ -42,5 +42,7 @@ Guidelines for pull requests:
42
42
  2. Fork the repo, checkout to `develop` branch
43
43
  3. Run the tests. This is to make sure your starting point works
44
44
  4. Read our [branch naming convention](.github/BRANCH_NAMING_CONVENTION.md)
45
- 5. Create a new branch and make your changes. This includes tests for features!
46
- 6. Push to your fork and submit a pull request to `develop` branch
45
+ 5. Create a new branch
46
+ 6. Read our [setup development environment guide](.github/DEVELOPMENT_ENVIRONMENT_GUIDE.md)
47
+ 7. Make your changes. Please note that your PR should include tests for the new codebase!
48
+ 9. Push to your fork and submit a pull request to `develop` branch
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,8 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- lib = ::File.expand_path('lib', __dir__)
4
- $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
- require 'dns_mock/version'
3
+ require_relative 'lib/dns_mock/version'
6
4
 
7
5
  Gem::Specification.new do |spec|
8
6
  spec.name = 'dns_mock'
@@ -33,18 +31,9 @@ Gem::Specification.new do |spec|
33
31
 
34
32
  spec.add_runtime_dependency 'simpleidn', '~> 0.2.1'
35
33
 
36
- spec.add_development_dependency 'bundler', '~> 2.2', '>= 2.2.31'
37
- spec.add_development_dependency 'bundler-audit', '~> 0.9.0.1'
38
- spec.add_development_dependency 'fasterer', '~> 0.9.0'
39
34
  spec.add_development_dependency 'ffaker', '~> 2.20'
40
- spec.add_development_dependency 'overcommit', '~> 0.58.0'
41
- spec.add_development_dependency 'pry-byebug', '~> 3.9'
35
+ spec.add_development_dependency 'net-ftp', '~> 0.1.3' if ::RUBY_VERSION >= '3.1.0'
42
36
  spec.add_development_dependency 'rake', '~> 13.0', '>= 13.0.6'
43
- spec.add_development_dependency 'reek', '~> 6.0', '>= 6.0.6'
44
- spec.add_development_dependency 'rspec', '~> 3.10'
37
+ spec.add_development_dependency 'rspec', '~> 3.11'
45
38
  spec.add_development_dependency 'rspec-dns', '~> 0.1.8'
46
- spec.add_development_dependency 'rubocop', '~> 1.22', '>= 1.22.3'
47
- spec.add_development_dependency 'rubocop-performance', '~> 1.12'
48
- spec.add_development_dependency 'rubocop-rspec', '~> 2.6'
49
- spec.add_development_dependency 'simplecov', '~> 0.17.1'
50
39
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module DnsMock
4
- VERSION = '1.4.4'
4
+ VERSION = '1.5.2'
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.4
4
+ version: 1.5.2
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-11-11 00:00:00.000000000 Z
11
+ date: 2022-03-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: simpleidn
@@ -24,54 +24,6 @@ dependencies:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: 0.2.1
27
- - !ruby/object:Gem::Dependency
28
- name: bundler
29
- requirement: !ruby/object:Gem::Requirement
30
- requirements:
31
- - - "~>"
32
- - !ruby/object:Gem::Version
33
- version: '2.2'
34
- - - ">="
35
- - !ruby/object:Gem::Version
36
- version: 2.2.31
37
- type: :development
38
- prerelease: false
39
- version_requirements: !ruby/object:Gem::Requirement
40
- requirements:
41
- - - "~>"
42
- - !ruby/object:Gem::Version
43
- version: '2.2'
44
- - - ">="
45
- - !ruby/object:Gem::Version
46
- version: 2.2.31
47
- - !ruby/object:Gem::Dependency
48
- name: bundler-audit
49
- requirement: !ruby/object:Gem::Requirement
50
- requirements:
51
- - - "~>"
52
- - !ruby/object:Gem::Version
53
- version: 0.9.0.1
54
- type: :development
55
- prerelease: false
56
- version_requirements: !ruby/object:Gem::Requirement
57
- requirements:
58
- - - "~>"
59
- - !ruby/object:Gem::Version
60
- version: 0.9.0.1
61
- - !ruby/object:Gem::Dependency
62
- name: fasterer
63
- requirement: !ruby/object:Gem::Requirement
64
- requirements:
65
- - - "~>"
66
- - !ruby/object:Gem::Version
67
- version: 0.9.0
68
- type: :development
69
- prerelease: false
70
- version_requirements: !ruby/object:Gem::Requirement
71
- requirements:
72
- - - "~>"
73
- - !ruby/object:Gem::Version
74
- version: 0.9.0
75
27
  - !ruby/object:Gem::Dependency
76
28
  name: ffaker
77
29
  requirement: !ruby/object:Gem::Requirement
@@ -86,34 +38,6 @@ dependencies:
86
38
  - - "~>"
87
39
  - !ruby/object:Gem::Version
88
40
  version: '2.20'
89
- - !ruby/object:Gem::Dependency
90
- name: overcommit
91
- requirement: !ruby/object:Gem::Requirement
92
- requirements:
93
- - - "~>"
94
- - !ruby/object:Gem::Version
95
- version: 0.58.0
96
- type: :development
97
- prerelease: false
98
- version_requirements: !ruby/object:Gem::Requirement
99
- requirements:
100
- - - "~>"
101
- - !ruby/object:Gem::Version
102
- version: 0.58.0
103
- - !ruby/object:Gem::Dependency
104
- name: pry-byebug
105
- requirement: !ruby/object:Gem::Requirement
106
- requirements:
107
- - - "~>"
108
- - !ruby/object:Gem::Version
109
- version: '3.9'
110
- type: :development
111
- prerelease: false
112
- version_requirements: !ruby/object:Gem::Requirement
113
- requirements:
114
- - - "~>"
115
- - !ruby/object:Gem::Version
116
- version: '3.9'
117
41
  - !ruby/object:Gem::Dependency
118
42
  name: rake
119
43
  requirement: !ruby/object:Gem::Requirement
@@ -134,40 +58,20 @@ dependencies:
134
58
  - - ">="
135
59
  - !ruby/object:Gem::Version
136
60
  version: 13.0.6
137
- - !ruby/object:Gem::Dependency
138
- name: reek
139
- requirement: !ruby/object:Gem::Requirement
140
- requirements:
141
- - - "~>"
142
- - !ruby/object:Gem::Version
143
- version: '6.0'
144
- - - ">="
145
- - !ruby/object:Gem::Version
146
- version: 6.0.6
147
- type: :development
148
- prerelease: false
149
- version_requirements: !ruby/object:Gem::Requirement
150
- requirements:
151
- - - "~>"
152
- - !ruby/object:Gem::Version
153
- version: '6.0'
154
- - - ">="
155
- - !ruby/object:Gem::Version
156
- version: 6.0.6
157
61
  - !ruby/object:Gem::Dependency
158
62
  name: rspec
159
63
  requirement: !ruby/object:Gem::Requirement
160
64
  requirements:
161
65
  - - "~>"
162
66
  - !ruby/object:Gem::Version
163
- version: '3.10'
67
+ version: '3.11'
164
68
  type: :development
165
69
  prerelease: false
166
70
  version_requirements: !ruby/object:Gem::Requirement
167
71
  requirements:
168
72
  - - "~>"
169
73
  - !ruby/object:Gem::Version
170
- version: '3.10'
74
+ version: '3.11'
171
75
  - !ruby/object:Gem::Dependency
172
76
  name: rspec-dns
173
77
  requirement: !ruby/object:Gem::Requirement
@@ -182,68 +86,6 @@ dependencies:
182
86
  - - "~>"
183
87
  - !ruby/object:Gem::Version
184
88
  version: 0.1.8
185
- - !ruby/object:Gem::Dependency
186
- name: rubocop
187
- requirement: !ruby/object:Gem::Requirement
188
- requirements:
189
- - - "~>"
190
- - !ruby/object:Gem::Version
191
- version: '1.22'
192
- - - ">="
193
- - !ruby/object:Gem::Version
194
- version: 1.22.3
195
- type: :development
196
- prerelease: false
197
- version_requirements: !ruby/object:Gem::Requirement
198
- requirements:
199
- - - "~>"
200
- - !ruby/object:Gem::Version
201
- version: '1.22'
202
- - - ">="
203
- - !ruby/object:Gem::Version
204
- version: 1.22.3
205
- - !ruby/object:Gem::Dependency
206
- name: rubocop-performance
207
- requirement: !ruby/object:Gem::Requirement
208
- requirements:
209
- - - "~>"
210
- - !ruby/object:Gem::Version
211
- version: '1.12'
212
- type: :development
213
- prerelease: false
214
- version_requirements: !ruby/object:Gem::Requirement
215
- requirements:
216
- - - "~>"
217
- - !ruby/object:Gem::Version
218
- version: '1.12'
219
- - !ruby/object:Gem::Dependency
220
- name: rubocop-rspec
221
- requirement: !ruby/object:Gem::Requirement
222
- requirements:
223
- - - "~>"
224
- - !ruby/object:Gem::Version
225
- version: '2.6'
226
- type: :development
227
- prerelease: false
228
- version_requirements: !ruby/object:Gem::Requirement
229
- requirements:
230
- - - "~>"
231
- - !ruby/object:Gem::Version
232
- version: '2.6'
233
- - !ruby/object:Gem::Dependency
234
- name: simplecov
235
- requirement: !ruby/object:Gem::Requirement
236
- requirements:
237
- - - "~>"
238
- - !ruby/object:Gem::Version
239
- version: 0.17.1
240
- type: :development
241
- prerelease: false
242
- version_requirements: !ruby/object:Gem::Requirement
243
- requirements:
244
- - - "~>"
245
- - !ruby/object:Gem::Version
246
- version: 0.17.1
247
89
  description: "\U0001F48E Ruby DNS mock. Mimic any DNS records for your test environment
248
90
  and even more."
249
91
  email:
@@ -253,8 +95,11 @@ extensions: []
253
95
  extra_rdoc_files: []
254
96
  files:
255
97
  - ".circleci/config.yml"
98
+ - ".circleci/gemspec_compatible"
99
+ - ".circleci/gemspec_latest"
256
100
  - ".codeclimate.yml"
257
101
  - ".github/BRANCH_NAMING_CONVENTION.md"
102
+ - ".github/DEVELOPMENT_ENVIRONMENT_GUIDE.md"
258
103
  - ".github/ISSUE_TEMPLATE/bug_report.md"
259
104
  - ".github/ISSUE_TEMPLATE/feature_request.md"
260
105
  - ".github/ISSUE_TEMPLATE/issue_report.md"
@@ -271,7 +116,6 @@ files:
271
116
  - CODE_OF_CONDUCT.md
272
117
  - CONTRIBUTING.md
273
118
  - Gemfile
274
- - Gemfile.lock
275
119
  - LICENSE.txt
276
120
  - README.md
277
121
  - Rakefile
@@ -341,7 +185,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
341
185
  - !ruby/object:Gem::Version
342
186
  version: '0'
343
187
  requirements: []
344
- rubygems_version: 3.2.20
188
+ rubyforge_project:
189
+ rubygems_version: 2.7.3
345
190
  signing_key:
346
191
  specification_version: 4
347
192
  summary: dns_mock
data/Gemfile.lock DELETED
@@ -1,122 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- dns_mock (1.4.4)
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.20.0)
26
- iniparse (1.5.0)
27
- json (2.6.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.21.0)
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.3)
68
- rubocop (1.22.3)
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.12.0, < 2.0)
75
- ruby-progressbar (~> 1.7)
76
- unicode-display_width (>= 1.4.0, < 3.0)
77
- rubocop-ast (1.13.0)
78
- parser (>= 3.0.1.1)
79
- rubocop-performance (1.12.0)
80
- rubocop (>= 1.7.0, < 2.0)
81
- rubocop-ast (>= 0.4.0)
82
- rubocop-rspec (2.6.0)
83
- rubocop (~> 1.19)
84
- ruby-progressbar (1.11.0)
85
- ruby_parser (3.18.1)
86
- sexp_processor (~> 4.16)
87
- sexp_processor (4.16.0)
88
- simplecov (0.17.1)
89
- docile (~> 1.1)
90
- json (>= 1.8, < 3)
91
- simplecov-html (~> 0.10.0)
92
- simplecov-html (0.10.2)
93
- simpleidn (0.2.1)
94
- unf (~> 0.1.4)
95
- thor (1.1.0)
96
- unf (0.1.4)
97
- unf_ext
98
- unf_ext (0.0.8)
99
- unicode-display_width (2.1.0)
100
-
101
- PLATFORMS
102
- x86_64-darwin-20
103
-
104
- DEPENDENCIES
105
- bundler (~> 2.2, >= 2.2.31)
106
- bundler-audit (~> 0.9.0.1)
107
- dns_mock!
108
- fasterer (~> 0.9.0)
109
- ffaker (~> 2.20)
110
- overcommit (~> 0.58.0)
111
- pry-byebug (~> 3.9)
112
- rake (~> 13.0, >= 13.0.6)
113
- reek (~> 6.0, >= 6.0.6)
114
- rspec (~> 3.10)
115
- rspec-dns (~> 0.1.8)
116
- rubocop (~> 1.22, >= 1.22.3)
117
- rubocop-performance (~> 1.12)
118
- rubocop-rspec (~> 2.6)
119
- simplecov (~> 0.17.1)
120
-
121
- BUNDLED WITH
122
- 2.2.31