Sha256: e285f7888b0bd17160f36df9ed912afe36b31567e178927ef287fd1bc35aa456

Contents?: true

Size: 1.65 KB

Versions: 7

Compression:

Stored size: 1.65 KB

Contents

#! /usr/bin/env ruby
# -*- coding: utf-8 -*-
#
# Narou.rb ― 小説家になろうダウンロード&整形スクリプト
#
# Copyright 2013 whiteleaf. All rights reserved.
#

script_dir = File.expand_path(File.dirname(__FILE__))
$debug = File.exist?(File.join(script_dir, "debug"))

Encoding.default_external = Encoding::UTF_8

if ARGV.delete("--time")
  now = Time.now
  at_exit do
    puts "実行時間 #{Time.now - now}秒"
  end
end

require_relative "lib/inventory"
global = Inventory.load("global_setting", :global)
$display_backtrace = ARGV.delete("--backtrace")
$display_backtrace ||= $debug
$disable_color = ARGV.delete("--no-color")
$disable_color ||= global["no-color"]

require_relative "lib/logger"
require_relative "lib/version"
require_relative "lib/commandline"

rescue_level = $debug ? Exception : StandardError

if !global["dismiss-notice"] && RUBY_VERSION < "2.1.0"
  puts <<-EOS.termcolor
<cyan><bold>[Notice]
ご使用のRubyのバージョンが#{RUBY_VERSION}と古いままです。近い将来Ruby2.1.0以上を必須とする予定なので準備をお願いします
このお知らせを消すには narou s dismiss-notice=true を実行して下さい</bold></cyan>
  EOS
end

begin
  CommandLine.run(ARGV.map { |v| v.dup })
rescue SystemExit => e
  exit e.status
rescue rescue_level => e
  warn $@.shift + ": #{e.message.encode(Encoding::UTF_8)} (#{e.class})"
  if $display_backtrace
    $@.each do |b|
      warn "  from #{b}"
    end
  else
    warn "  エラーが発生したため終了しました。"
    warn "  詳細なエラーは --backtrace オプションを付けて再度実行して下さい。"
  end
  exit Narou::EXIT_ERROR_CODE
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
narou-2.8.1 narou.rb
narou-2.8.0 narou.rb
narou-2.7.2 narou.rb
narou-2.7.1 narou.rb
narou-2.7.0 narou.rb
narou-2.6.1 narou.rb
narou-2.6.0 narou.rb