plunger 0.0.4 → 0.0.5

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.
@@ -1,5 +1,3 @@
1
- require 'posix/spawn'
2
-
3
1
  module Plunger
4
2
  module Changeset
5
3
  class Git
@@ -28,7 +28,7 @@ module Plunger
28
28
  end
29
29
 
30
30
  def spawn_result(command)
31
- result = POSIX::Spawn.`(command)
31
+ result = `#{command}`
32
32
  $?.success? or abort
33
33
  result
34
34
  end
@@ -1,5 +1,3 @@
1
- require 'posix/spawn'
2
-
3
1
  module Plunger
4
2
  class Uploader
5
3
 
@@ -31,7 +29,7 @@ module Plunger
31
29
  argvs += diff_options
32
30
  end
33
31
 
34
- POSIX::Spawn.system(command, *argvs)
32
+ system(command, *argvs)
35
33
  end
36
34
 
37
35
  end
@@ -1,3 +1,3 @@
1
1
  module Plunger
2
- VERSION = "0.0.4"
2
+ VERSION = "0.0.5"
3
3
  end
data/plunger.gemspec CHANGED
@@ -17,6 +17,4 @@ Gem::Specification.new do |s|
17
17
  s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
18
18
  s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
19
19
  s.require_paths = ["lib"]
20
-
21
- s.add_dependency "posix-spawn", "0.3.6"
22
20
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: plunger
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -10,18 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
  date: 2011-10-19 00:00:00.000000000Z
13
- dependencies:
14
- - !ruby/object:Gem::Dependency
15
- name: posix-spawn
16
- requirement: &19068200 !ruby/object:Gem::Requirement
17
- none: false
18
- requirements:
19
- - - =
20
- - !ruby/object:Gem::Version
21
- version: 0.3.6
22
- type: :runtime
23
- prerelease: false
24
- version_requirements: *19068200
13
+ dependencies: []
25
14
  description: Ruby Wrapper for Rietveld Code Review, hosted on Google App Engine
26
15
  email:
27
16
  - andriy.yanko@gmail.com
@@ -72,7 +61,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
72
61
  version: '0'
73
62
  requirements: []
74
63
  rubyforge_project: plunger
75
- rubygems_version: 1.8.6
64
+ rubygems_version: 1.8.11
76
65
  signing_key:
77
66
  specification_version: 3
78
67
  summary: Code Review Tool