dorian-sort-yaml 0.2.1 → 0.2.2

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: 30228cc27871ce993b8716ef26d6332d72df2bd2f46df221b1856862cf4aba8e
4
- data.tar.gz: d8f6c63e66d9e3a47da7eaec954a3bf508b9d9553267cc2c87733e349804ec54
3
+ metadata.gz: 829181992a0373bdadff5c9bd77d2d227ff5223bebe2fa95725f3c331c5960f4
4
+ data.tar.gz: 3eaad49286c72ecf5fb1788bcd07cbb41c355e1aa626f5b033f012576e24c4e1
5
5
  SHA512:
6
- metadata.gz: ff1d3380502172e79a460cdec69760daeb97bf7a20918c0dd41cda1df42e95e445975e73636f4d13c1b02cbf54ef3d892be722c77122f99f578cdab9779a90da
7
- data.tar.gz: c106803271e8308aed73babd1a66a164c841ebf81bf75a7a90cf25bce19111adcb04f838ebbd8691ff20f01c461987bde9c6c42f9b4951893b3b0cb7f678d875
6
+ metadata.gz: 536e5cd1fb4e79368a13526000743e3f3de2fa64cfb4c49e6cbba676f7f67de6d5c613853e501722c7eeb7d1b745a4a08b75d7e057d921a66785193859ff9fe1
7
+ data.tar.gz: dd5192f93e615322a9d68996722c6a73d116e573165364aa88dfda1104fcc611b2a45a5179d6aae452b235dc83a7002abd70286baa897f57d335433bb87bc54e
data/bin/sort-yaml CHANGED
@@ -1,4 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
2
3
 
3
- require 'dorian/sort-yaml'
4
+ require "dorian/sort-yaml"
4
5
  Dorian::SortYaml.run
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require "yaml"
2
4
 
3
5
  module Dorian
@@ -11,14 +13,15 @@ module Dorian
11
13
 
12
14
  inputs = ARGV
13
15
 
14
- if inputs.size.zero?
15
- inputs = STDIN.each_line.to_a
16
+ if inputs.empty?
17
+ inputs = $stdin.each_line.to_a
16
18
 
17
- if File.exist?(inputs.first.strip)
18
- inputs = inputs.map(&:strip)
19
- else
20
- inputs = [inputs.join]
21
- end
19
+ inputs =
20
+ if File.exist?(inputs.first.strip)
21
+ inputs.map(&:strip)
22
+ else
23
+ [inputs.join]
24
+ end
22
25
  end
23
26
 
24
27
  inputs.each do |input|
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dorian-sort-yaml
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dorian Marié
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-11-21 00:00:00.000000000 Z
11
+ date: 2024-02-08 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: |-
14
14
  Sorts keys of hashes of YAML files
@@ -22,7 +22,7 @@ extra_rdoc_files: []
22
22
  files:
23
23
  - bin/sort-yaml
24
24
  - lib/dorian/sort-yaml.rb
25
- homepage: https://github.com/dorianmariefr/sort-yaml
25
+ homepage: https://github.com/dorianmariecom/sort-yaml
26
26
  licenses:
27
27
  - MIT
28
28
  metadata:
@@ -42,7 +42,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
42
42
  - !ruby/object:Gem::Version
43
43
  version: '0'
44
44
  requirements: []
45
- rubygems_version: 3.2.22
45
+ rubygems_version: 3.5.3
46
46
  signing_key:
47
47
  specification_version: 4
48
48
  summary: Sorts keys of hashes of YAML files