Sha256: ea477cec34c41e457fed667e1530812e422e26b242c3d681d6e6cf56828b14f1
Contents?: true
Size: 566 Bytes
Versions: 2
Compression:
Stored size: 566 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('../viiite.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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
viiite-0.2.0 | Rakefile |
viiite-0.1.0 | Rakefile |