foreman 0.75.0 → 0.76.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2d2533e04983c8bc1a553a867f16270b2f2b507e
4
- data.tar.gz: e68fb5ec236c5b5028a237b06e584479f7ba0b1a
3
+ metadata.gz: a46526a39ab41e0411a81f1f09fd8f8a567490b0
4
+ data.tar.gz: 210e82d37b359fb128588a374815d7dcfac22140
5
5
  SHA512:
6
- metadata.gz: 6940deae4de813cae87c1e6be92777214003e356e8875530a665632c0d7a365d03b5b1af69385640093d58e066808c215ce2b9397bf36bdedc79cee1c2b93884
7
- data.tar.gz: af31318797d5271225f712162db993e9a02cdbf1e2fbae146f71f5f01f105d16fa617b3f6d25d0459d2a2b355725d3e88f8fb90aa1f5e06dd2d3d65491af2b84
6
+ metadata.gz: 9bfb35d1a2f01365708c4bc9dc8be5f7959bb42863e376206808651e20ed33d201d4dc3f96bff98c0face9db589b05a21d7ce49310b8b218db614efe98d978eb
7
+ data.tar.gz: 7f2d6cca39949dae2ef8d8b58fb4ae20a2b4e81d695cf7cf980e459ae1404cb56707532a6fc0fb98f61c5cd68d93934b592c2ca3d70aafd5b41a644926458a00
data/README.md CHANGED
@@ -2,6 +2,7 @@
2
2
 
3
3
  [![Build Status](https://travis-ci.org/ddollar/foreman.svg?branch=master)](https://travis-ci.org/ddollar/foreman)
4
4
  [![Code Climate](https://codeclimate.com/github/ddollar/foreman.png)](https://codeclimate.com/github/ddollar/foreman)
5
+ [![Inline docs](http://inch-ci.org/github/ddollar/foreman.svg?branch=master)](http://inch-ci.org/github/ddollar/foreman)
5
6
 
6
7
  Manage Procfile-based applications
7
8
 
@@ -32,8 +33,7 @@ Ruby users should take care *not* to install foreman in their project's `Gemfile
32
33
 
33
34
  ## Supported Ruby versions
34
35
 
35
- * 1.9.3
36
- * 2.0.0
36
+ See [.travis.yml](.travis.yml) for a list of Ruby versions against which Foreman is tested.
37
37
 
38
38
  ## Documentation
39
39
 
@@ -43,12 +43,11 @@ Ruby users should take care *not* to install foreman in their project's `Gemfile
43
43
 
44
44
  ## Ports
45
45
 
46
- * [shoreman](https://github.com/hecticjeff/shoreman) - shell
47
- * [honcho](https://github.com/nickstenning/honcho) - python
48
- * [norman](https://github.com/josh/norman) - node.js
49
46
  * [forego](https://github.com/ddollar/forego) - Go
50
47
  * [gaffer](https://github.com/jingweno/gaffer) - Java/JVM
48
+ * [honcho](https://github.com/nickstenning/honcho) - python
51
49
  * [proclet](https://github.com/kazeburo/Proclet) - Perl
50
+ * [shoreman](https://github.com/hecticjeff/shoreman) - shell
52
51
 
53
52
  ## Authors
54
53
 
data/lib/foreman/cli.rb CHANGED
@@ -96,6 +96,9 @@ class Foreman::CLI < Thor
96
96
  error "command not found: #{args.first}"
97
97
  end
98
98
  end
99
+ trap("INT") do
100
+ Process.kill(:INT, pid)
101
+ end
99
102
  Process.wait(pid)
100
103
  exit $?.exitstatus
101
104
  rescue Interrupt
@@ -1,5 +1,5 @@
1
1
  module Foreman
2
2
 
3
- VERSION = "0.75.0"
3
+ VERSION = "0.76.0"
4
4
 
5
5
  end
data/man/foreman.1 CHANGED
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "FOREMAN" "1" "June 2014" "Foreman 0.75.0" "Foreman Manual"
4
+ .TH "FOREMAN" "1" "August 2014" "Foreman 0.76.0" "Foreman Manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBforeman\fR \- manage Procfile\-based applications
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: foreman
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.75.0
4
+ version: 0.76.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Dollar
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-08-27 00:00:00.000000000 Z
11
+ date: 2014-11-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor
@@ -30,14 +30,14 @@ dependencies:
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: 0.11.1
33
+ version: 1.0.2
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: 0.11.1
40
+ version: 1.0.2
41
41
  description: Process manager for applications with multiple components
42
42
  email: ddollar@gmail.com
43
43
  executables: