Sha256: f1fcc8b9550a5bea65c0b486fdd25ce4ab9b75d028c770c4abc65d38c344a990

Contents?: true

Size: 452 Bytes

Versions: 14

Compression:

Stored size: 452 Bytes

Contents

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

begin
  load '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

14 entries across 14 versions & 1 rubygems

Version Path
six-updater-web-0.13.5 bin/six-updater-web
six-updater-web-0.13.4 bin/six-updater-web
six-updater-web-0.13.3 bin/six-updater-web
six-updater-web-0.13.2 bin/six-updater-web
six-updater-web-0.13.1 bin/six-updater-web
six-updater-web-0.12.7 bin/six-updater-web
six-updater-web-0.12.6 bin/six-updater-web
six-updater-web-0.12.5 bin/six-updater-web
six-updater-web-0.12.4 bin/six-updater-web
six-updater-web-0.12.3 bin/six-updater-web
six-updater-web-0.12.2 bin/six-updater-web
six-updater-web-0.12.1 bin/six-updater-web
six-updater-web-0.11.2 bin/six-updater-web
six-updater-web-0.11.1 bin/six-updater-web