appear 1.0.3 → 1.1.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 +4 -4
- data/CHANGELOG.md +11 -1
- data/README.md +13 -6
- data/lib/appear/command.rb +34 -8
- data/lib/appear/constants.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2195b39f50d42701282eccd5bcca70318d9522d6
|
4
|
+
data.tar.gz: c26570e72fae4f929d5c715510d64f671c2dc8ab
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dd03024e868fdeb5a6d19da9d07e7c4387fab5002ebfd9b7a1ff884e4620750c6cbf67cd9273e7c18b208c63914e7b8c93efeccbae52b7552827de880fc4f5a3
|
7
|
+
data.tar.gz: 0d4d9a852ed5477fd9cac3b537ec26740292b3c31220ccdc95248995c98ec5bb833921c00edf086da9bf1f668ed5fad6015f6d26279b23dcf4beb0db5da4cd3b
|
data/CHANGELOG.md
CHANGED
@@ -1,8 +1,18 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 1.1.0
|
4
|
+
|
5
|
+
- You no longer have to pass a PID. If no PID is given, `appear` will default
|
6
|
+
to the current process.
|
7
|
+
- by default, `appear` will print no output. Pass -v or --verbose for timing
|
8
|
+
and logging information. It previously printed the PID and timing
|
9
|
+
information by default, and then more extensive logs with --verbose.
|
10
|
+
- improved help output
|
11
|
+
- added --version command line option
|
12
|
+
|
3
13
|
## 1.0.3
|
4
14
|
|
5
|
-
remove some binding.pry that really shouldn't have been there
|
15
|
+
- remove some binding.pry that really shouldn't have been there
|
6
16
|
|
7
17
|
## 1.0.2
|
8
18
|
|
data/README.md
CHANGED
@@ -23,16 +23,23 @@ currently only supports macOS.
|
|
23
23
|
## usage
|
24
24
|
|
25
25
|
```
|
26
|
-
Usage: appear [
|
26
|
+
Usage: appear [OPTION]... [PID]
|
27
|
+
Appear PID in your user interface.
|
28
|
+
Appear will use the current process PID by default.
|
29
|
+
|
30
|
+
Options:
|
27
31
|
-l, --log-file [PATH] log to a file
|
28
32
|
-v, --verbose tell many tales about how the appear process is going
|
29
|
-
--record-runs record every executed command as a JSON file
|
33
|
+
--record-runs record every executed command as a JSON file in the appear spec folder
|
34
|
+
--version show version information, then exit
|
35
|
+
-?, -h, --help show this help, then exit
|
36
|
+
|
37
|
+
Exit status:
|
38
|
+
0 if successfully revealed something,
|
39
|
+
1 if an exception occured,
|
40
|
+
2 if there were no errors, but nothing was revealed.
|
30
41
|
```
|
31
42
|
|
32
|
-
Appear will exit 0 if it managed to reveal something.
|
33
|
-
Appear will exit 1 if an exception occured.
|
34
|
-
Appear will exit 2 if there were no errors, but nothing was revealed.
|
35
|
-
|
36
43
|
## supported terminal emulators
|
37
44
|
|
38
45
|
macOS:
|
data/lib/appear/command.rb
CHANGED
@@ -15,7 +15,12 @@ module Appear
|
|
15
15
|
|
16
16
|
def option_parser
|
17
17
|
@option_parser ||= OptionParser.new do |o|
|
18
|
-
o.banner =
|
18
|
+
o.banner = 'Usage: appear [OPTION]... [PID]'
|
19
|
+
o.separator 'Appear PID in your user interface.'
|
20
|
+
o.separator 'Appear will use the current process PID by default.'
|
21
|
+
o.separator ''
|
22
|
+
o.separator 'Options:'
|
23
|
+
|
19
24
|
o.on('-l', '--log-file [PATH]', 'log to a file') do |file|
|
20
25
|
@config.log_file = file
|
21
26
|
end
|
@@ -24,26 +29,47 @@ module Appear
|
|
24
29
|
@config.silent = false if flag
|
25
30
|
end
|
26
31
|
|
27
|
-
o.on('--record-runs', 'record every executed command as a JSON file') do |flag|
|
32
|
+
o.on('--record-runs', 'record every executed command as a JSON file in the appear spec folder') do |flag|
|
28
33
|
@config.record_runs = flag
|
29
34
|
end
|
35
|
+
|
36
|
+
o.on('--version', 'show version information, then exit') do
|
37
|
+
puts "appear #{Appear::VERSION}"
|
38
|
+
puts " author: Jake Teton-Landis"
|
39
|
+
puts " repo: https://github.com/airbnb/appear"
|
40
|
+
exit 2
|
41
|
+
end
|
42
|
+
|
43
|
+
o.on('-?', '-h', '--help', 'show this help, then exit') do
|
44
|
+
puts o
|
45
|
+
exit 2
|
46
|
+
end
|
47
|
+
|
48
|
+
o.separator ''
|
49
|
+
o.separator 'Exit status:'
|
50
|
+
o.separator ' 0 if successfully revealed something,'
|
51
|
+
o.separator ' 1 if an exception occured,'
|
52
|
+
o.separator ' 2 if there were no errors, but nothing was revealed.'
|
30
53
|
end
|
31
54
|
end
|
32
55
|
|
56
|
+
# @param all_args [Array<String>] something like ARGV
|
33
57
|
def execute(all_args)
|
34
|
-
argv = option_parser.parse
|
58
|
+
argv = option_parser.parse(*all_args)
|
59
|
+
|
60
|
+
pid = Integer(argv[0] || Process.pid, 10)
|
35
61
|
|
36
|
-
|
37
|
-
if
|
38
|
-
|
62
|
+
start_message = "STARTING. pid: #{pid}"
|
63
|
+
if argv.empty?
|
64
|
+
start_message += " (current process pid)"
|
39
65
|
end
|
40
66
|
|
41
67
|
start = Time.now
|
42
68
|
revealer = Appear::Instance.new(@config)
|
43
|
-
revealer.
|
69
|
+
revealer.log(start_message)
|
44
70
|
result = revealer.call(pid)
|
45
71
|
finish = Time.now
|
46
|
-
revealer.
|
72
|
+
revealer.log("DONE. total time: #{finish - start} seconds, success: #{result}")
|
47
73
|
|
48
74
|
if result
|
49
75
|
# success! revealed something!
|
data/lib/appear/constants.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: appear
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jake Teton-Landis
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-08-
|
11
|
+
date: 2016-08-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|