Sha256: 21fd92b3ef61c752487095f1b6b002093eb1ecc407a93a1adba0e52829eab817

Contents?: true

Size: 468 Bytes

Versions: 11

Compression:

Stored size: 468 Bytes

Contents

#!/usr/bin/ruby
# encoding: utf-8

begin
  load 'six-updater-web/init.rb'
rescue => e
  puts e.class, e.message, e.backtrace.join("\n")
  begin
    require 'fileutils'
    path = File.join(SixUpdaterWeb::DATA_PATH, 'logs')
    FileUtils.mkdir_p path unless File.exists?(path)
    File.open(File.join(path, "six-updater-web-error.log"), 'w') {|f| f.puts e.class, e.message, e.backtrace.join("\n")}
  rescue
    puts "ERROR: #{$!}"
  end
  sleep 10
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
six-updater-web-0.14.10 bin/six-updater-web
six-updater-web-0.14.9 bin/six-updater-web
six-updater-web-0.14.8 bin/six-updater-web
six-updater-web-0.14.7 bin/six-updater-web
six-updater-web-0.14.6 bin/six-updater-web
six-updater-web-0.14.5 bin/six-updater-web
six-updater-web-0.14.4 bin/six-updater-web
six-updater-web-0.14.3 bin/six-updater-web
six-updater-web-0.14.2 bin/six-updater-web
six-updater-web-0.14.1 bin/six-updater-web
six-updater-web-0.13.6 bin/six-updater-web