Sha256: 39ab61e509326e2ef57fad9ce3a7a7703ac7d41977f6f2d237dcc19deba7fddb

Contents?: true

Size: 420 Bytes

Versions: 9

Compression:

Stored size: 420 Bytes

Contents

require 'bundler'
require 'bundler/gem_tasks'
require 'rspec/core'
require 'rspec/core/rake_task'

Bundler::GemHelper.install_tasks

begin
  Bundler.setup(:default, :development)
rescue Bundler::BundlerError => e
  $stderr.puts e.message
  $stderr.puts 'Run `bundle install` to install missing gems'
  exit e.status_code
end

task :default => :spec

RSpec::Core::RakeTask.new do |t|
  t.pattern = 'spec/**/*spec.rb'
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
tag_along-0.8.3 Rakefile
tag_along-0.8.2 Rakefile
tag_along-0.8.1 Rakefile
tag_along-0.8.0 Rakefile
tag_along-0.7.3 Rakefile
tag_along-0.7.2 Rakefile
tag_along-0.7.1 Rakefile
tag_along-0.7.0 Rakefile
tag_along-0.6.1 Rakefile