Sha256: 4523d3bbb99cb76a04112de2fcf650cde9a161b2b460449e628e14f94134ae63
Contents?: true
Size: 1.02 KB
Versions: 1
Compression:
Stored size: 1.02 KB
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'], ['febeling-rubyzip','>= 0.9.2'], # meine aktuelle Version ] PROJ.spec.opts << '--color' # EOF
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
roo-1.9.1 | Rakefile |