subcontractor 0.2.0 → 0.3.0
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.
- data/README.md +10 -1
- data/lib/subcontractor/version.rb +1 -1
- data/lib/subcontractor.rb +1 -1
- data/subcontractor.gemspec +1 -3
- metadata +8 -23
data/README.md
CHANGED
|
@@ -34,6 +34,13 @@ another_app: subcontract --rvm ruby-1.8.7-p249@another_app --chdir ../another_ap
|
|
|
34
34
|
|
|
35
35
|
Here another_app will be launch from the sibling directory another_app and will use the rvm ruby-1.8.7-p249@another_app. As you can see, the command that we wish to use to launch our application follows the double dashes (--).
|
|
36
36
|
|
|
37
|
+
You can also allow another_app to use its existing .rvmrc file
|
|
38
|
+
|
|
39
|
+
```
|
|
40
|
+
rails: rails s
|
|
41
|
+
another_app: subcontract --rvm "--with-rubies rvmrc" --chdir ../another_app --signal INT -- rails s -p 3001
|
|
42
|
+
```
|
|
43
|
+
|
|
37
44
|
### Contributions
|
|
38
45
|
* Fork the project
|
|
39
46
|
* Make your change
|
|
@@ -41,4 +48,6 @@ Here another_app will be launch from the sibling directory another_app and will
|
|
|
41
48
|
* Send a pull request (bonus points for feature branches)
|
|
42
49
|
|
|
43
50
|
### Contributors
|
|
44
|
-
* Tony Pitluga [github](http://github.com/pitluga) [twitter](http://twitter.com/pitluga)
|
|
51
|
+
* Tony Pitluga [github](http://github.com/pitluga) [blog](http://tony.pitluga.com/) [twitter](http://twitter.com/pitluga)
|
|
52
|
+
* Drew Olson [github](http://github.com/drewolson) [blog](http://fingernailsinoatmeal.com/) [twitter](http://twitter.com/drewolson)
|
|
53
|
+
* Paul Gross [github](http://github.com/pgr0ss) [blog](http://www.pgrs.net) [twitter](http://twitter.com/pgr0ss)
|
data/lib/subcontractor.rb
CHANGED
data/subcontractor.gemspec
CHANGED
|
@@ -8,7 +8,7 @@ Gem::Specification.new do |s|
|
|
|
8
8
|
s.platform = Gem::Platform::RUBY
|
|
9
9
|
s.authors = ["Tony Pitluga"]
|
|
10
10
|
s.email = ["tony.pitluga@gmail.com"]
|
|
11
|
-
s.homepage = ""
|
|
11
|
+
s.homepage = "https://github.com/pitluga/subcontractor"
|
|
12
12
|
s.summary = %q{rvm aware process launcher for foreman}
|
|
13
13
|
s.description = %q{rvm aware process launcher for foreman}
|
|
14
14
|
|
|
@@ -17,6 +17,4 @@ Gem::Specification.new do |s|
|
|
|
17
17
|
s.files = `git ls-files`.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 'foreman', '~> 0.22.0'
|
|
22
20
|
end
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: subcontractor
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 19
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
|
-
-
|
|
8
|
+
- 3
|
|
9
9
|
- 0
|
|
10
|
-
version: 0.
|
|
10
|
+
version: 0.3.0
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Tony Pitluga
|
|
@@ -15,24 +15,9 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2011-
|
|
19
|
-
dependencies:
|
|
20
|
-
|
|
21
|
-
name: foreman
|
|
22
|
-
prerelease: false
|
|
23
|
-
requirement: &id001 !ruby/object:Gem::Requirement
|
|
24
|
-
none: false
|
|
25
|
-
requirements:
|
|
26
|
-
- - ~>
|
|
27
|
-
- !ruby/object:Gem::Version
|
|
28
|
-
hash: 71
|
|
29
|
-
segments:
|
|
30
|
-
- 0
|
|
31
|
-
- 22
|
|
32
|
-
- 0
|
|
33
|
-
version: 0.22.0
|
|
34
|
-
type: :runtime
|
|
35
|
-
version_requirements: *id001
|
|
18
|
+
date: 2011-12-22 00:00:00 Z
|
|
19
|
+
dependencies: []
|
|
20
|
+
|
|
36
21
|
description: rvm aware process launcher for foreman
|
|
37
22
|
email:
|
|
38
23
|
- tony.pitluga@gmail.com
|
|
@@ -59,7 +44,7 @@ files:
|
|
|
59
44
|
- lib/subcontractor/cli.rb
|
|
60
45
|
- lib/subcontractor/version.rb
|
|
61
46
|
- subcontractor.gemspec
|
|
62
|
-
homepage:
|
|
47
|
+
homepage: https://github.com/pitluga/subcontractor
|
|
63
48
|
licenses: []
|
|
64
49
|
|
|
65
50
|
post_install_message:
|
|
@@ -88,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
88
73
|
requirements: []
|
|
89
74
|
|
|
90
75
|
rubyforge_project: subcontractor
|
|
91
|
-
rubygems_version: 1.8.
|
|
76
|
+
rubygems_version: 1.8.6
|
|
92
77
|
signing_key:
|
|
93
78
|
specification_version: 3
|
|
94
79
|
summary: rvm aware process launcher for foreman
|