appear 1.0.0 → 1.0.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/appear.gemspec +2 -2
- data/bin/appear +6 -2
- data/bin/pparents +6 -2
- data/lib/appear/constants.rb +1 -1
- data/lib/appear/lsof.rb +0 -1
- data/{bin → scripts}/console +0 -0
- data/{bin → scripts}/setup +0 -0
- metadata +7 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e84f9bba39e0bbd3c73cea9abed61b5bd664a6dd
|
|
4
|
+
data.tar.gz: d9780d1243f8b03a13f64e104fb5f41a810843b1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b64c914801244f75f8dd5924b8253fa92c64b393e41d6d2f38a90c81ae99b55dffb779792bdea00bb6d2c00b60eea73d0959ab96871d6839fbb81dad572cbf4c
|
|
7
|
+
data.tar.gz: 150836dac72f9afe69bb04d8ccf76621f2f1210db9f1bdc9bbd0eb195c61d8d0c4638cdd67c26b1922ae63afba5a4ff45e955488add862900b1255fa2d537aeb
|
data/appear.gemspec
CHANGED
|
@@ -32,8 +32,8 @@ Gem::Specification.new do |spec|
|
|
|
32
32
|
# end
|
|
33
33
|
|
|
34
34
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
35
|
-
spec.bindir = "
|
|
36
|
-
spec.executables = spec.files.grep(%r{^
|
|
35
|
+
spec.bindir = "bin"
|
|
36
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
|
37
37
|
spec.require_paths = ["lib"]
|
|
38
38
|
|
|
39
39
|
spec.add_development_dependency "bundler", "~> 1.10"
|
data/bin/appear
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
#!/usr/bin/env ruby
|
|
2
2
|
require 'pathname'
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
begin
|
|
5
|
+
require 'appear/command'
|
|
6
|
+
rescue LoadError
|
|
7
|
+
$:.unshift(Pathname.new(__FILE__).realpath.dirname.dirname.join('./lib').to_s)
|
|
8
|
+
require 'appear/command'
|
|
9
|
+
end
|
|
5
10
|
|
|
6
|
-
require 'appear/command'
|
|
7
11
|
command = Appear::Command.new.execute(ARGV)
|
data/bin/pparents
CHANGED
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
#!/usr/bin/env ruby
|
|
2
2
|
require 'pathname'
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
begin
|
|
5
|
+
require 'appear'
|
|
6
|
+
rescue LoadError
|
|
7
|
+
$:.unshift(Pathname.new(__FILE__).realpath.dirname.dirname.join('./lib').to_s)
|
|
8
|
+
require 'appear'
|
|
9
|
+
end
|
|
5
10
|
|
|
6
|
-
require 'appear'
|
|
7
11
|
|
|
8
12
|
module Appear::PParents
|
|
9
13
|
def self.main
|
data/lib/appear/constants.rb
CHANGED
data/lib/appear/lsof.rb
CHANGED
data/{bin → scripts}/console
RENAMED
|
File without changes
|
data/{bin → scripts}/setup
RENAMED
|
File without changes
|
metadata
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: appear
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jake Teton-Landis
|
|
8
8
|
autorequire:
|
|
9
|
-
bindir:
|
|
9
|
+
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
date: 2016-08-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
@@ -92,7 +92,9 @@ description: |2
|
|
|
92
92
|
currently only supports macOS.
|
|
93
93
|
email:
|
|
94
94
|
- just.1.jake@gmail.com
|
|
95
|
-
executables:
|
|
95
|
+
executables:
|
|
96
|
+
- appear
|
|
97
|
+
- pparents
|
|
96
98
|
extensions: []
|
|
97
99
|
extra_rdoc_files: []
|
|
98
100
|
files:
|
|
@@ -106,9 +108,7 @@ files:
|
|
|
106
108
|
- Rakefile
|
|
107
109
|
- appear.gemspec
|
|
108
110
|
- bin/appear
|
|
109
|
-
- bin/console
|
|
110
111
|
- bin/pparents
|
|
111
|
-
- bin/setup
|
|
112
112
|
- lib/appear.rb
|
|
113
113
|
- lib/appear/command.rb
|
|
114
114
|
- lib/appear/config.rb
|
|
@@ -124,6 +124,8 @@ files:
|
|
|
124
124
|
- lib/appear/service.rb
|
|
125
125
|
- lib/appear/tmux.rb
|
|
126
126
|
- screenshot.gif
|
|
127
|
+
- scripts/console
|
|
128
|
+
- scripts/setup
|
|
127
129
|
- tools/macOS-helper.js
|
|
128
130
|
homepage: https://github.com/airbnb/appear
|
|
129
131
|
licenses: []
|