Sha256: b77873695e873df201aa5e90c92d1092d9d47c4f139086e85b5e1235e26934ee

Contents?: true

Size: 1.1 KB

Versions: 2

Compression:

Stored size: 1.1 KB

Contents

class ProconBypassMan::BootMessage
  def initialize
    @table = {}
    @table[:ruby_version] = RUBY_VERSION
    @table[:pbm_version] = ProconBypassMan::VERSION
    @table[:pid] = $$
    @table[:root_path] = ProconBypassMan.root
    @table[:pid_path] = ProconBypassMan.pid_path
    @table[:setting_path] = ProconBypassMan::ButtonsSettingConfiguration.instance.setting_path
    @table[:uptime_from_boot] = ProconBypassMan::Uptime.from_boot

    build_version = `git rev-parse --short HEAD`.chomp
    if build_version.empty?
      @table[:build_version] = 'release version'
    else
      @table[:build_version] = build_version
    end
  end

  # @return [String]
  def to_s
    booted_message = <<~EOF
      ----
      RUBY_VERSION: #{@table[:ruby_version]}
      ProconBypassMan: #{@table[:pbm_version]}
      pid: #{@table[:pid]}
      root: #{@table[:root_path]}
      pid_path: #{@table[:pid_path]}
      setting_path: #{@table[:setting_path]}
      uptime from boot: #{@table[:uptime_from_boot]} sec
      build version: #{@table[:build_version]}
      ----
    EOF
  end

  # @return [Hash]
  def to_hash
    @table
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
procon_bypass_man-0.1.11 lib/procon_bypass_man/boot_message.rb
procon_bypass_man-0.1.10 lib/procon_bypass_man/boot_message.rb