Sha256: 1a36d466cc824e58d98f5c2e1b3a9c7e09da90e6b9c741ee04538f68ed5570cb

Contents?: true

Size: 563 Bytes

Versions: 6

Compression:

Stored size: 563 Bytes

Contents

begin
  gem "bundler", "~> 1.0"
  require "bundler/setup"
rescue LoadError => ex
  puts ex.message
  abort "Bundler failed to load, (did you run 'gem install bundler' ?)"
end

# Dynamically load the gem spec
$gemspec_file = File.expand_path('../alf.gemspec', __FILE__)
$gemspec      = Kernel.eval(File.read($gemspec_file))

# We run tests by default
task :default => :test

#
# Install all tasks found in tasks folder
#
# See .rake files there for complete documentation.
#
Dir["tasks/*.rake"].each do |taskfile|
  instance_eval File.read(taskfile), taskfile
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
alf-0.10.1 Rakefile
alf-0.10.0 Rakefile
alf-0.9.3 Rakefile
alf-0.9.2 Rakefile
alf-0.9.1 Rakefile
alf-0.9.0 Rakefile