Sha256: 9c306171463f03cccd5c5238c554be42c2a932f3dcc3928ba5662bb9b18c4c72
Contents?: true
Size: 599 Bytes
Versions: 1
Compression:
Stored size: 599 Bytes
Contents
require 'hoe' require './lib/yahoo' DEV_DOC_PATH = 'Libraries/yahoo' hoe = Hoe.new 'yahoo', Yahoo::VERSION do |p| p.summary = 'Base for Yahoo web services' p.description = 'This library makes it easy to implement Yahoo\'s web services APIs.' p.author = 'Eric Hodel' p.email = 'drbrain@segment7.net' p.url = "http://dev.robotcoop.com/#{DEV_DOC_PATH}" p.changes = File.read('History.txt').scan(/\A(=.*?)^=/m).first.first p.rubyforge_name = 'rctools' p.extra_deps << ['rc-rest', '>= 2.0.0'] end SPEC = hoe.spec begin require '../tasks' rescue LoadError end # vim: syntax=Ruby
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
yahoo-1.1.1 | Rakefile |