Sha256: e17fe399df4e1b996dd2b85c45f99b2c9ac8c50b8ee6e87ecf7648423b5df4d9

Contents?: true

Size: 541 Bytes

Versions: 1

Compression:

Stored size: 541 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
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rango-0.1.1.2 Rakefile