Sha256: 1a5b3c9880076fb9c57045ff2ff3059b6564999b2ca983a2b5c195120d5f0c44
Contents?: true
Size: 1.01 KB
Versions: 1
Compression:
Stored size: 1.01 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' require 'wxirb' task :default => 'test:run' PROJ.name = 'wxirb' PROJ.authors = 'Eric Monti' PROJ.email = 'emonti@matasano.com' PROJ.description = 'A wxwidgets-based IRB-like ruby console' PROJ.url = 'http://www.github.com/emonti/wxirb' PROJ.version = WxIRB::VERSION PROJ.rubyforge.name = 'wxirb' PROJ.readme_file = 'README.rdoc' PROJ.spec.opts << '--color' PROJ.rdoc.opts << '--line-numbers' #PROJ.rdoc.opts << '--diagram' PROJ.notes.tags << "X"+"XX" # muhah! so we don't note our-self # exclude rcov.rb and external libs from rcov report PROJ.rcov.opts += ["--exclude", "rcov.rb", "--exclude", "wxruby"] depend_on 'wxruby', '>= 2.0.0' # EOF
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
emonti-wxirb-1.0.3 | Rakefile |