utils 0.0.79 → 0.0.80

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7f7cc39498af1445a43d48bfe81c748a3d20b5c9
4
- data.tar.gz: ac7c8cdd07e0d1a73909dcd6dabf26e36ed64812
3
+ metadata.gz: 87f530153e642d1247624a4922730b22a7d05998
4
+ data.tar.gz: 3d834cbf836b8197f4ec7c1feb328a3579ee5c34
5
5
  SHA512:
6
- metadata.gz: 792d3e2831ac738f92c2121185af6b00e9a3860a9e4012a5ab6ec88afd0a48ab5a8910ffb9ff5b6a0070264809613f4032e3a9138cea074676ee1fe82bc96ee8
7
- data.tar.gz: 55773ab922a508a0564755b72b7b41c4f55d8952bc037788aba5ede9de885a55d76c7bc644554358555f54596e52378a593c7181f567b978cafdc3f9fc5ab4e8
6
+ metadata.gz: cb90b251ea402be200c3c05eee4dd467b6f62a9d165612aa2f73da7ab8f561c45510d6a53aa69e6bcd9623e04dd8f80a46c804af49cc10e7419e0b54b9ad6172
7
+ data.tar.gz: bd04ce8ad7ec1daebded5a2c9621be465ad3c37a04ae07bd5697ae3bf46c0aaca926c1df9dfbd72d240d2052fb9b3e7affca5c4b00a4949e70989f794c6d6e2d
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.79
1
+ 0.0.80
@@ -172,7 +172,7 @@ module Utils
172
172
  `tmux list-panes -F '\#{pane_pid} \#{pane_index}'`.lines.find { |l|
173
173
  pid, index = l.split(' ')
174
174
  pid.to_i == $$ and next
175
- if `ps -eo ppid,command|grep ^#{pid}` =~ %r(/edit )
175
+ if `ps -eo ppid,command|grep ^#{pid}` =~ %r(/edit( |$))
176
176
  break index.to_i
177
177
  end
178
178
  }
@@ -1,6 +1,6 @@
1
1
  module Utils
2
2
  # Utils version
3
- VERSION = '0.0.79'
3
+ VERSION = '0.0.80'
4
4
  VERSION_ARRAY = VERSION.split(/\./).map { |x| x.to_i } # :nodoc:
5
5
  VERSION_MAJOR = VERSION_ARRAY[0] # :nodoc:
6
6
  VERSION_MINOR = VERSION_ARRAY[1] # :nodoc:
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = "utils"
5
- s.version = "0.0.79"
5
+ s.version = "0.0.80"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Florian Frank"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: utils
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.79
4
+ version: 0.0.80
5
5
  platform: ruby
6
6
  authors:
7
7
  - Florian Frank