ast-merge 2.0.3 → 2.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 87b2cf66d0fbccf11852ffad3a967f7b470473a31e47af2e87fab99e57f54d23
4
- data.tar.gz: 8472ce9175eb6fb14e29bcb4f65775d6557d40206ec5c763800012cf70ff7178
3
+ metadata.gz: 2472ef456d1aa146dc31692f6b3c30aa02d9d2276d3b1be1a170056fe764d58c
4
+ data.tar.gz: 914a71d9f70a4edf27d91525c4c23166e715ac75009f0ee191eccfd1099d905a
5
5
  SHA512:
6
- metadata.gz: 7149ffb09a690608f382f63e9cff91bd85ceb25518b6744cc4617c638fe0acc4bd3a96de17f047c72161a5e4836b615e1721e550e34eee998916ab78b82df380
7
- data.tar.gz: 0b5b63b49be561c75027767dd850a692d31a047e000aa2404cc83df27bc4304a6d047e434e2402ddf1ffaed63a5044ea60f515b80959284b6faa52222da8e7fa
6
+ metadata.gz: 31a80cd7655eb4d6717009b201f5765e8ef699e58d9199355d84e09143df052f201ab906043f62d2606ea227c9ba6703a3bef3c129e2a045402b1aceabe21f56
7
+ data.tar.gz: f2245d51fc9d0209159886d1b8f1917b2d86a185dff2ddd07ba3835f0a4bf2085ca773c3dc4e8396fa9e796139e1c0a37c8ba593cabe78ee76d41b221daa669b
checksums.yaml.gz.sig CHANGED
Binary file
data/CHANGELOG.md CHANGED
@@ -30,6 +30,25 @@ Please file a bug if you notice a violation of semantic versioning.
30
30
 
31
31
  ### Security
32
32
 
33
+ ## [2.0.4] - 2025-12-31
34
+
35
+ - TAG: [v2.0.4][2.0.4t]
36
+ - COVERAGE: 88.61% -- 2903/3276 lines in 53 files
37
+ - BRANCH COVERAGE: 67.90% -- 700/1031 branches in 53 files
38
+ - 98.82% documented
39
+
40
+ ### Added
41
+
42
+ - Many more tests
43
+
44
+ ### Fixed
45
+
46
+ - RSpec shared examples for `Ast::Merge::DebugLogger` now handle Ruby 4.0+ where benchmark is a bundled gem
47
+ - The `#time logs start and completion with timing` test now checks `BENCHMARK_AVAILABLE` constant
48
+ - When benchmark is available: expects full timing output with "Starting:", "Completed:", and `real_ms`
49
+ - When benchmark is unavailable: expects warning message about benchmark gem not being available
50
+ - Fixes CI failures on Ruby 4.0.0 for downstream gems (e.g., bash-merge) using the shared examples
51
+
33
52
  ## [2.0.3] - 2025-12-30
34
53
 
35
54
  - TAG: [v2.0.3][2.0.3t]
@@ -298,7 +317,9 @@ Please file a bug if you notice a violation of semantic versioning.
298
317
 
299
318
  - Initial release
300
319
 
301
- [Unreleased]: https://github.com/kettle-rb/ast-merge/compare/v2.0.3...HEAD
320
+ [Unreleased]: https://github.com/kettle-rb/ast-merge/compare/v2.0.4...HEAD
321
+ [2.0.4]: https://github.com/kettle-rb/ast-merge/compare/v2.0.3...v2.0.4
322
+ [2.0.4t]: https://github.com/kettle-rb/ast-merge/releases/tag/v2.0.4
302
323
  [2.0.3]: https://github.com/kettle-rb/ast-merge/compare/v2.0.2...v2.0.3
303
324
  [2.0.3t]: https://github.com/kettle-rb/ast-merge/releases/tag/v2.0.3
304
325
  [2.0.2]: https://github.com/kettle-rb/ast-merge/compare/v2.0.1...v2.0.2
data/README.md CHANGED
@@ -1032,7 +1032,7 @@ Thanks for RTFM. ☺️
1032
1032
  [📌gitmoji]: https://gitmoji.dev
1033
1033
  [📌gitmoji-img]: https://img.shields.io/badge/gitmoji_commits-%20%F0%9F%98%9C%20%F0%9F%98%8D-34495e.svg?style=flat-square
1034
1034
  [🧮kloc]: https://www.youtube.com/watch?v=dQw4w9WgXcQ
1035
- [🧮kloc-img]: https://img.shields.io/badge/KLOC-3.272-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
1035
+ [🧮kloc-img]: https://img.shields.io/badge/KLOC-3.276-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
1036
1036
  [🔐security]: SECURITY.md
1037
1037
  [🔐security-img]: https://img.shields.io/badge/security-policy-259D6C.svg?style=flat
1038
1038
  [📄copyright-notice-explainer]: https://opensource.stackexchange.com/questions/5778/why-do-licenses-such-as-the-mit-license-specify-a-single-year
@@ -108,9 +108,15 @@ RSpec.shared_examples("Ast::Merge::DebugLogger") do
108
108
 
109
109
  it "#time logs start and completion with timing" do
110
110
  output = capture(:stderr) { described_logger.time("test operation") { 42 } }
111
- expect(output).to(include("Starting: test operation"))
112
- expect(output).to(include("Completed: test operation"))
113
- expect(output).to(match(/real_ms/))
111
+ if Ast::Merge::DebugLogger::BENCHMARK_AVAILABLE
112
+ expect(output).to(include("Starting: test operation"))
113
+ expect(output).to(include("Completed: test operation"))
114
+ expect(output).to(match(/real_ms/))
115
+ else
116
+ expect(output).to(include("WARNING"))
117
+ expect(output).to(include("Benchmark gem not available"))
118
+ expect(output).to(include("test operation"))
119
+ end
114
120
  end
115
121
 
116
122
  it "#time returns the block result" do
@@ -5,7 +5,7 @@ module Ast
5
5
  # Version information for Ast::Merge
6
6
  module Version
7
7
  # Current version of the ast-merge gem
8
- VERSION = "2.0.3"
8
+ VERSION = "2.0.4"
9
9
  end
10
10
  VERSION = Version::VERSION # traditional location
11
11
  end
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ast-merge
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.3
4
+ version: 2.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter H. Boling
@@ -352,10 +352,10 @@ licenses:
352
352
  - MIT
353
353
  metadata:
354
354
  homepage_uri: https://ast-merge.galtzo.com/
355
- source_code_uri: https://github.com/kettle-rb/ast-merge/tree/v2.0.3
356
- changelog_uri: https://github.com/kettle-rb/ast-merge/blob/v2.0.3/CHANGELOG.md
355
+ source_code_uri: https://github.com/kettle-rb/ast-merge/tree/v2.0.4
356
+ changelog_uri: https://github.com/kettle-rb/ast-merge/blob/v2.0.4/CHANGELOG.md
357
357
  bug_tracker_uri: https://github.com/kettle-rb/ast-merge/issues
358
- documentation_uri: https://www.rubydoc.info/gems/ast-merge/2.0.3
358
+ documentation_uri: https://www.rubydoc.info/gems/ast-merge/2.0.4
359
359
  funding_uri: https://github.com/sponsors/pboling
360
360
  wiki_uri: https://github.com/kettle-rb/ast-merge/wiki
361
361
  news_uri: https://www.railsbling.com/tags/ast-merge
metadata.gz.sig CHANGED
Binary file