Sha256: 7a5e9a667a95ae7527f0864e7dc063124a182731b618fcec57e02d18b9a1871a
Contents?: true
Size: 539 Bytes
Versions: 1
Compression:
Stored size: 539 Bytes
Contents
begin gem "bundler", "~> 1.0" require "bundler/setup" rescue LoadError abord "This project requires bundler, try 'gem install bundler'" end # Dynamically load the gem spec $gemspec_file = File.expand_path('../!{lower}.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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
noe-1.1.0 | ./templates/ruby/src/Rakefile |