File tree 7 files changed +19
-12
lines changed
7 files changed +19
-12
lines changed Original file line number Diff line number Diff line change @@ -12,12 +12,12 @@ Gem::Specification.new do |spec|
12
12
spec.homepage = 'https://github.com/mocktools/ruby-rspec-mock'
13
13
spec.license = 'MIT'
14
14
15
- spec.required_ruby_version = '>= 2.5 .0'
15
+ spec.required_ruby_version = '>= 2.4 .0'
16
16
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
17
17
spec.require_paths = %w[lib]
18
18
19
- spec.add_runtime_dependency 'rspec-core', '~> 3.13', '>= 3.13.2 '
20
- spec.add_runtime_dependency 'rspec-mocks', '~> 3.13', '>= 3.13.2 '
19
+ spec.add_runtime_dependency 'rspec-core', '~> 3.10 '
20
+ spec.add_runtime_dependency 'rspec-mocks', '~> 3.10 '
21
21
22
22
spec.add_development_dependency 'rspec', '~> 3.13'
23
23
end
Original file line number Diff line number Diff line change @@ -12,12 +12,12 @@ Gem::Specification.new do |spec|
12
12
spec.homepage = 'https://github.com/mocktools/ruby-rspec-mock'
13
13
spec.license = 'MIT'
14
14
15
- spec.required_ruby_version = '>= 2.5 .0'
15
+ spec.required_ruby_version = '>= 2.4 .0'
16
16
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
17
17
spec.require_paths = %w[lib]
18
18
19
- spec.add_runtime_dependency 'rspec-core', '~> 3.13', '>= 3.13.2 '
20
- spec.add_runtime_dependency 'rspec-mocks', '~> 3.13', '>= 3.13.2 '
19
+ spec.add_runtime_dependency 'rspec-core', '~> 3.10 '
20
+ spec.add_runtime_dependency 'rspec-mocks', '~> 3.10 '
21
21
22
22
spec.add_development_dependency 'bundler-audit', '~> 0.9.2'
23
23
spec.add_development_dependency 'fasterer', '~> 0.11.0'
Original file line number Diff line number Diff line change 7
7
AllCops :
8
8
DisplayCopNames : true
9
9
DisplayStyleGuide : true
10
- TargetRubyVersion : 2.5
10
+ TargetRubyVersion : 2.4
11
11
SuggestExtensions : false
12
12
NewCops : enable
13
13
Original file line number Diff line number Diff line change 1
- ruby-2.5 .0
1
+ ruby-2.4 .0
Original file line number Diff line number Diff line change 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
+ ## [ 0.2.0] - 2024-11-04
6
+
7
+ ### Added
8
+
9
+ - Added support of Ruby 2.4
10
+ - Added support of RSpec 3.10
11
+
5
12
## [ 0.1.0] - 2024-11-04
6
13
7
14
### Added
Original file line number Diff line number Diff line change 2
2
3
3
module RSpec
4
4
module Mock
5
- VERSION = '0.1 .0'
5
+ VERSION = '0.2 .0'
6
6
end
7
7
end
Original file line number Diff line number Diff line change @@ -22,12 +22,12 @@ Gem::Specification.new do |spec|
22
22
'bug_tracker_uri' => 'https://github.com/mocktools/ruby-rspec-mock/issues'
23
23
}
24
24
25
- spec . required_ruby_version = '>= 2.5 .0'
25
+ spec . required_ruby_version = '>= 2.4 .0'
26
26
spec . files = `git ls-files -z` . split ( "\x0 " ) . select { |f | f . match ( %r{^(bin|lib)/|.ruby-version|rspec-mock.gemspec|LICENSE} ) }
27
27
spec . require_paths = %w[ lib ]
28
28
29
- spec . add_runtime_dependency 'rspec-core' , '~> 3.13' , '>= 3.13.2 '
30
- spec . add_runtime_dependency 'rspec-mocks' , '~> 3.13' , '>= 3.13.2 '
29
+ spec . add_runtime_dependency 'rspec-core' , '~> 3.10 '
30
+ spec . add_runtime_dependency 'rspec-mocks' , '~> 3.10 '
31
31
32
32
spec . add_development_dependency 'rspec' , '~> 3.13'
33
33
end
You can’t perform that action at this time.
0 commit comments