appear 1.0.2 → 1.0.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9ae9214254735da9c4c3f4486584662287db0f2c
4
- data.tar.gz: f7feb18dc44164b7b0ad0d9c53b5cbfe8099db47
3
+ metadata.gz: e9681e2caa004fa47ac9de625c11820765c0d989
4
+ data.tar.gz: a8a034aa39551ed9310040e79785b198da7471e9
5
5
  SHA512:
6
- metadata.gz: d9b7030ffe62dd6e71fb737bfb4f442b54007742217d499356bd1d9468c4ef0db91d4c85a52c624ed0e4cfbbf1cf388eff2a16659966187dde47c787595ad2ca
7
- data.tar.gz: ee6c7147c70d61f142f01c0621f2249db5498c5d33b9d274ada31fc8ae962fa48f9f8e40dad3c3b38e7b54641c429c6aacb11cc152c5ab0a2c59f3be2c7df898
6
+ metadata.gz: 3e1c8106d98906c6a873ce0f767c715e3a6501717c8bd149df3688d3ca1c7a4a0275486d2da2d11f177aa846511d6fac6fb696bfdce835c7f98e1aaf2e6c6b80
7
+ data.tar.gz: 664bd25942f049a19902d3a9e34724b6910dd0a01ec3901affe77a7ee8d5b072168ad47f4fc8a38051ccdbda8e9a967317b7ca5a46c2f53aafbe97ebc566d4a7
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.0.3
4
+
5
+ remove some binding.pry that really shouldn't have been there
6
+
3
7
  ## 1.0.2
4
8
 
5
9
  - README improvements: badges, links, contributing
@@ -1,7 +1,7 @@
1
1
  require 'pathname'
2
2
 
3
3
  module Appear
4
- VERSION = '1.0.2'
4
+ VERSION = '1.0.3'
5
5
 
6
6
  # root error for our library; all other errors inherit from this one.
7
7
  class Error < StandardError; end
data/lib/appear/lsof.rb CHANGED
@@ -1,5 +1,4 @@
1
1
  require 'appear/service'
2
- require 'pry'
3
2
 
4
3
  module Appear
5
4
  # The LSOF service co-ordinates access to the `lsof` system utility. LSOF
@@ -69,7 +68,6 @@ module Appear
69
68
  ttys = panes.map(&:tty)
70
69
  if panes.all? {|p| p.respond_to?(:pids) }
71
70
  pids = hitlist.keys + panes.map(&:pids).flatten
72
- # binding.pry
73
71
  lsofs = lsofs(ttys, :pids => pids)
74
72
  else
75
73
  lsofs = lsofs(ttys)
@@ -73,7 +73,6 @@ module Appear
73
73
  end
74
74
 
75
75
  def panes
76
- binding.pry
77
76
  pids = services.processes.pgrep('iTerm2')
78
77
  services.mac_os.call_method('iterm2_panes').map do |hash|
79
78
  hash[:pids] = pids
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: appear
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jake Teton-Landis