six-updater-web 0.14.4 → 0.14.5
Sign up to get free protection for your applications and to get access to all the features.
data/Rakefile
CHANGED
@@ -37,7 +37,7 @@ class SystemSetting < ActiveRecord::Base
|
|
37
37
|
status = Timeout::timeout(TIMEOUT) do
|
38
38
|
Six::Network::Panel.login(self.server_username, self.server_password, true)
|
39
39
|
end
|
40
|
-
[
|
40
|
+
[Mod, Network, Server, Repository, Action, Appsetting, Sixconfig].each do |t|
|
41
41
|
l += t.imp
|
42
42
|
end
|
43
43
|
rescue Timeout::Error
|
@@ -1,5 +1,8 @@
|
|
1
1
|
# encoding: utf-8
|
2
2
|
|
3
|
+
# Set default encoding
|
4
|
+
Encoding.default_internal, Encoding.default_external = ['utf-8'] * 2
|
5
|
+
|
3
6
|
case RUBY_PLATFORM
|
4
7
|
when /-mingw32$/, /-mswin32$/
|
5
8
|
gem 'win32-process'
|
@@ -19,7 +22,7 @@ case RUBY_VERSION
|
|
19
22
|
end
|
20
23
|
|
21
24
|
module SixUpdaterWeb
|
22
|
-
VERSION = "0.14.
|
25
|
+
VERSION = "0.14.5"
|
23
26
|
COMPONENT = "six-updater-web"
|
24
27
|
|
25
28
|
DEFAULT_IP = "127.0.0.1" unless defined?(DEFAULT_IP)
|