Sha256: 1acd136d24a7512ca53a9fc187fb6872ee25d13cd856aaf32b3b8bb2d6a502dc
Contents?: true
Size: 585 Bytes
Versions: 5
Compression:
Stored size: 585 Bytes
Contents
require 'bundler/gem_tasks' # encoding: utf-8 require 'rubygems' require 'bundler' 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 require 'rake' require 'rspec/core' require 'rspec/core/rake_task' RSpec::Core::RakeTask.new(:spec) do |spec| spec.pattern = FileList['spec/**/*_spec.rb'] end RSpec::Core::RakeTask.new(:rcov) do |spec| ENV['COVERAGE'] = 'coverage' end task :default => :spec require 'yard' YARD::Rake::YardocTask.new
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
structural-0.2.0 | Rakefile |
structural-0.1.0 | Rakefile |
structural-0.0.3 | Rakefile |
structural-0.0.2 | Rakefile |
structural-0.0.1 | Rakefile |