dev_commands 0.0.47 → 0.0.48

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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/lib/timeout.rb +2 -2
  3. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0464f4d529f38027123494d864371cf2d650a160
4
- data.tar.gz: a7403766f521b7651f6de07c0ed4495373df2012
3
+ metadata.gz: 6e0f0d2e0a3b36ebd48e1726e7431b525583aea3
4
+ data.tar.gz: 23691a160a2649f3c66f6ce1be8918fbeacb4afc
5
5
  SHA512:
6
- metadata.gz: 96a7eef767965b9dc40864292cbb11b69c177d0213a4d4c615c2aa7aa1d08baf0db9b7c6f73dddf289bee7297a7cf5764c034a3fda12ace03ed853a393b9ee3a
7
- data.tar.gz: 96f4962bd0abbc1d745b26b6681de5ad912b23a5d9dd4505379bc7ba849c818179974e7918efb7703f81f9b3193a3af35c48aa24508e49429ef7d490a1034b83
6
+ metadata.gz: 631c584ede8dd8e3a5f22728145255652834469329a510fa4d35100912acf538a73df4079f2037f7af44a90b801a1b37cf7fc1cbcb03c3a606d66786101cc103
7
+ data.tar.gz: 3cff0d686da04b46cc9278085300ce5f40e43bf52a771fd1cb7b74d882dc4daa92ee38c0acf83c47754efefaa8f17ed8a73d058b7d88889e2405f80a0ed7736f
@@ -11,12 +11,12 @@
11
11
  #
12
12
  # If you've got a cleaner way of doing this, I'd be interested to see it.
13
13
  # If you think you can do it with Ruby's Timeout module, think again.
14
- def run_with_timeout(command, timeout, tick)
14
+ def run_with_timeout(directory,command, timeout, tick)
15
15
  output = ''
16
16
  exit_code=1
17
17
  begin
18
18
  # Start task in another thread, which spawns a process
19
- stdin, stderrout, thread = Open3.popen2e(command)
19
+ stdin, stderrout, thread = Open3.popen2e(command, :chdir=>directory)
20
20
  # Get the pid of the spawned process
21
21
  pid = thread[:pid]
22
22
  start = Time.now
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dev_commands
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.47
4
+ version: 0.0.48
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lou Parslow