Sha256: c2ae8ec1a3637d2dfee1bbc7d23a89dc0bccce5b1e022daaed2c24279be2a8a5

Contents?: true

Size: 369 Bytes

Versions: 1

Compression:

Stored size: 369 Bytes

Contents

require 'rubygems'
require 'json'
require 'eventmachine'

module GoshrineBot

  VERSION = "0.1.1"

  STDOUT.sync = true
  
  ROOT = File.expand_path(File.dirname(__FILE__))
  
  %w[ client
      gtp_stdio_client
      runner
      game
      core_ext/hash
      faye
      httpclient
      
  ].each do |lib|
    require File.join(ROOT, 'goshrine_bot', lib)
  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
goshrine_bot-0.1.1 lib/goshrine_bot.rb