Sha256: 34b3ac1534e1f5cf3be482b2dce73813ead5740d5ff2118ae8e24a4a80bcab51

Contents?: true

Size: 416 Bytes

Versions: 9

Compression:

Stored size: 416 Bytes

Contents

require 'bundler/gem_tasks'
require 'rspec/core/rake_task'
require 'rubygems'
require 'cucumber'
require 'cucumber/rake/task'

RSpec::Core::RakeTask.new(:spec) do |spec|
  spec.ruby_opts = "-I lib:spec"
  spec.pattern = 'spec/**/*_spec.rb'
  spec.rspec_opts = "--color -f documentation"
end
task :spec

Cucumber::Rake::Task.new(:features) do |t|
  t.profile = 'default'
end

task :default => :spec

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
mohawk-0.1.4 Rakefile
mohawk-0.1.0 Rakefile
mohawk-0.0.9 Rakefile
mohawk-0.0.8 Rakefile
mohawk-0.0.7 Rakefile
mohawk-0.0.6 Rakefile
mohawk-0.0.5 Rakefile
mohawk-0.0.4 Rakefile
mohawk-0.0.3 Rakefile