Sha256: 1895cc8a0a58adc98602b0ebf218c114b6d08674701ca69c710f2cabd40165a6

Contents?: true

Size: 533 Bytes

Versions: 3

Compression:

Stored size: 533 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|
  load taskfile
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
noe-1.7.1 Rakefile
noe-1.7.0 Rakefile
noe-1.6.0 Rakefile