fcom 0.5.0 → 0.5.1

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: 76006d9745d812f88cb460c6817a1a3f310e1fb90f9f5f1374f7cd49537756ba
4
- data.tar.gz: 1ffba8aad35e878b5771641cfa0a605c45b4cf08c7b4c0198f0aef4cf1a01b7a
3
+ metadata.gz: dd9dde5fd27d374da14abfecf2d04459fdc502e66e832095983f15b2141f62cf
4
+ data.tar.gz: 84464b0b3ace057b1f8e52d60d2c600b12fa79e00e8c41155ad1f900b2079697
5
5
  SHA512:
6
- metadata.gz: 61515990022d72f64cb504fc77dd3782171d971c7168702cec540dbfd82f72e3e6d3a7594e8aee2a775291c41e37c171438b91cd9984ec8f26331a187365cf51
7
- data.tar.gz: 3725d0d63beb578cf593e08afeb006754c2137262c729501a6400a8667cd75af63fdbab35696020ffdc62ca7c9e47276a01d8cedff484994e0b204b952bf82d9
6
+ metadata.gz: 0f16f98b7e4f5f3af16683762915984a6615a3f06ac5a8eed9d4a7ecf594664bc2a9fee129b9f314bc72c3f016b7e477adbfec2af0359e895dc6cf44f8e40c81
7
+ data.tar.gz: 5f37a2e5a76ce2372665357c6bc4f1344a2b86cebe9cfba408c3164d36e78f25bb8cdc73b06852259a84d02abcaf827ec822b895faedc2ba0dce637a873e7403
data/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## v0.5.1 (2023-07-22)
2
+ ### Fixed
3
+ - Require and use Rainbow refinement in exe/fcom
4
+
5
+ ### Internal
6
+ - Update `release` binstub for `runger_release_assistant` gem
7
+
1
8
  ## v0.5.0 (2023-06-20)
2
9
  - Switch from `colorize` to `rainbow` for colored terminal output
3
10
 
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- fcom (0.5.0)
4
+ fcom (0.5.1)
5
5
  activesupport (>= 6, < 8)
6
6
  memo_wise (>= 1.7, < 2)
7
7
  rainbow (>= 3.0, < 4)
@@ -10,7 +10,7 @@ PATH
10
10
  GEM
11
11
  remote: https://rubygems.org/
12
12
  specs:
13
- activesupport (7.0.5)
13
+ activesupport (7.0.6)
14
14
  concurrent-ruby (~> 1.0, >= 1.0.2)
15
15
  i18n (>= 1.6, < 2)
16
16
  minitest (>= 5.1)
@@ -23,6 +23,7 @@ GEM
23
23
  i18n (1.14.1)
24
24
  concurrent-ruby (~> 1.0)
25
25
  json (2.6.3)
26
+ language_server-protocol (3.17.0.3)
26
27
  memo_wise (1.7.0)
27
28
  method_source (1.0.0)
28
29
  minitest (5.18.1)
@@ -36,7 +37,7 @@ GEM
36
37
  pry-byebug (3.10.1)
37
38
  byebug (~> 11.0)
38
39
  pry (>= 0.13, < 0.15)
39
- racc (1.7.0)
40
+ racc (1.7.1)
40
41
  rainbow (3.1.1)
41
42
  rake (13.0.6)
42
43
  regexp_parser (2.8.1)
@@ -54,8 +55,9 @@ GEM
54
55
  diff-lcs (>= 1.2.0, < 2.0)
55
56
  rspec-support (~> 3.12.0)
56
57
  rspec-support (3.12.0)
57
- rubocop (1.52.1)
58
+ rubocop (1.54.2)
58
59
  json (~> 2.3)
60
+ language_server-protocol (>= 3.17.0)
59
61
  parallel (~> 1.10)
60
62
  parser (>= 3.2.2.3)
61
63
  rainbow (>= 2.2.2, < 4.0)
@@ -68,7 +70,7 @@ GEM
68
70
  parser (>= 3.2.1.0)
69
71
  rubocop-capybara (2.18.0)
70
72
  rubocop (~> 1.41)
71
- rubocop-factory_bot (2.22.0)
73
+ rubocop-factory_bot (2.23.1)
72
74
  rubocop (~> 1.33)
73
75
  rubocop-performance (1.18.0)
74
76
  rubocop (>= 1.7.0, < 2.0)
@@ -85,7 +87,7 @@ GEM
85
87
  memo_wise (>= 1.7, < 2)
86
88
  rainbow (>= 3.0, < 4)
87
89
  slop (~> 4.8)
88
- runger_style (0.3.0)
90
+ runger_style (0.4.0)
89
91
  rubocop (>= 1.38.0, < 2)
90
92
  slop (4.10.1)
91
93
  tzinfo (2.0.6)
data/bin/release CHANGED
@@ -8,8 +8,7 @@
8
8
  # this file is here to facilitate running it.
9
9
  #
10
10
 
11
- require 'pathname'
12
- ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', Pathname.new(__FILE__).realpath)
11
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__)
13
12
 
14
13
  bundle_binstub = File.expand_path('bundle', __dir__)
15
14
 
@@ -25,4 +24,4 @@ end
25
24
  require 'rubygems'
26
25
  require 'bundler/setup'
27
26
 
28
- load Gem.bin_path('release_assistant', 'release')
27
+ load Gem.bin_path('runger_release_assistant', 'release')
data/exe/fcom CHANGED
@@ -2,9 +2,12 @@
2
2
 
3
3
  # frozen_string_literal: true
4
4
 
5
+ require 'rainbow/refinement'
5
6
  require 'slop'
6
7
  require_relative '../lib/fcom.rb'
7
8
 
9
+ using Rainbow
10
+
8
11
  opts =
9
12
  Slop.parse do |o|
10
13
  o.banner = <<~BANNER
data/lib/fcom/querier.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require_relative './options_helpers.rb'
3
+ require_relative 'options_helpers.rb'
4
4
 
5
5
  # This class executes a system command to retrieve the git history, which is passed through `rg`
6
6
  # (ripgrep), and then ultimately is fed back to `fcom` for parsing.
data/lib/fcom/version.rb CHANGED
@@ -2,6 +2,6 @@
2
2
 
3
3
  # rubocop:disable Style/StaticClass
4
4
  class Fcom
5
- VERSION = '0.5.0'
5
+ VERSION = '0.5.1'
6
6
  end
7
7
  # rubocop:enable Style/StaticClass
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fcom
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Runger
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-06-20 00:00:00.000000000 Z
11
+ date: 2023-07-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport