Skip to content

Commit

Permalink
Merge pull request #6 from mocktools/develop
Browse files Browse the repository at this point in the history
RSpec::Mock v0.2.0
  • Loading branch information
bestwebua authored Nov 4, 2024
2 parents 24af758 + 1edd5d8 commit 68c01f1
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 12 deletions.
6 changes: 3 additions & 3 deletions .circleci/gemspecs/compatible
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ Gem::Specification.new do |spec|
spec.homepage = 'https://github.com/mocktools/ruby-rspec-mock'
spec.license = 'MIT'

spec.required_ruby_version = '>= 2.5.0'
spec.required_ruby_version = '>= 2.4.0'
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.require_paths = %w[lib]

spec.add_runtime_dependency 'rspec-core', '~> 3.13', '>= 3.13.2'
spec.add_runtime_dependency 'rspec-mocks', '~> 3.13', '>= 3.13.2'
spec.add_runtime_dependency 'rspec-core', '~> 3.10'
spec.add_runtime_dependency 'rspec-mocks', '~> 3.10'

spec.add_development_dependency 'rspec', '~> 3.13'
end
6 changes: 3 additions & 3 deletions .circleci/gemspecs/latest
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ Gem::Specification.new do |spec|
spec.homepage = 'https://github.com/mocktools/ruby-rspec-mock'
spec.license = 'MIT'

spec.required_ruby_version = '>= 2.5.0'
spec.required_ruby_version = '>= 2.4.0'
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.require_paths = %w[lib]

spec.add_runtime_dependency 'rspec-core', '~> 3.13', '>= 3.13.2'
spec.add_runtime_dependency 'rspec-mocks', '~> 3.13', '>= 3.13.2'
spec.add_runtime_dependency 'rspec-core', '~> 3.10'
spec.add_runtime_dependency 'rspec-mocks', '~> 3.10'

spec.add_development_dependency 'bundler-audit', '~> 0.9.2'
spec.add_development_dependency 'fasterer', '~> 0.11.0'
Expand Down
2 changes: 1 addition & 1 deletion .circleci/linter_configs/.rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ require:
AllCops:
DisplayCopNames: true
DisplayStyleGuide: true
TargetRubyVersion: 2.5
TargetRubyVersion: 2.4
SuggestExtensions: false
NewCops: enable

Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ruby-2.5.0
ruby-2.4.0
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

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

## [0.2.0] - 2024-11-04

### Added

- Added support of Ruby 2.4
- Added support of RSpec 3.10

## [0.1.0] - 2024-11-04

### Added
Expand Down
2 changes: 1 addition & 1 deletion lib/rspec/mock/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module RSpec
module Mock
VERSION = '0.1.0'
VERSION = '0.2.0'
end
end
6 changes: 3 additions & 3 deletions rspec-mock.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ Gem::Specification.new do |spec|
'bug_tracker_uri' => 'https://github.com/mocktools/ruby-rspec-mock/issues'
}

spec.required_ruby_version = '>= 2.5.0'
spec.required_ruby_version = '>= 2.4.0'
spec.files = `git ls-files -z`.split("\x0").select { |f| f.match(%r{^(bin|lib)/|.ruby-version|rspec-mock.gemspec|LICENSE}) }
spec.require_paths = %w[lib]

spec.add_runtime_dependency 'rspec-core', '~> 3.13', '>= 3.13.2'
spec.add_runtime_dependency 'rspec-mocks', '~> 3.13', '>= 3.13.2'
spec.add_runtime_dependency 'rspec-core', '~> 3.10'
spec.add_runtime_dependency 'rspec-mocks', '~> 3.10'

spec.add_development_dependency 'rspec', '~> 3.13'
end

0 comments on commit 68c01f1

Please sign in to comment.