shell_command 0.2.5 → 0.2.6

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. data/README.md +7 -4
  2. data/lib/shell_command/version.rb +1 -1
  3. metadata +9 -24
data/README.md CHANGED
@@ -10,10 +10,13 @@ __OVERVIEW__
10
10
 
11
11
  __DESCRIPTION__
12
12
 
13
- A library for spawning shell commands in Ruby. The library can be useful when
14
- you'd like to run a command and find out if it was successful(e.g: exited with a
15
- status code of 0) or if you'd like to access the standard output and standard
16
- error streams for a given shell command.
13
+ Spawning shell commands in Ruby is already pretty nice but I think we can do
14
+ better. `shell_command` tries to do it better by providing an object that gives
15
+ you access to information about the command you've executed. If you have
16
+ spawned shell commands and wondered was the command successful
17
+ (e.g: did it exit with a status code of 0?), and what did it write to the
18
+ standard error or standard output streams then `shell_command` might be useful
19
+ to you.
17
20
 
18
21
  __EXAMPLES__
19
22
 
@@ -1,3 +1,3 @@
1
1
  module ShellCommand
2
- VERSION = "0.2.5"
2
+ VERSION = "0.2.6"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shell_command
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.5
4
+ version: 0.2.6
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,11 +9,11 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-05-17 00:00:00.000000000 Z
12
+ date: 2012-05-23 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: open4
16
- requirement: !ruby/object:Gem::Requirement
16
+ requirement: &24495060 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ! '>='
@@ -21,15 +21,10 @@ dependencies:
21
21
  version: '0'
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
- requirements:
27
- - - ! '>='
28
- - !ruby/object:Gem::Version
29
- version: '0'
24
+ version_requirements: *24495060
30
25
  - !ruby/object:Gem::Dependency
31
26
  name: rake
32
- requirement: !ruby/object:Gem::Requirement
27
+ requirement: &24494540 !ruby/object:Gem::Requirement
33
28
  none: false
34
29
  requirements:
35
30
  - - ! '>='
@@ -37,15 +32,10 @@ dependencies:
37
32
  version: '0'
38
33
  type: :development
39
34
  prerelease: false
40
- version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
- requirements:
43
- - - ! '>='
44
- - !ruby/object:Gem::Version
45
- version: '0'
35
+ version_requirements: *24494540
46
36
  - !ruby/object:Gem::Dependency
47
37
  name: minitest
48
- requirement: !ruby/object:Gem::Requirement
38
+ requirement: &24494100 !ruby/object:Gem::Requirement
49
39
  none: false
50
40
  requirements:
51
41
  - - ! '>='
@@ -53,12 +43,7 @@ dependencies:
53
43
  version: '0'
54
44
  type: :development
55
45
  prerelease: false
56
- version_requirements: !ruby/object:Gem::Requirement
57
- none: false
58
- requirements:
59
- - - ! '>='
60
- - !ruby/object:Gem::Version
61
- version: '0'
46
+ version_requirements: *24494100
62
47
  description: shell_command tries to provide a better interface for communicating
63
48
  with commands you spawn on the shell
64
49
  email:
@@ -100,7 +85,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
100
85
  version: '0'
101
86
  requirements: []
102
87
  rubyforge_project: shell_command
103
- rubygems_version: 1.8.23
88
+ rubygems_version: 1.8.11
104
89
  signing_key:
105
90
  specification_version: 3
106
91
  summary: shell_command tries to provide a better interface for communicating with