racksh 0.9 → 0.9.1
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/lib/racksh.rb +1 -1
- metadata +1 -1
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.9
|
1
|
+
0.9.1
|
data/lib/racksh.rb
CHANGED
@@ -9,7 +9,7 @@ config_ru = ENV['CONFIG_RU'] || 'config.ru'
|
|
9
9
|
begin
|
10
10
|
load config_ru
|
11
11
|
version = File.read(File.join(File.dirname(__FILE__), '..', 'VERSION'))
|
12
|
-
puts "Rack::Shell v#{version} started
|
12
|
+
puts "Rack::Shell v#{version} started in #{ENV['RACK_ENV']} environment."
|
13
13
|
rescue LoadError => e
|
14
14
|
if e.message =~ /config\.ru$/
|
15
15
|
puts "Rack::Shell couldn't find #{config_ru}"
|