Skip to content

Commit 13af086

Browse files
authored
Merge pull request #10 from mocktools/develop
RSpec::Mock v0.3.1
2 parents 16f78ff + b8e849a commit 13af086

File tree

3 files changed

+14
-1
lines changed

3 files changed

+14
-1
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

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

5+
## [0.3.1] - 2024-11-08
6+
7+
### Fixed
8+
9+
- Fixed CLI broken import.
10+
511
## [0.3.0] - 2024-11-08
612

713
### Added

lib/rspec/mock/migration_analytics/cli.rb

+7
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44
require 'colorize'
55
require 'terminal-table'
66

7+
require_relative 'tracker/base'
8+
require_relative 'tracker/flexmock'
9+
require_relative 'tracker/rspec'
10+
require_relative 'file_analyzer'
11+
712
module RSpec
813
module Mock
914
module MigrationAnalytics
@@ -183,3 +188,5 @@ def create_file_row(result)
183188
end
184189
end
185190
end
191+
192+
RSpec::Mock::MigrationAnalytics::Cli.call if __FILE__.eql?($PROGRAM_NAME)

lib/rspec/mock/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
module RSpec
44
module Mock
5-
VERSION = '0.3.0'
5+
VERSION = '0.3.1'
66
end
77
end

0 commit comments

Comments
 (0)