geordi 11.0.0 → 11.1.0

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: da160c499fc0d788761a5b94f5d4ad3ec1eeed5cd19ba1ca1e57a78edf18f1df
4
- data.tar.gz: 3572d0629e4cdd0960d5e22aa5f63371e41bf95b3a0dccdcadf641630194a692
3
+ metadata.gz: 310a3633bce8944bb4c56987a2d12cf2ed69013ef978e91f48063acba801c634
4
+ data.tar.gz: f5e53286619679e6b5c3f0e2439e5c7589ed7c2e2866c0078b51f056658cc3dd
5
5
  SHA512:
6
- metadata.gz: 67ce62228b1440ba1622495315f0264cc8e4b2c203ca56aa76ab1d945e3948d61651e51369d7b665e91daf6010b5521828aa170c08699467754345a0085e7ce8
7
- data.tar.gz: 1e41183332ac65bf057657beb843e5afa810c1a2608fd42ae7cef56c7f0898776d251a54905aa5591367b39e34fffe15219980470407c09d1ffd969cb959b434
6
+ metadata.gz: 692cd04428cdbc217969425a9c3fcc1ea62f95f0a0692aabec218afdb1b804c1e705a181f387c6ba581c5e3dc25acdb5a0485565571c73d7f33d4521629ce300
7
+ data.tar.gz: 8f9c32e800de8532265c3b302bfd821c0a24295c55bfac166ddb1390a2a0e93fb15e6028d1a63526ec0fc8268b1a617687152d8a72055c75a0546f45fec292c4
data/CHANGELOG.md CHANGED
@@ -9,9 +9,16 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
9
9
 
10
10
  ### Breaking changes
11
11
 
12
+ ## 11.1.0 2024-11-20
13
+
14
+ ### Compatible changes
15
+
16
+ * Skip `yarn install` for other package managers:
17
+ * Before: Check for a `package.json`
18
+ * After: Check for a `yarn.lock`
12
19
 
13
20
 
14
- ## 11.0.0 2024-11-13
21
+ ## 11.0.0 2024-11-13
15
22
 
16
23
  ### Compatible changes
17
24
  * `geordi unit` now supports `parallel_tests`, binstubs and `bundle exec`
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- geordi (11.0.0)
4
+ geordi (11.1.0)
5
5
  thor (~> 1)
6
6
 
7
7
  GEM
@@ -1,7 +1,7 @@
1
1
  desc 'yarn-install', 'Runs yarn install if required', hide: true
2
2
 
3
3
  def yarn_install
4
- if File.exist?('package.json') && !system('yarn check --integrity > /dev/null 2>&1')
4
+ if File.exist?('yarn.lock') && !system('yarn check --integrity > /dev/null 2>&1')
5
5
  Interaction.announce 'Yarn install'
6
6
  Util.run!('yarn install')
7
7
  end
@@ -1,3 +1,3 @@
1
1
  module Geordi
2
- VERSION = '11.0.0'.freeze
2
+ VERSION = '11.1.0'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: geordi
3
3
  version: !ruby/object:Gem::Version
4
- version: 11.0.0
4
+ version: 11.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Henning Koch
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-11-13 00:00:00.000000000 Z
11
+ date: 2024-11-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor
@@ -117,7 +117,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
117
117
  - !ruby/object:Gem::Version
118
118
  version: '0'
119
119
  requirements: []
120
- rubygems_version: 3.2.3
120
+ rubygems_version: 3.4.10
121
121
  signing_key:
122
122
  specification_version: 4
123
123
  summary: Collection of command line tools we use in our daily work with Ruby, Rails