Sha256: c311e7b443d9af6f19a0f1849972501a0069e20298d0ee6d0317600defdac7b6

Contents?: true

Size: 654 Bytes

Versions: 12

Compression:

Stored size: 654 Bytes

Contents

# encoding: utf-8

require_relative "lib/rango/version"

# ENV setup for external commands
ENV["RUBYLIB"] = Dir["vendor/*/lib"].join(":")
$LOAD_PATH.clear.push(*Dir["vendor/*/lib"])

# http://support.runcoderun.com/faqs/builds/how-do-i-run-rake-with-trace-enabled
Rake.application.options.trace = true

# default task for RunCodeRun.com
task :default => ["submodules:init", :spec]

# load tasks
Dir["tasks/*.rake"].each do |taskfile|
  begin
    load File.join(Dir.pwd, taskfile)
  rescue Exception => exception
    puts "Exception #{exception.class} occured during loading #{taskfile}:"
    puts exception.message
    puts exception.backtrace
  end
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
rango-0.1.1.3 Rakefile
rango-0.1.1.2.11 Rakefile
rango-0.1.1.2.10 Rakefile
rango-0.1.1.2.9 Rakefile
rango-0.1.1.2.8 Rakefile
rango-0.1.1.2.7 Rakefile
rango-0.1.1.2.6 Rakefile
rango-0.1.1.2.5 Rakefile
rango-0.1.1.2.4 Rakefile
rango-0.1.1.2.3 Rakefile
rango-0.1.1.2.2 Rakefile
rango-0.1.1.2.1 Rakefile