Sha256: 1513976cf67bce1cc34eec4a56602495eeb288954c0e6d8f58a41576d16b0fbd
Contents?: true
Size: 889 Bytes
Versions: 3
Compression:
Stored size: 889 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' require 'ragweed' task :default => 'spec:run' PROJ.name = 'ragweed' PROJ.ignore_file = '.gitignore' PROJ.authors = 'tduehr, tqbf, struct' PROJ.email = 'td@matasano.com' PROJ.description = 'General debugging tool written in Ruby for OSX/Win32/Linux' PROJ.summary = 'Scriptable debugger' PROJ.exclude << %w(old$) PROJ.url = 'http://github.com/tduehr/ragweed/tree/master' PROJ.version = Ragweed::VERSION PROJ.rdoc.opts << "--inline-source" PROJ.rdoc.opts << "--line-numbers" PROJ.spec.opts << '--color' # EOF
Version data entries
3 entries across 3 versions & 2 rubygems
Version | Path |
---|---|
tduehr-ragweed-0.1.7.1 | Rakefile |
tduehr-ragweed-0.1.7.2 | Rakefile |
ragweed-0.1.7.2 | Rakefile |