Sha256: f1805051f4a8c3917d5bb670b2922cdcf8130bdc0c22ac03fa44768a258ea59e
Contents?: true
Size: 1 KB
Versions: 2
Compression:
Stored size: 1 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 'construct' task :default => 'test' PROJ.name = 'test-construct' PROJ.authors = 'Ben Brinckerhoff (ben@devver.net) and Avdi Grimm (avdi@devver.net)' PROJ.email = 'ben@devver.net, avdi@devver.net' PROJ.url = 'http://github.com/devver/construct' PROJ.version = Construct::VERSION PROJ.rubyforge.name = 'test-construct' PROJ.test.files = FileList['test/**/*_test.rb'] PROJ.ruby_opts = [] PROJ.readme_file = "README.markdown" PROJ.summary = "Construct is a DSL for creating temporary files and directories during testing." PROJ.ignore_file = ".gitignore" PROJ.gem.development_dependencies << ["jeremymcanally-pending", "~> 0.1"] # EOF
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
test-construct-1.2.1 | Rakefile |
test-construct-1.2.0 | Rakefile |