Sha256: 659078c4d96c06356bc8025f4267e620d4ee5a9e0db5467dd8acf24264978eb2
Contents?: true
Size: 535 Bytes
Versions: 1
Compression:
Stored size: 535 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('../yargi.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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
yargi-0.2.0 | Rakefile |