six-updater-web 0.24.9 → 0.24.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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.24.9'
10
+ s.version = '0.24.10'
11
11
  s.has_rdoc = false
12
12
  #s.extra_rdoc_files = ['README', 'LICENSE']
13
13
  s.summary = 'Your summary here'
@@ -31,7 +31,7 @@ class Mod < ActiveRecord::Base
31
31
  end
32
32
 
33
33
  def process(setting, reset, autoskip, force = false)
34
- self.update_version(setting.real_path) # TODO: this already runs in updater_yml, but there doesn't run if autoskip is disabled
34
+ self.update_version(setting) # TODO: this already runs in updater_yml, but there doesn't run if autoskip is disabled
35
35
  if reset && !autoskip
36
36
  self.skip = false
37
37
  else
@@ -55,7 +55,7 @@ class Mod < ActiveRecord::Base
55
55
  #File.open('test.tar', 'wb') { |tar| Archive::Tar::Minitar.pack('tests', tar) }
56
56
  # Unpacks 'test.tar' to 'x', creating 'x' if necessary.
57
57
  # Archive::Tar::Minitar.unpack('test.tar', 'x')
58
- rpath = self.real_path
58
+ rpath = self.real_path(setting)
59
59
 
60
60
  path = File.join(rpath, 'store', 'userconfig.tar')
61
61
  path = File.join(rpath, 'store', 'userconfig') unless File.exists?(path)
@@ -153,21 +153,22 @@ class Mod < ActiveRecord::Base
153
153
  "mods/show"
154
154
  end
155
155
 
156
- def read_version(path)
157
- return unless path && self.real_name
158
- cfg = File.join(path, self.real_name, '.rsync', '.repository.yml')
156
+ def read_version(setting)
157
+ path = self.my_path(setting)
158
+ return unless path
159
+ cfg = File.join(path, '.rsync', '.repository.yml')
159
160
  return nil unless File.exists?(cfg)
160
161
  conf = YAML::load_file(cfg)
161
162
  return nil unless conf
162
163
  begin; conf[:version]; rescue; nil; end
163
164
  end
164
165
 
165
- def update_version(path)
166
- self.version_local = self.read_version(path).to_s
166
+ def update_version(setting)
167
+ self.version_local = self.read_version(setting).to_s
167
168
  end
168
169
 
169
- def update_skip_by_version(path)
170
- self.update_version(path)
170
+ def update_skip_by_version(setting)
171
+ self.update_version(setting)
171
172
  self.update_skip
172
173
  end
173
174
 
@@ -24,7 +24,7 @@ end
24
24
  require 'open3'
25
25
 
26
26
  module SixUpdaterWeb
27
- VERSION = "0.24.9"
27
+ VERSION = "0.24.10"
28
28
  COMPONENT = "six-updater-web"
29
29
 
30
30
  DEFAULT_IP = "127.0.0.1" unless defined?(DEFAULT_IP)
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 24
8
- - 9
9
- version: 0.24.9
8
+ - 10
9
+ version: 0.24.10
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-12-05 00:00:00 +01:00
17
+ date: 2010-12-31 00:00:00 +01:00
18
18
  default_executable:
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency