bake-modernize 0.7.0 → 0.8.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6af24bbd9f515114c69e84caad439377d67ec1b465ec1555a0caaef48ef59127
4
- data.tar.gz: '09823ea17fbd06a7d60793d2b6c9683faa65c9914dae0d206a9a069c353376cf'
3
+ metadata.gz: 9a7da2f3243b5c36b0eb365a98e350868b8834db66f71b549cfc14a06103691c
4
+ data.tar.gz: 976f7c5d8fc9198b479f80d210efce7c78664bca1a1dab6c4825c660229c0ffb
5
5
  SHA512:
6
- metadata.gz: ae45e3b0a233b2c24936711458fb2e38092e1e70886bd78a135537860d560d7291328276513e9e441f575461c13d291d6d39d7f26803b83b0ed4b7ef06b7821b
7
- data.tar.gz: cfd2243294ba67cf121448366a7f85d0bc7799fc415bdeb31a8d6e15195145aabbe97ec1f0364cf11579b4512e3f4288af4ba087b6ad308df3deaa3a70509a0b
6
+ metadata.gz: 23b5d5a149758808e2c5802c8bb5ac9dd63afaf769b1a5257324243f2c56f96b46e0bbd34ccb86a47b87071855e4f1d9bee12fb7e33d98de04551c95cde819d7
7
+ data.tar.gz: fdae79916724bc2d7f4ff8df55f6ebd7689dca2fbb0a3c94a8597a6302b1bfd9cd24f6a9a6910b9cbc4039287b62f4e05129ae8f5eded297cd4fadd70d30accd
checksums.yaml.gz.sig CHANGED
Binary file
@@ -25,6 +25,8 @@ def update(path: default_gemspec_path, output: $stdout)
25
25
  spec.metadata["funding_uri"] ||= detect_funding_uri(spec)
26
26
  spec.metadata["documentation_uri"] ||= detect_documentation_uri(spec)
27
27
 
28
+ spec.authors = sorted_authors(spec)
29
+
28
30
  spec.metadata.delete_if{|_, value| value.nil?}
29
31
 
30
32
  output.puts "# frozen_string_literal: true"
@@ -188,3 +190,22 @@ def detect_documentation_uri(spec)
188
190
  end
189
191
  end
190
192
  end
193
+
194
+ def sorted_authors(spec)
195
+ input, output = IO.pipe
196
+
197
+ pid = Process.spawn("git", "log", "--format=%aN", out: output)
198
+ output.close
199
+
200
+ authors = Hash.new{|h,k| h[k] = 0}
201
+
202
+ input.each_line do |author|
203
+ author = author.chomp!
204
+ authors[author] += 1
205
+ end
206
+
207
+ Process.wait(pid)
208
+ input.close
209
+
210
+ return authors.keys
211
+ end
@@ -20,6 +20,6 @@
20
20
 
21
21
  module Bake
22
22
  module Modernize
23
- VERSION = "0.7.0"
23
+ VERSION = "0.8.0"
24
24
  end
25
25
  end
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,10 +1,11 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bake-modernize
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Samuel Williams
8
+ - Olle Jonsson
8
9
  autorequire:
9
10
  bindir: bin
10
11
  cert_chain:
@@ -36,7 +37,7 @@ cert_chain:
36
37
  RAOsIl+HOBTb252nx1kIRN5hqQx272AJCbCjKx8egcUQKffFVVCI0nye09v5CK+a
37
38
  HiLJ8VOFx6w=
38
39
  -----END CERTIFICATE-----
39
- date: 2021-11-19 00:00:00.000000000 Z
40
+ date: 2022-02-18 00:00:00.000000000 Z
40
41
  dependencies:
41
42
  - !ruby/object:Gem::Dependency
42
43
  name: async-http
@@ -161,7 +162,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
161
162
  - !ruby/object:Gem::Version
162
163
  version: '0'
163
164
  requirements: []
164
- rubygems_version: 3.1.6
165
+ rubygems_version: 3.2.32
165
166
  signing_key:
166
167
  specification_version: 4
167
168
  summary: Automatically modernize parts of your project/gem.
metadata.gz.sig CHANGED
Binary file