Sha256: 7f3c9017aa6e95a9929dc82cbe9d4d8621e5e29c4edfd6a9ee72e7d824cff506
Contents?: true
Size: 534 Bytes
Versions: 1
Compression:
Stored size: 534 Bytes
Contents
begin gem "bundler", "~> 1.0" require "bundler/setup" rescue LoadError abort "This project requires bundler, try '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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
noe-1.1.0 | ./Rakefile |