Sha256: eafe08a794d7435f50c06bba0859863a4b98d7ede55f96579fc37e3c30e39c87

Contents?: true

Size: 504 Bytes

Versions: 45

Compression:

Stored size: 504 Bytes

Contents

begin
  require 'bundler/setup'
  require "bundler/gem_tasks"
rescue LoadError
  puts "You must `gem install bundler` and `bundle install` to run rake tasks"
end

require 'rake'
require 'rake/testtask'

task :default => [:test]

Rake::TestTask.new do |t|
  t.pattern = 'test/**/*_test.rb'
  t.libs.push 'test', 'test_support'
end

# Not documented well, but this seems to be
# the way to load rake tasks from other files
#import "lib/tasks/load_map.rake"
Dir.glob('lib/tasks/*.rake').each { |r| import r}

Version data entries

45 entries across 45 versions & 1 rubygems

Version Path
traject-2.3.4-java Rakefile
traject-2.3.4 Rakefile
traject-2.3.3 Rakefile
traject-2.3.3-java Rakefile
traject-2.3.2-java Rakefile
traject-2.3.2 Rakefile
traject-2.3.1-java Rakefile
traject-2.3.1 Rakefile
traject-2.3.0-java Rakefile
traject-2.3.0 Rakefile
traject-2.2.1-java Rakefile
traject-2.2.1 Rakefile
traject-2.2.0 Rakefile
traject-2.2.0-java Rakefile
traject-2.1.0-java Rakefile
traject-2.1.0 Rakefile
traject-2.0.2-java Rakefile
traject-2.0.2 Rakefile
traject-2.0.1 Rakefile
traject-2.0.1-java Rakefile