Sha256: 873360e50cf0c21ec46708ea576c8a55def67bd0cc3642b50907880179f68f7f

Contents?: true

Size: 487 Bytes

Versions: 15

Compression:

Stored size: 487 Bytes

Contents

# 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 'rake/testtask'
Rake::TestTask.new(:test) do |test|
  test.libs << 'lib' << 'spec'
  test.pattern = 'spec/**/*_spec.rb'
  test.verbose = true
end

task :default => :test

require 'yard'
YARD::Rake::YardocTask.new

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
recommendable-1.1.7 Rakefile
recommendable-1.1.6 Rakefile
recommendable-1.1.5 Rakefile
recommendable-1.1.4 Rakefile
recommendable-1.1.3 Rakefile
recommendable-1.1.2 Rakefile
recommendable-1.1.1 Rakefile
recommendable-1.0.0 Rakefile
recommendable-0.2.1.1 Rakefile
recommendable-0.1.8 Rakefile
recommendable-0.1.6 Rakefile
recommendable-0.1.5 Rakefile
recommendable-0.1.4 Rakefile
recommendable-0.1.3 Rakefile
recommendable-0.1.2 Rakefile