xsort 1.3.0 → 1.4.0
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 +5 -5
- data/README.md +1 -1
- data/bin/xsort +5 -4
- data/lib/xsort/version.rb +1 -1
- metadata +3 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: af304a900d49bb01faaac087abcdb4d93f0fcc8f35cf28d8de771d40eb2bce4e
|
|
4
|
+
data.tar.gz: a0b456afd627c2c288b01a314fd5da5f5b1335a84be8de9c5e8a130f4b684440
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 91d8702d22051ffeb9f821d6b84b358411d3a3081545f3b7d7d0a336d35b3781384e53cfdc74091d19580bfea2ec61a328b1645b57e87db21d11317fb6c66e87
|
|
7
|
+
data.tar.gz: 92c613e685ebdde98694804f5ec485810a6e38f1f2108fbcc11bcede9a3df43278df804663b71bad87b90c3c2c283fe799e232076aea3f071de8f6f4d164402e
|
data/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<img src="https://github.com/keisukeYamagishi/xsort/blob/master/doc/xsort.png" width="40%" height="40%">
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
[](https://twitter.com/brew_0_O)
|
|
7
7
|
[](https://www.ruby-lang.org/ja/)
|
|
8
8
|
[](https://github.com/keisukeYamagishi/xsort/blob/master/LICENSE)
|
|
9
9
|
|
data/bin/xsort
CHANGED
|
@@ -15,15 +15,16 @@ require "xsort"
|
|
|
15
15
|
|
|
16
16
|
def execute(option)
|
|
17
17
|
if option.options.length == 0 && option.path.length == 0
|
|
18
|
-
puts "Usage: xsort [-v] [<path>] [-o] "
|
|
19
|
-
puts "These are common detect commands used in various situations:"
|
|
20
18
|
puts "xsort version: #{Xsort::VERSION}"
|
|
19
|
+
puts "xsort sort an Xcode file tree"
|
|
20
|
+
puts "Usage: xsort [-v] [<path>] [-o]"
|
|
21
|
+
puts "The following options can be used with Xsort."
|
|
21
22
|
puts "option:"
|
|
22
23
|
puts "-v: display xsort version number"
|
|
23
24
|
puts "-o: output result"
|
|
24
|
-
puts "-r: Just extracting output.pbxproj will not write to pbxproj of Xcode project"
|
|
25
|
+
puts "-r: Just only extracting output.pbxproj will not write to pbxproj of Xcode project so safty"
|
|
25
26
|
puts "\n"
|
|
26
|
-
puts "
|
|
27
|
+
puts "King Regards!"
|
|
27
28
|
elsif option.options.length == 1 && option.options[0] == "-v"
|
|
28
29
|
puts "Version: #{Xsort::VERSION}"
|
|
29
30
|
elsif option.path.index("project.pbxproj")
|
data/lib/xsort/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: xsort
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.4.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- keisuke
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-02-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -98,8 +98,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
98
98
|
- !ruby/object:Gem::Version
|
|
99
99
|
version: '0'
|
|
100
100
|
requirements: []
|
|
101
|
-
|
|
102
|
-
rubygems_version: 2.5.2.3
|
|
101
|
+
rubygems_version: 3.0.3
|
|
103
102
|
signing_key:
|
|
104
103
|
specification_version: 4
|
|
105
104
|
summary: Sort by file.
|