six-updater-web 0.14.2 → 0.14.3

Sign up to get free protection for your applications and to get access to all the features.
data/Rakefile CHANGED
@@ -7,7 +7,7 @@ require 'rake/testtask'
7
7
 
8
8
  spec = Gem::Specification.new do |s|
9
9
  s.name = 'six-updater-web'
10
- s.version = '0.14.2'
10
+ s.version = '0.14.3'
11
11
  s.has_rdoc = false
12
12
  #s.extra_rdoc_files = ['README', 'LICENSE']
13
13
  s.summary = 'Your summary here'
@@ -1,4 +1,5 @@
1
1
  class Action < ActiveRecord::Base
2
+ # TODO: Fix saving of unchanged action records during synchronization, probably due to the :tasks serialization!
2
3
  serialize :tasks, Array
3
4
  has_many :sixconfigs
4
5
  six_guid
@@ -1,6 +1,6 @@
1
1
  %table{:width => "100%"}
2
2
  %tr
3
- %td{:valign => "top", :width => "35%"}
3
+ %td{:valign => "top", :width => "40%"}
4
4
  %table{ :border => 1, :width => "100%"}
5
5
  %tr
6
6
  %td
@@ -56,7 +56,7 @@
56
56
  = submit_tag "Updater"
57
57
  &nbsp;
58
58
  = submit_tag "Updater-Web"
59
- %td{:valign => "top", :width => "65%"}
59
+ %td{:valign => "top", :width => "60%"}
60
60
  %table{ :border => 1, :cellpadding => "5", :width => "100%"}
61
61
  %tr
62
62
  %td
@@ -19,7 +19,7 @@ case RUBY_VERSION
19
19
  end
20
20
 
21
21
  module SixUpdaterWeb
22
- VERSION = "0.14.2"
22
+ VERSION = "0.14.3"
23
23
  COMPONENT = "six-updater-web"
24
24
 
25
25
  DEFAULT_IP = "127.0.0.1" unless defined?(DEFAULT_IP)
@@ -9,14 +9,14 @@ module SixUpdaterWeb
9
9
 
10
10
  argvs = ARGV.to_s
11
11
 
12
- SIX_HOST = if argvs[/--bindi?n?g?=([0-9\.]*)/] || argvs[/-b ?([0-9\.]*)/]
12
+ SIX_HOST = if argvs[/--bindi?n?g?=([0-9\.]+)/] || argvs[/-b *([0-9\.]+)/]
13
13
  $1
14
14
  else
15
15
  ARGV << "--binding=#{DEFAULT_IP}"
16
16
  DEFAULT_IP
17
17
  end
18
18
 
19
- SIX_PORT = if argvs[/--port=([0-9]*)/] || argvs[/-p ?([0-9]*)/]
19
+ SIX_PORT = if argvs[/--port=([0-9]+)/] || argvs[/-p *([0-9]+)/]
20
20
  $1
21
21
  else
22
22
  ARGV << "--port=#{DEFAULT_PORT}"
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 14
8
- - 2
9
- version: 0.14.2
8
+ - 3
9
+ version: 0.14.3
10
10
  platform: ruby
11
11
  authors:
12
12
  - Sickboy
@@ -14,7 +14,7 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2010-05-01 00:00:00 +02:00
17
+ date: 2010-05-02 00:00:00 +02:00
18
18
  default_executable:
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency