This repository was archived by the owner on Jun 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtransformjson.rb
126 lines (102 loc) · 3.61 KB
/
transformjson.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
=begin
-------------------------------------------------------------------------------
This is free and unencumbered software released into the public domain.
Anyone is free to copy, modify, publish, use, compile, sell, or
distribute this software, either in source code form or as a compiled
binary, for any purpose, commercial or non-commercial, and by any
means.
In jurisdictions that recognize copyright laws, the author or authors
of this software dedicate any and all copyright interest in the
software to the public domain. We make this dedication for the benefit
of the public at large and to the detriment of our heirs and
successors. We intend this dedication to be an overt act of
relinquishment in perpetuity of all present and future rights to this
software under copyright law.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
For more information, please refer to <https://unlicense.org>
-------------------------------------------------------------------------------
This script transforms JSON files by inserting spaces at possible places. This
script is mainly used to make generated JSON files more human readable or
removing all unnecessary spaces to reduce the total file size.
# Additional Options
- `--indent=AMOUNT` --- indent level by this amount of spaces (default: 2
spaces)
- `--after-colon=AMOUNT` --- amount of spaces inserted after each colon (`:`)
(default: 1 space)
- `--before-colon=AMOUNT` --- amount of spaces inserted after each colon
(`:`) (default: none)
- `--array-indent=AMOUNT` --- amount of newlines used to indent arrays
(default: 1 newline)
- `--object-indent=AMOUNT` --- amount of newlines used to indent objects
(default: 1 newline)
Leaving all options will generate human readable format by default.
# Examples
This script is usually put in the far end of pre scripts. Transform into
minimum file size.
```toml
[scripts]
# ...
pre = [
# ...
{
run = "transformjson.rb",
with = "ruby",
args = [
"--indent=0",
"--before-colon=0",
"--after-colon=0",
"--array-indent=0",
"--object-indent=0",
]
}
]
```
-------------------------------------------------------------------------------
=end
require 'json'
require 'optparse'
require 'pathname'
BP = Pathname.new(ENV['ALLAY_BP_PATH'])
RP = Pathname.new(ENV['ALLAY_RP_PATH'])
SP = Pathname.new(ENV['ALLAY_SP_PATH'])
WT = Pathname.new(ENV['ALLAY_WT_PATH'])
options = {
:indent => " " * 2,
:space => " ",
:space_before => "",
:array_nl => "\n",
:object_nl => "\n",
}
OptionParser.new do |opts|
opts.on "--indent=AMOUNT" do |a|
options[:indent] = " " * Integer(a)
end
opts.on "--after-colon=AMOUNT" do |a|
options[:space] = " " * Integer(a)
end
opts.on "--before-colon=AMOUNT" do |a|
options[:space_before] = " " * Integer(a)
end
opts.on "--array-indent=AMOUNT" do |a|
options[:array_nl] = "\n" * Integer(a)
end
opts.on "--object-indent=AMOUNT" do |a|
options[:object_nl] = "\n" * Integer(a)
end
end.parse!
[BP, RP, SP, WT].each do |path|
path.glob "**/*.json" do |json_file|
next if json_file.directory?
json_data = JSON.load_file json_file
transformed = JSON.generate(json_data, options)
json_file.open('w') do |f|
json_file.write(transformed)
end
end
end