Skip to content

Commit

Permalink
Merge pull request #133 from mocktools/develop
Browse files Browse the repository at this point in the history
Ruby DnsMock v1.6.2
  • Loading branch information
bestwebua authored Jan 31, 2024
2 parents 07cf4bb + fec4ec7 commit 65dbdd5
Show file tree
Hide file tree
Showing 9 changed files with 25 additions and 14 deletions.
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ defaults: &defaults
- image: cimg/ruby:<< parameters.ruby-version >>

orbs:
ruby: circleci/ruby@2.1.0
ruby: circleci/ruby@2.1.1

references:
bundle_install: &bundle_install
Expand Down Expand Up @@ -182,15 +182,15 @@ workflows:
- linters-ruby:
matrix:
parameters:
ruby-version: ["3.2-node"]
ruby-version: ["3.3-node"]
- tests-ruby:
matrix:
parameters:
ruby-version: ["3.2"]
ruby-version: ["3.3"]
- compatibility-ruby:
matrix:
parameters:
ruby-version: ["2.5", "2.6", "2.7", "3.0", "3.1"]
ruby-version: ["2.5", "2.6", "2.7", "3.0", "3.1", "3.2"]
- rubygems-deps-ruby:
matrix:
parameters:
Expand Down
2 changes: 1 addition & 1 deletion .circleci/gemspecs/compatible
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Gem::Specification.new do |spec|
spec.version = DnsMock::VERSION
spec.authors = ['Vladislav Trotsenko']
spec.email = %w[admin@bestweb.com.ua]
spec.summary = %(dns_mock)
spec.summary = %(💎 Ruby DNS mock. Mimic any DNS records for your test environment)
spec.description = %(💎 Ruby DNS mock. Mimic any DNS records for your test environment and even more.)
spec.homepage = 'https://github.com/mocktools/ruby-dns-mock'
spec.license = 'MIT'
Expand Down
8 changes: 4 additions & 4 deletions .circleci/gemspecs/latest
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Gem::Specification.new do |spec|
spec.version = DnsMock::VERSION
spec.authors = ['Vladislav Trotsenko']
spec.email = %w[admin@bestweb.com.ua]
spec.summary = %(dns_mock)
spec.summary = %(💎 Ruby DNS mock. Mimic any DNS records for your test environment)
spec.description = %(💎 Ruby DNS mock. Mimic any DNS records for your test environment and even more.)
spec.homepage = 'https://github.com/mocktools/ruby-dns-mock'
spec.license = 'MIT'
Expand All @@ -24,11 +24,11 @@ Gem::Specification.new do |spec|
spec.add_development_dependency 'net-ftp', '~> 0.3.4'
spec.add_development_dependency 'pry-byebug', '~> 3.10', '>= 3.10.1'
spec.add_development_dependency 'rake', '~> 13.1'
spec.add_development_dependency 'reek', '~> 6.2'
spec.add_development_dependency 'reek', '~> 6.3'
spec.add_development_dependency 'rspec', '~> 3.12'
spec.add_development_dependency 'rspec-dns', '~> 0.1.8'
spec.add_development_dependency 'rubocop', '~> 1.59'
spec.add_development_dependency 'rubocop-performance', '~> 1.20', '>= 1.20.1'
spec.add_development_dependency 'rubocop', '~> 1.60', '>= 1.60.2'
spec.add_development_dependency 'rubocop-performance', '~> 1.20', '>= 1.20.2'
spec.add_development_dependency 'rubocop-rspec', '~> 2.26', '>= 2.26.1'
spec.add_development_dependency 'simplecov', '~> 0.22.0'
end
2 changes: 1 addition & 1 deletion .codeclimate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ checks:
plugins:
rubocop:
enabled: true
channel: rubocop-1-59
channel: rubocop-1-60
config:
file: .circleci/linter_configs/.rubocop.yml

Expand Down
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@

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).

## [1.6.2] - 2024-01-31

### Added

- Added and tested Ruby 3.3.x support

### Updated

- Updated gemspecs
- Updated gem version

## [1.6.1] - 2024-01-07

### Updated
Expand Down
2 changes: 1 addition & 1 deletion dns_mock.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Gem::Specification.new do |spec|
spec.authors = ['Vladislav Trotsenko']
spec.email = %w[admin@bestweb.com.ua]

spec.summary = %(dns_mock)
spec.summary = %(💎 Ruby DNS mock. Mimic any DNS records for your test environment)
spec.description = %(💎 Ruby DNS mock. Mimic any DNS records for your test environment and even more.)

spec.homepage = 'https://github.com/mocktools/ruby-dns-mock'
Expand Down
2 changes: 1 addition & 1 deletion lib/dns_mock/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module DnsMock
VERSION = '1.6.1'
VERSION = '1.6.2'
end
2 changes: 1 addition & 1 deletion spec/support/config/pry.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# frozen_string_literal: true

require 'pry' if ::RUBY_VERSION[/\A3\.2.+\z/]
require 'pry' if ::RUBY_VERSION[/\A3\.3.+\z/]
2 changes: 1 addition & 1 deletion spec/support/config/simplecov.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# frozen_string_literal: true

if ::RUBY_VERSION[/\A3\.2.+\z/]
if ::RUBY_VERSION[/\A3\.3.+\z/]
require 'simplecov'

SimpleCov.minimum_coverage(100)
Expand Down

0 comments on commit 65dbdd5

Please sign in to comment.