Sha256: 4f87ce753e7ea041d738c3c96bc0598c99b8fce798f6ff757584fae55f61b470

Contents?: true

Size: 411 Bytes

Versions: 5

Compression:

Stored size: 411 Bytes

Contents

require 'bundler'
Bundler::GemHelper.install_tasks

desc "Build the project"
task :default => 'test'

desc "Run tests"
task :test do
  ENV['disable_parallel_processing'] = 'true'
  sh "bundle exec rspec"
  sh "bundle exec cucumber --tags ~@skip-on-travis"
end

desc 'Run work-in-progress features'
task "cucumber:wip" do
  ENV['disable_parallel_processing'] = 'true'
  sh "bundle exec cucumber --tags @wip"
end

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
s3_website-0.2.1 Rakefile
s3_website-0.2.0 Rakefile
s3_website-0.1.0 Rakefile
jekyll-s3-3.2.0 Rakefile
jekyll-s3-3.1.2 Rakefile