six-updater-web 0.17.1 → 0.17.2
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +1 -1
- data/bin/six-get +1 -1
- data/bin/six-updater-web +1 -1
- data/bin/six-updater-web-rake +1 -1
- data/lib/six-updater-web/common.rb +1 -1
- data/lib/six-updater-web/config/boot.rb +1 -1
- data/lib/six-updater-web/config/six-updater-web.rb +2 -2
- metadata +2 -2
data/Rakefile
CHANGED
data/bin/six-get
CHANGED
data/bin/six-updater-web
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
#!/usr/bin/ruby
|
2
2
|
# encoding: utf-8
|
3
|
-
begin; require 'faster_require'; rescue LoadError; end if RUBY_PLATFORM =~ /cygwin|mingw|win32/
|
3
|
+
#begin; require 'faster_require'; rescue LoadError; end if RUBY_PLATFORM =~ /cygwin|mingw|win32/
|
4
4
|
|
5
5
|
begin
|
6
6
|
load 'six-updater-web/init.rb'
|
data/bin/six-updater-web-rake
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# Don't change this file!
|
2
2
|
# Configure your app in config/environment.rb and config/environments/*.rb
|
3
3
|
|
4
|
-
begin; require 'faster_require'; rescue LoadError; end if RUBY_PLATFORM =~ /cygwin|mingw|win32/
|
4
|
+
#begin; require 'faster_require'; rescue LoadError; end if RUBY_PLATFORM =~ /cygwin|mingw|win32/
|
5
5
|
|
6
6
|
RAILS_ROOT = "#{File.dirname(__FILE__)}/.." unless defined?(RAILS_ROOT)
|
7
7
|
|
@@ -22,7 +22,7 @@ case RUBY_VERSION
|
|
22
22
|
end
|
23
23
|
|
24
24
|
module SixUpdaterWeb
|
25
|
-
VERSION = "0.17.
|
25
|
+
VERSION = "0.17.2"
|
26
26
|
COMPONENT = "six-updater-web"
|
27
27
|
|
28
28
|
DEFAULT_IP = "127.0.0.1" unless defined?(DEFAULT_IP)
|
@@ -217,7 +217,7 @@ module SixUpdaterWeb
|
|
217
217
|
return unless defined?(OPEN_BROWSER)
|
218
218
|
Thread.new() do
|
219
219
|
file_to_use = "#{LOCAL_URL}/main"
|
220
|
-
sleep
|
220
|
+
sleep 3
|
221
221
|
system "start #{file_to_use}"
|
222
222
|
end
|
223
223
|
=begin
|