Sha256: 9493cf25b6b0959c728157fab40ae2b6c285e5734cb6238ba13f8be00ed6d6e0

Contents?: true

Size: 563 Bytes

Versions: 5

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('../noe.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

5 entries across 5 versions & 1 rubygems

Version Path
noe-1.5.1 Rakefile
noe-1.5.0 Rakefile
noe-1.4.0 Rakefile
noe-1.3.0 Rakefile
noe-1.2.0 ./Rakefile