climax 0.0.7 → 0.0.8
Sign up to get free protection for your applications and to get access to all the features.
- data/climax.gemspec +1 -1
- data/lib/climax/version.rb +1 -1
- data/templates/bin/application.rb.erb +1 -1
- metadata +4 -4
data/climax.gemspec
CHANGED
data/lib/climax/version.rb
CHANGED
@@ -9,7 +9,7 @@ app = <%= module_string %>::Application.new(ARGV)
|
|
9
9
|
received_ctrlc = false
|
10
10
|
trap("INT") do
|
11
11
|
if received_ctrlc == false
|
12
|
-
app.log.
|
12
|
+
app.log.warn "Received Interrupt. Attempting to exit safely. Send Interrupt again to quit abruptly."
|
13
13
|
app.climax_send_event(:quit)
|
14
14
|
received_ctrlc = true
|
15
15
|
else
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: climax
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.8
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-
|
12
|
+
date: 2013-03-05 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: pry
|
@@ -82,7 +82,7 @@ dependencies:
|
|
82
82
|
requirements:
|
83
83
|
- - ! '>='
|
84
84
|
- !ruby/object:Gem::Version
|
85
|
-
version:
|
85
|
+
version: 0.1.7
|
86
86
|
type: :runtime
|
87
87
|
prerelease: false
|
88
88
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -90,7 +90,7 @@ dependencies:
|
|
90
90
|
requirements:
|
91
91
|
- - ! '>='
|
92
92
|
- !ruby/object:Gem::Version
|
93
|
-
version:
|
93
|
+
version: 0.1.7
|
94
94
|
description: Opinionated framework for Ruby CLI applications that provides logging,
|
95
95
|
cli argument parsing, daemonizing, configuration, testing, and even remote control
|
96
96
|
of long running processes
|