Sha256: 5df920c458a2700c7be8158ba0d44a582cf8b4b0a35939a305cbc762d0868ba2

Contents?: true

Size: 550 Bytes

Versions: 40

Compression:

Stored size: 550 Bytes

Contents

$:.unshift File.expand_path('lib')

# load given tasks file, reporting errors without failing
def load_tasks(tasks)
  load tasks
rescue Exception => exception
  $stderr << "** loading #{tasks.sub(File.expand_path('.'),'')} failed: "
  case exception
  when LoadError
    $stderr << "to use, install the gems it requires\n"
  else
    $stderr << ([exception.message] + exception.backtrace[0..2]).join("\n    ") << "\n\n"
  end
end

Dir["Rakefile.d/*.rake"].sort.each {|t| load_tasks t}

task :default => :spec

task :ci => ['rcov:verify', 'cucumber']

Version data entries

40 entries across 40 versions & 4 rubygems

Version Path
pickle-0.9.0 Rakefile
pickle-0.8.0 Rakefile
pickle-0.7.2 Rakefile
pickle-0.7.1 Rakefile
pickle-0.7.0 Rakefile
pickle-0.6.2 Rakefile
pickle-0.6.1 Rakefile
pickle-0.6.0 Rakefile
pickle-0.5.5 Rakefile
pickle-0.5.4 Rakefile
pickle-0.5.3 Rakefile
pickle-0.5.2 Rakefile
spbtv_pickle-0.5.2 Rakefile
spbtv_pickle-0.5.1 Rakefile
pickle-0.5.1 Rakefile
pickle-0.5.0 Rakefile
pickle-0.4.11 Rakefile
pickle-0.4.10 Rakefile
pickle-0.4.9 Rakefile
pickle-0.4.8 Rakefile