foreman 0.9.2 → 0.10.0

Sign up to get free protection for your applications and to get access to all the features.
data/README.markdown CHANGED
@@ -1,4 +1,9 @@
1
- Foreman
2
- =======
1
+ # Foreman
2
+
3
+ ## Manual
3
4
 
4
5
  See the [man page](http://ddollar.github.com/foreman) for usage.
6
+
7
+ ## License
8
+
9
+ MIT
data/lib/foreman.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  module Foreman
2
2
 
3
- VERSION = "0.9.2"
3
+ VERSION = "0.10.0"
4
4
 
5
5
  class AppDoesNotExist < Exception; end
6
6
 
@@ -25,7 +25,7 @@ class Foreman::Engine
25
25
  @order = []
26
26
  procfile.split("\n").inject({}) do |hash, line|
27
27
  next if line.strip == ""
28
- name, command = line.split(" ", 2)
28
+ name, command = line.split(/:? +/, 2)
29
29
  process = Foreman::Process.new(name, command)
30
30
  process.color = next_color
31
31
  @order << process.name
metadata CHANGED
@@ -4,9 +4,9 @@ version: !ruby/object:Gem::Version
4
4
  prerelease: false
5
5
  segments:
6
6
  - 0
7
- - 9
8
- - 2
9
- version: 0.9.2
7
+ - 10
8
+ - 0
9
+ version: 0.10.0
10
10
  platform: ruby
11
11
  authors:
12
12
  - |
@@ -16,7 +16,7 @@ autorequire:
16
16
  bindir: bin
17
17
  cert_chain: []
18
18
 
19
- date: 2010-11-09 00:00:00 -05:00
19
+ date: 2010-12-13 00:00:00 -05:00
20
20
  default_executable:
21
21
  dependencies:
22
22
  - !ruby/object:Gem::Dependency