ironment 0.0.6 → 1.0.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: b98178e9d9b70dce2165e1db18355670ba75cbaf
4
- data.tar.gz: a5d25fafd95d58888723bbd1c09f7728d8067c7d
3
+ metadata.gz: 2bfe04ebfb799b08516fffbd02367992bdae685f
4
+ data.tar.gz: 991d7eab54e29564874c0a3815ecf4be8ab13153
5
5
  SHA512:
6
- metadata.gz: 736d4ac789d1e4780cc1ac93c5936f940f6ccec3c1a24b0ce9563eb665984eb2b2ae7cbee89e00023b01485f75292f8cedcd78b6dadbde2536f58936b83039aa
7
- data.tar.gz: 05222e19c2b9ea8eba1db40aae476a03758e11e33f2515a3f3934b0e193c75b7483a76930ad5cad9db5c060d05d1a1842b88d51ef62d2553bc305b1ba1eb782b
6
+ metadata.gz: fa59e701cf352e5e9e1c1e1be9a284292db4c436ab92b9482c9fe1717b978d22b60cdb2c71c4061c344d4c6a00f96e289f4168b196315d2473ad3ebbab92eb53
7
+ data.tar.gz: 91475e5f4b5d6bdbe9df7296e69a64a166234cd0f3a92485cb049727145f77bc25c0d00fffaa47b9268861138d633d72f5513d9d47c3924dec96d87e2a720805
data/README.md CHANGED
@@ -43,6 +43,10 @@ $ yaourt -S ruby-ironment
43
43
 
44
44
  ## Changelog
45
45
 
46
+ ### 1.0.0
47
+
48
+ * SIGINT is now handled by the executable.
49
+
46
50
  ### 0.0.6
47
51
 
48
52
  * Correct an issue where an unreadable, untrusted runcom would cause a stacktrace.
data/bin/iron CHANGED
@@ -4,6 +4,11 @@ require "commander/import"
4
4
  require "ironment"
5
5
  require "ironment/version"
6
6
 
7
+ Signal.trap("INT") do
8
+ puts "Aborted"
9
+ exit 1
10
+ end
11
+
7
12
  program :name, "Ironment"
8
13
  program :version, Ironment::VERSION
9
14
  program :description, "Environment populator & command wrapper utility."
@@ -1,3 +1,3 @@
1
1
  class Ironment
2
- VERSION = "0.0.6"
2
+ VERSION = "1.0.0"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ironment
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonas Amundsen
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-10-19 00:00:00.000000000 Z
11
+ date: 2015-10-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: commander