Sha256: 289f9ca63ab4d5036154136bcd85e5de254cf63efa23d112f65940def342791f

Contents?: true

Size: 737 Bytes

Versions: 1

Compression:

Stored size: 737 Bytes

Contents

# encoding: utf-8

require_relative "lib/pupu/version"

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

# encoding
Encoding.default_internal = "utf-8"
Encoding.default_external = "utf-8"

# 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

1 entries across 1 versions & 1 rubygems

Version Path
pupu-0.1.pre Rakefile