Sha256: 68f705177bd980a8dabd2460dc37a1cd8ee8ce9761de85b2fdcbf94d96d9ee81

Contents?: true

Size: 639 Bytes

Versions: 13

Compression:

Stored size: 639 Bytes

Contents

# encoding: utf-8

require 'rubygems'

begin
  require 'bundler'
rescue LoadError => e
  warn e.message
  warn "Run `gem install bundler` to install Bundler."
  exit -1
end

begin
  Bundler.setup(:development)
rescue Bundler::BundlerError => e
  warn e.message
  warn "Run `bundle install` to install missing gems."
  exit e.status_code
end

require 'rake'

require "bundler/gem_tasks"

require 'yard'
YARD::Rake::YardocTask.new  
task :doc => :yard

require 'rake/testtask'
Rake::TestTask.new do |t|
  t.libs.push 'lib'
  t.libs.push 'spec'
  t.test_files = Dir.glob('spec/**/*_spec.rb')
end

task :spec => :test
 
task(:default => :test)

Version data entries

13 entries across 13 versions & 2 rubygems

Version Path
traject_umich_format-0.4.4 Rakefile
traject_umich_format-0.4.3 Rakefile
traject_umich_format-0.4.2 Rakefile
traject_umich_format-0.4.1 Rakefile
traject_umich_format-0.4.0 Rakefile
traject_umich_format-0.3.0 Rakefile
traject_umich_format-0.2.0 Rakefile
traject_umich_format-0.1.4 Rakefile
traject_umich_format-0.1.3 Rakefile
traject_umich_format-0.1.2 Rakefile
traject_umich_format-0.1.1 Rakefile
traject_umich_format-0.1.0 Rakefile
marc_alephsequential-0.1.0 Rakefile