xcprofiler 0.3.0 → 0.3.1
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 +4 -4
- data/README.md +1 -1
- data/lib/xcprofiler.rb +1 -1
- data/lib/xcprofiler/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d67ad710c1c04bccfadc8ffec3d9d3df22e99f67
|
4
|
+
data.tar.gz: 32a9b556fd0aaa7a97ca0a7e86ebb0cb1a2a5840
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e3eb2e513518afbb823d3e45487bfad6aad6286b4f679dc9dc75c02697fd88a790fc2fd3f99df56975614898f1de9075dc7ce56ea3b4a03129af74d5a10de67f
|
7
|
+
data.tar.gz: 18c7654920d26853b2e84f556f8eba8360579eea4b7bdfd02f1878a4849dd7c915dd73cc9564f8c43cd80457ebc317c2a1d5f0c8b6a4fd905d1f67dcc6c92672
|
data/README.md
CHANGED
@@ -74,7 +74,7 @@ Sample output is here
|
|
74
74
|
|--threshold||Threshold of time to display (ms)|
|
75
75
|
|--show-invalids||Show invalid location results|
|
76
76
|
|--order|-o|Sort order (default,time,file)|
|
77
|
-
|--
|
77
|
+
|--derived-data-path||Root path of DerivedData directory|
|
78
78
|
|
79
79
|
## Use custom reporters
|
80
80
|
|
data/lib/xcprofiler.rb
CHANGED
@@ -24,7 +24,7 @@ module Xcprofiler
|
|
24
24
|
opts.on("-o [ORDER]", [:default, :time, :file], "Sort order") { |v| options.order = v }
|
25
25
|
opts.on("-l", "--limit [LIMIT]", Integer, "Limit for display") { |v| options.limit = v }
|
26
26
|
opts.on("--threshold [THRESHOLD]", Integer, "Threshold of time to display(ms)") { |v| options.threshold = v }
|
27
|
-
opts.on("--
|
27
|
+
opts.on("--derived-data-path", String, "Root path of DerivedData") { |v| options.derived_data_path = v }
|
28
28
|
opts.on_tail("-h", "--help", "Show this message") do
|
29
29
|
puts opts
|
30
30
|
exit
|
data/lib/xcprofiler/version.rb
CHANGED