Sha256: 05909412e4308ff179d7adc43ee038695fdb06bfb10de693d8bfa30b72c9af1f
Contents?: true
Size: 980 Bytes
Versions: 1
Compression:
Stored size: 980 Bytes
Contents
# Look in the tasks/setup.rb file for the various options that can be # configured in this Rakefile. The .rake files in the tasks directory # are where the options are used. begin require 'bones' Bones.setup rescue LoadError begin load 'tasks/setup.rb' rescue LoadError raise RuntimeError, '### please install the "bones" gem ###' end end ensure_in_path 'lib' module GData class Base end end require 'roo' task :default => 'spec:run' PROJ.name = 'roo' PROJ.authors = 'Thomas Preymesser' PROJ.email = 'thopre@gmail.com' PROJ.url = 'http://roo.rubyforge.org/' PROJ.version = Roo::VERSION PROJ.rubyforge.name = 'roo' PROJ.gem.dependencies = [ # ['xmlsimple', '>= 0.0.1'], ['spreadsheet', '> 0.6.4'], #-- # rel. 0.6.4 causes an invalid Date error if we # have a datetime value of 2006-02-02 10:00:00 #++ ['nokogiri', '>= 0.0.1'], ['builder', '>= 2.1.2'], ['gimite-google-spreadsheet-ruby','>= 0.0.5'], ] PROJ.spec.opts << '--color' # EOF
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
roo-1.9.0 | Rakefile |