-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* bump rubies * reverse order of changelog * make coverage run conditionally
- Loading branch information
Showing
14 changed files
with
74 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,32 @@ | ||
## [Unreleased] | ||
|
||
## [0.1.0-alpha.1] - 2023-12-16 | ||
|
||
- Initial release | ||
|
||
## [0.2.0-alpha.1] - 2023-12-27 | ||
## [0.5.0] - 2024-01-01 | ||
- Add support for `SetA = Interactify { _1.a = 'a' }`, lambda and block class creation syntax | ||
- Add support for organizing `organize A.organizing(B, C, D), E, F` contract syntax | ||
- make definition errors raise optionally | ||
- raise an error with unexpected keys in Interactify.if clause | ||
- propagate caller_info through chains | ||
|
||
- Added support for Interactify.promising syntax in organizers | ||
## [0.4.1] - 2023-12-29 | ||
- Fix bug triggered when nesting each and if | ||
|
||
## [0.3.0-alpha.1] - 2023-12-29 | ||
## [0.4.0] - 2023-12-29 | ||
- All internal restructuring/refactoring into domains. | ||
- Add support for organize `self.if(:condition, then: A, else: B)` syntax | ||
- change location of matchers to `require 'interactify/rspec_matchers/matchers'` | ||
|
||
- Added support for `{if: :condition, then: A, else: B}` in organizers | ||
## [0.3.0-RC1] - 2023-12-29 | ||
- Fixed to work with and make optional dependencies for sidekiq and railties. Confirmed as working with ruby >= 3.1.4 | ||
|
||
## [0.3.0-alpha.2] - 2023-12-29 | ||
|
||
- Remove deep_matching development dependency | ||
|
||
## [0.3.0-RC1] - 2023-12-29 | ||
|
||
- Fixed to work with and make optional dependencies for sidekiq and railties. Confirmed as working with ruby >= 3.1.4 | ||
|
||
## [0.4.0] - 2023-12-29 | ||
|
||
- All internal restructuring/refactoring into domains. | ||
- Add support for organize `self.if(:condition, then: A, else: B)` syntax | ||
- change location of matchers to `require 'interactify/rspec_matchers/matchers'` | ||
## [0.3.0-alpha.1] - 2023-12-29 | ||
- Added support for `{if: :condition, then: A, else: B}` in organizers | ||
|
||
## [0.4.1] - 2023-12-29 | ||
- Fix bug triggered when nesting each and if | ||
## [0.2.0-alpha.1] - 2023-12-27 | ||
- Added support for Interactify.promising syntax in organizers | ||
|
||
## [0.5.0] - 2024-01-01 | ||
- Add support for `SetA = Interactify { _1.a = 'a' }`, lambda and block class creation syntax | ||
- Add support for organizing `organize A.organizing(B, C, D), E, F` contract syntax | ||
- make definition errors raise optionally | ||
- raise an error with unexpected keys in Interactify.if clause | ||
- propagate caller_info through chains | ||
## [0.1.0-alpha.1] - 2023-12-16 | ||
- Initial release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,25 @@ | ||
# frozen_string_literal: true | ||
|
||
require "simplecov" | ||
require "simplecov-json" | ||
if ENV["COVERAGE"] | ||
require "simplecov" | ||
require "simplecov-json" | ||
|
||
SimpleCov.formatters = SimpleCov::Formatter::MultiFormatter.new([ | ||
SimpleCov::Formatter::HTMLFormatter, | ||
SimpleCov::Formatter::JSONFormatter | ||
]) | ||
SimpleCov.formatters = SimpleCov::Formatter::MultiFormatter.new([ | ||
SimpleCov::Formatter::HTMLFormatter, | ||
SimpleCov::Formatter::JSONFormatter | ||
]) | ||
|
||
SimpleCov.start do | ||
add_filter "/spec/" | ||
add_filter(/_spec\.rb$/) # This line excludes all files ending with _spec.rb | ||
SimpleCov.start do | ||
add_filter "/spec/" | ||
add_filter(/_spec\.rb$/) # This line excludes all files ending with _spec.rb | ||
|
||
add_group "Sidekiq jobs" do |src_file| | ||
src_file.project_filename =~ %r{lib/interactify/async} && src_file.filename !~ /_spec\.rb/ | ||
end | ||
add_group "Sidekiq jobs" do |src_file| | ||
src_file.project_filename =~ %r{lib/interactify/async} && src_file.filename !~ /_spec\.rb/ | ||
end | ||
|
||
add_group "Wiring", "lib/interactify/wiring" | ||
add_group "RSpec matchers", "lib/interactify/rspec_matchers" | ||
add_group "Wiring", "lib/interactify/wiring" | ||
add_group "RSpec matchers", "lib/interactify/rspec_matchers" | ||
|
||
coverage_dir "coverage/#{ENV.fetch('RUBY_VERSION', nil)}-#{ENV.fetch('APPRAISAL', nil)}" | ||
coverage_dir "coverage/#{ENV.fetch('RUBY_VERSION', nil)}-#{ENV.fetch('APPRAISAL', nil)}" | ||
end | ||
end |