racksh 0.9.5 → 0.9.6

Sign up to get free protection for your applications and to get access to all the features.
data/bin/racksh CHANGED
@@ -19,7 +19,7 @@ if ARGV.empty?
19
19
  IRB.start
20
20
  end
21
21
  Process.wait(pid)
22
- break if $?.exitstatus == 0
22
+ break unless $?.exitstatus == 255
23
23
  end
24
24
  else
25
25
  Rack::Shell.init
data/lib/racksh/init.rb CHANGED
@@ -4,7 +4,7 @@ dir = File.expand_path(File.dirname(__FILE__))
4
4
 
5
5
  def reload!
6
6
  puts "Rack::Shell reloading..."
7
- Process.exit(1)
7
+ Process.exit(255)
8
8
  end
9
9
 
10
10
  module Rack
@@ -1,5 +1,5 @@
1
1
  module Rack
2
2
  module Shell
3
- VERSION = '0.9.5'.freeze
3
+ VERSION = '0.9.6'.freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: racksh
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.5
4
+ version: 0.9.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marcin Kulik