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 CHANGED
@@ -26,5 +26,5 @@ Gem::Specification.new do |s|
26
26
  s.add_runtime_dependency "slop"
27
27
  s.add_runtime_dependency "rspec"
28
28
  s.add_runtime_dependency "cucumber"
29
- s.add_runtime_dependency "pry-remote"
29
+ s.add_runtime_dependency "pry-remote", '>= 0.1.7'
30
30
  end
@@ -1,3 +1,3 @@
1
1
  module Climax
2
- VERSION = "0.0.7"
2
+ VERSION = "0.0.8"
3
3
  end
@@ -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.info "Received Interrupt. Attempting to exit safely. Send Interrupt again to quit abruptly."
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.7
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-02-27 00:00:00.000000000 Z
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: '0'
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: '0'
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