Skip to content

Commit

Permalink
Merge pull request #42 from solid-process/solid-result
Browse files Browse the repository at this point in the history
Rebrand the gem from `bcdd-result` to `Solid::Result`
  • Loading branch information
serradura authored Apr 14, 2024
2 parents bff8de1 + e5a2b23 commit 09186ac
Show file tree
Hide file tree
Showing 319 changed files with 3,223 additions and 3,223 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ jobs:
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run BCDD::Result.configuration test (Minitest)
- name: Run Solid::Result.configuration test (Minitest)
run: bundle exec rake test_configuration TEST_CONFIG_FREEZING=true

- name: Run BCDD::Result.event_logs test (Minitest)
run: bundle exec rake test_event_logs_duration BCDD_RESULT_TEST_EVENT_LOGS_DURATION=true
- name: Run Solid::Result.event_logs test (Minitest)
run: bundle exec rake test_event_logs_duration Solid_RESULT_TEST_EVENT_LOGS_DURATION=true

- name: Run tests (Minitest)
run: bundle exec rake test
Expand Down
12 changes: 6 additions & 6 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ AllCops:

Lint/RescueException:
Exclude:
- lib/bcdd/result/event_logs/tracking/enabled.rb
- lib/solid/result/event_logs/tracking/enabled.rb

Layout/LineLength:
Max: 120
Expand All @@ -34,7 +34,7 @@ Lint/UnderscorePrefixedVariableName:

Lint/UnusedMethodArgument:
Exclude:
- lib/bcdd/result/event_logs/listener.rb
- lib/solid/result/event_logs/listener.rb

Style/AccessModifierDeclarations:
Enabled: false
Expand Down Expand Up @@ -68,17 +68,17 @@ Naming/VariableName:

Metrics/BlockLength:
Exclude:
- bcdd-result.gemspec
- solid-result.gemspec
- test/**/*.rb

Metrics/ClassLength:
Exclude:
- lib/bcdd/result/_self.rb
- lib/solid/result/_self.rb
- test/**/*.rb

Metrics/AbcSize:
Exclude:
- lib/bcdd/result/event_logs/tracking/enabled.rb
- lib/solid/result/event_logs/tracking/enabled.rb

Minitest/MultipleAssertions:
Enabled: false
Expand All @@ -95,4 +95,4 @@ Minitest/AssertWithExpectedArgument:

Naming/FileName:
Exclude:
- lib/bcdd-result.rb
- lib/solid-result.rb
30 changes: 20 additions & 10 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,41 +1,43 @@
- [\[Unreleased\]](#unreleased)
- [2.0.0 - 2024-04-13](#200---2024-04-13)
- [Changed](#changed)
- [1.1.0 - 2024-03-25](#110---2024-03-25)
- [Added](#added)
- [1.0.0 - 2024-03-16](#100---2024-03-16)
- [Added](#added-1)
- [Changed](#changed)
- [Changed](#changed-1)
- [\[0.13.0\] - 2024-02-01](#0130---2024-02-01)
- [Added](#added-2)
- [Changed](#changed-1)
- [Changed](#changed-2)
- [\[0.12.0\] - 2024-01-07](#0120---2024-01-07)
- [Added](#added-3)
- [Changed](#changed-2)
- [Changed](#changed-3)
- [\[0.11.0\] - 2024-01-02](#0110---2024-01-02)
- [Added](#added-4)
- [Changed](#changed-3)
- [Changed](#changed-4)
- [\[0.10.0\] - 2023-12-31](#0100---2023-12-31)
- [Added](#added-5)
- [\[0.9.1\] - 2023-12-12](#091---2023-12-12)
- [Changed](#changed-4)
- [Changed](#changed-5)
- [Fixed](#fixed)
- [\[0.9.0\] - 2023-12-12](#090---2023-12-12)
- [Added](#added-6)
- [Changed](#changed-5)
- [Changed](#changed-6)
- [\[0.8.0\] - 2023-12-11](#080---2023-12-11)
- [Added](#added-7)
- [Changed](#changed-6)
- [Changed](#changed-7)
- [Removed](#removed)
- [\[0.7.0\] - 2023-10-27](#070---2023-10-27)
- [Added](#added-8)
- [Changed](#changed-7)
- [Changed](#changed-8)
- [\[0.6.0\] - 2023-10-11](#060---2023-10-11)
- [Added](#added-9)
- [Changed](#changed-8)
- [Changed](#changed-9)
- [\[0.5.0\] - 2023-10-09](#050---2023-10-09)
- [Added](#added-10)
- [\[0.4.0\] - 2023-09-28](#040---2023-09-28)
- [Added](#added-11)
- [Changed](#changed-9)
- [Changed](#changed-10)
- [Removed](#removed-1)
- [\[0.3.0\] - 2023-09-26](#030---2023-09-26)
- [Added](#added-12)
Expand All @@ -47,6 +49,14 @@

## [Unreleased]

## 2.0.0 - 2024-04-13

### Changed

- **(BREAKING)** Rebrand the gem from `bcdd-result` to `Solid::Result`.
- `Solid::Result` replaces `BCDD::Result`.
- `Solid::Output` replaces `BCDD::Context`.

## 1.1.0 - 2024-03-25

### Added
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

source 'https://rubygems.org'

# Specify your gem's dependencies in bcdd-result.gemspec
# Specify your gem's dependencies in solid-result.gemspec
gemspec

gem 'rake', '~> 13.1'
Expand Down
Loading

0 comments on commit 09186ac

Please sign in to comment.