Sha256: 9a65cb4613573d20bb5b0899bf7201b0aed5c1276abfc5cac08575959eac7009
Contents?: true
Size: 472 Bytes
Versions: 6
Compression:
Stored size: 472 Bytes
Contents
# The bundler rake tasks help automate the distribution of this gem. require 'bundler' Bundler::GemHelper.install_tasks # Define a default 'rake' alias for minitest so that when you type # rake in the root of the <tt>eycap</tt> folder you will run the tests. # https://github.com/jimweirich/rake/blob/master/lib/rake/testtask.rb require "rake/testtask" Rake::TestTask.new do |t| t.libs << "test" << "lib" t.pattern = "test/**/*_test.rb" end task :default => :test
Version data entries
6 entries across 6 versions & 1 rubygems
Version | Path |
---|---|
eycap-0.6.12 | Rakefile |
eycap-0.6.11 | Rakefile |
eycap-0.6.10 | Rakefile |
eycap-0.6.9 | Rakefile |
eycap-0.6.8 | Rakefile |
eycap-0.6.7 | Rakefile |