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.4.7 Rakefile
pickle-0.4.6 Rakefile
pickle-0.4.5 Rakefile
pickle-0.4.4 Rakefile
judit-pickle-0.4.2 Rakefile
pickle-0.4.3 Rakefile
pickle-has_many_support-0.4.2 Rakefile
pickle-0.4.2 Rakefile
pickle-0.4.1 Rakefile
pickle-0.4.0 Rakefile
pickle-0.3.5 Rakefile
pickle-0.3.4 Rakefile
pickle-0.3.3 Rakefile
pickle-0.3.2 Rakefile
pickle-0.3.1 Rakefile
pickle-has_many_support-0.3.1 Rakefile
pickle-0.3.0 Rakefile
pickle-0.2.12 Rakefile
pickle-0.2.11 Rakefile
pickle-0.2.10 Rakefile