Sha256: 70acdf97ee0ff979bac9bf45a8830a6777d16ae3ea68a51a44e293d253c265b5
Contents?: true
Size: 1.1 KB
Versions: 1
Compression:
Stored size: 1.1 KB
Contents
DIR = File.dirname(__FILE__) LIB = File.join(DIR, *%w[lib goshrine_bot.rb]) VERSION = open(LIB) { |lib| lib.each { |line| if v = line[/^\s*VERSION\s*=\s*(['"])(\d+\.\d+\.\d+)\1/, 2] break v end } } SPEC = Gem::Specification.new do |s| s.name = "goshrine_bot" s.version = VERSION s.platform = Gem::Platform::RUBY s.authors = ["Pete Schwamb"] s.email = ["pete@schwamb.net"] s.homepage = "http://github.com/goshrine/goshrine_bot" s.summary = "A client to connect GTP go programs to GoShrine" s.description = <<-END_DESCRIPTION.gsub(/\s+/, " ").strip The GoShrine bot client is a library that allows you connect a local Go playing program that speaks GTP (like gnugo) to http://goshrine.com. END_DESCRIPTION s.add_dependency('eventmachine', '>= 0.12.10') s.add_dependency('em-http-request', '>= 0.3') s.add_dependency('faye', '>= 0.6.0') s.add_dependency('json', '>= 1.5.0') s.add_development_dependency "rspec" s.executables = ['goshrine_bot'] s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- spec/*_spec.rb`.split("\n") s.require_paths = %w[lib] end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
goshrine_bot-0.2.0 | goshrine_bot.gemspec |