flay 2.13.2 → 2.13.3

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: de2d236dadc0340897219bba93297f0075b425a8ed67bf942ec858652622c188
4
- data.tar.gz: 0647f0f3e5f11b90ebd3487c0b8a0fcd90ebfc0251596525f7c06623ce8ab045
3
+ metadata.gz: f398ea8e7f796a1871faedb32dbee7d7377d30abcc91edd075f2015a6be95c74
4
+ data.tar.gz: cdb49c908285be2c5c40118a33e7d0227e4a32a4b31736b374aaf31a43e58ac6
5
5
  SHA512:
6
- metadata.gz: '0083c27a6b5861262235ae4199cdf85a60c2851d939927fafad7a77714ae660a5a38b783403273dea51b59579438eab41bb95239a48e73587ea2cfb84746b99f'
7
- data.tar.gz: 8c7d1e26acc0f02751930d56de8f8972a849b750dcefbea11cfdd873ad1bc7f2f9338bfe1d6e1d487fcd00ed7f7dc6e4b557555fa430777b3e7ceda7c4b70da6
6
+ metadata.gz: 9c7f5b54202e563702d21ee8006d24124dd7810bb3518ae307a1eba17966a042864af2c0b772df9deab11517a8a6268159e5503d6fe70845722ef3544b7b84a9
7
+ data.tar.gz: 301d1e56ecfd1c12e8d41e826e56c44899598712aec55daac4ba55f74df547e5421250c3ea8dace955edaeacacd0a513c4a3e888f83aa47fddcfe340fb49c9b2
checksums.yaml.gz.sig CHANGED
Binary file
data/History.rdoc CHANGED
@@ -1,3 +1,10 @@
1
+ === 2.13.3 / 2024-05-21
2
+
3
+ * 2 bug fixes:
4
+
5
+ * Add secondary sort of score & files on output. (njhammond)
6
+ * Sort input files to make tracking progress easier.
7
+
1
8
  === 2.13.2 / 2024-02-05
2
9
 
3
10
  * 1 bug fix:
data/lib/flay.rb CHANGED
@@ -8,7 +8,7 @@ require "timeout"
8
8
  require "zlib"
9
9
 
10
10
  class Flay
11
- VERSION = "2.13.2" # :nodoc:
11
+ VERSION = "2.13.3" # :nodoc:
12
12
 
13
13
  class Item < Struct.new(:structural_hash, :name, :bonus, :mass, :locations)
14
14
  alias identical? bonus
@@ -26,7 +26,7 @@ class Flay
26
26
  files = expander.filter_files expander.process, DEFAULT_IGNORE
27
27
 
28
28
  flay = Flay.new Flay.parse_options args
29
- flay.process(*files)
29
+ flay.process(*files.sort)
30
30
  flay
31
31
  end
32
32
 
@@ -484,7 +484,7 @@ class Flay
484
484
  if option[:summary] then
485
485
  io.puts
486
486
 
487
- self.summary.sort_by { |_,v| -v }.each do |file, score|
487
+ self.summary.sort_by { |f,v| [-v, f] }.each do |file, score|
488
488
  io.puts "%8.2f: %s" % [score, file]
489
489
  end
490
490
 
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: flay
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.13.2
4
+ version: 2.13.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan Davis
@@ -29,7 +29,7 @@ cert_chain:
29
29
  S7043fq9EbQdBr2AXdj92+CDwuTfHI6/Hj5FVBDULufrJaan4xUgL70Hvc6pTTeW
30
30
  deKfBjgVAq7EYHu1AczzlUly
31
31
  -----END CERTIFICATE-----
32
- date: 2024-02-05 00:00:00.000000000 Z
32
+ date: 2024-05-22 00:00:00.000000000 Z
33
33
  dependencies:
34
34
  - !ruby/object:Gem::Dependency
35
35
  name: sexp_processor
metadata.gz.sig CHANGED
Binary file