dorian-sort-yaml 0.2.0 → 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: c0eb22995aee743070ed7cf87ffb82a950b0b43d103ef58b868ba7b51d51fcea
4
- data.tar.gz: 6f937776f666c0c816469e01d05b8a60f1e28fc9e2cf7301855fd4cfcbe5c707
3
+ metadata.gz: 829181992a0373bdadff5c9bd77d2d227ff5223bebe2fa95725f3c331c5960f4
4
+ data.tar.gz: 3eaad49286c72ecf5fb1788bcd07cbb41c355e1aa626f5b033f012576e24c4e1
5
5
  SHA512:
6
- metadata.gz: 00c7e0d660544b423a3ba5447965346065b76c74984920f2a9f6f89861e07556c5f5e8d0d0771faf346d508a7d36784c5059e7ab1fe9c93e897f4bc44c2fd512
7
- data.tar.gz: 5e5110eaa5934677acdfab2f0ee7b0a48aef2c19e46f0bb8dca66b9715669e5f224fed39f1ba0802deabce247aec36f3b76dc4e8b58194211da21511593144c8
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,19 +13,20 @@ 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|
25
28
  content = File.exist?(input) ? File.read(input) : input
26
- yaml = sort_yaml(YAML.safe_load(File.read(filepath))).to_yaml
29
+ yaml = sort_yaml(YAML.safe_load(content)).to_yaml
27
30
  File.exist?(input) ? File.write(input, yaml) : puts(yaml)
28
31
  end
29
32
  end
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.0
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-19 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