execute 0.1.42 → 0.1.43

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. metadata +1 -2
  3. data/lib/timeout_error.rb +0 -5
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 016af1132cf49246490fab4bb1af5faf817e15d8
4
- data.tar.gz: 80d6a4254525040b4a0d10831cd9555f900378ed
3
+ metadata.gz: 73b0841718342dee74623f6c129006c6a3436718
4
+ data.tar.gz: 8a10a2601f18db52456e07a9cd490422dafdbf64
5
5
  SHA512:
6
- metadata.gz: 6037dbbfcee65dd0a5f027e5bb80c98e63d6844cefcdcb93214d28e8d10b2a0ef4ddae7c587d7795bde9101bb3c298ab32fcc2c29c491309a5ff414c0fac10c6
7
- data.tar.gz: ac55d7fb8413cea69d2cc8e429058891407e80921e5b334dd3561ffae78ffa3e204dd40a84e10a97f4a69417b78597c69d014499d5a077ca8e4c948dca4feb71
6
+ metadata.gz: fe3b914bb5fbadd8976474493bb9c4cdd9b1223c526ac26c1127957df6f41f66db2f2ebd1dc3395e813cdbf3ff39393dd2b3532ccddb2bb77698f88b82356a58
7
+ data.tar.gz: 1751754f257369965e0f7bb99434688b38c23294e4a8f7a7bf32b8e6ef74442f97918b29461fcf9c000019f06f8facbf1af0f6e87d94b93f41a264fb1a8e9404
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: execute
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.42
4
+ version: 0.1.43
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kevin Marshall
@@ -90,7 +90,6 @@ files:
90
90
  - README.md
91
91
  - lib/cmd.rb
92
92
  - lib/cmd_windows.rb
93
- - lib/timeout_error.rb
94
93
  homepage: http://rubygems.org/gems/execute
95
94
  licenses:
96
95
  - Apache 2.0
@@ -1,5 +0,0 @@
1
- class TimeoutError < RuntimeError
2
- def initialize(cmd, seconds)
3
- @message = "#{cmd} timed out after #{seconds} seconds"
4
- end
5
- end