Sha256: d6525d02f3d1777c1ff66907ae66b30a5900a32466b94b186b371529179bcee2

Contents?: true

Size: 419 Bytes

Versions: 20

Compression:

Stored size: 419 Bytes

Contents

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

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

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

desc 'Run all specs and features'
task :test => %w[spec features]

task :default => :test

Version data entries

20 entries across 20 versions & 3 rubygems

Version Path
ugly_face-0.3 Rakefile
ugly_face-0.2 Rakefile
ugly_face-0.1 Rakefile
pretty_face-0.10.3 Rakefile
sponte_pretty_face-0.10.3 Rakefile
pretty_face-0.10.2 Rakefile
pretty_face-0.10.1 Rakefile
pretty_face-0.10 Rakefile
pretty_face-0.9.1 Rakefile
pretty_face-0.9 Rakefile
pretty_face-0.8.2 Rakefile
pretty_face-0.8.1 Rakefile
pretty_face-0.8 Rakefile
pretty_face-0.7 Rakefile
pretty_face-0.6.1 Rakefile
pretty_face-0.6 Rakefile
pretty_face-0.5 Rakefile
pretty_face-0.4 Rakefile
pretty_face-0.3 Rakefile
pretty_face-0.2 Rakefile