Sha256: 26a96c35e5435f6ce409eccf0ed1ba4d3f9575624d10e081453533de86342c29
Contents?: true
Size: 1.05 KB
Versions: 2
Compression:
Stored size: 1.05 KB
Contents
desc 'build necessary assemblies for tests' task 'spec/ClassLibrary.dll' => FileList["spec/**/*.cs"] do system "csc /target:library /out:spec\\ClassLibrary.dll spec\\*.cs" end task :compile => 'spec/ClassLibrary.dll' desc 'run specs with bacon on ironruby' task :bacon => :compile do system "ibacon -Ispec -a" end (1..4).each do |i| desc "run spike #{i}" task "spike#{i}" do system "ir -I spec -I spikes spikes\\experiment#{i}.rb" end end begin require 'jeweler' Jeweler::Tasks.new do |gemspec| gemspec.name = "orangutan" gemspec.summary = "A mock objects library" gemspec.email = "mark@ryall.name" gemspec.homepage = "http://github.com/markryall/orangutan" gemspec.description = "A mocking library that supports creation of ironruby mock objects (in addition to pure ruby ones)" gemspec.files = FileList["[A-Z]*", "{lib,spec}/**/*.{rb,cs}"] gemspec.authors = ["Mark Ryall"] gemspec.rubyforge_project = 'orangutan' end rescue LoadError puts "Jeweler not available. Install it with: sudo gem install jeweler" end
Version data entries
2 entries across 2 versions & 2 rubygems
Version | Path |
---|---|
markryall-orangutan-0.0.1 | Rakefile |
orangutan-0.0.1 | Rakefile |