Sha256: 21e28a1b53a7e6ec055bdf5676b6a86910888c6d29b9163a3c2c6adca5e0a59b
Contents?: true
Size: 355 Bytes
Versions: 4
Compression:
Stored size: 355 Bytes
Contents
require 'bundler' Bundler::GemHelper.install_tasks task :default => 'test:unit' task :test => ['test:unit', 'test:rails'] require 'rake/testtask' Rake::TestTask.new('test:unit') do |t| t.ruby_opts += ['-rubygems'] t.libs << 'test' t.pattern = 'test/test_*.rb' end task 'test:rails' do sh <<-CMD cd test/rails bundle exec rake CMD end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
jason-0.6.0 | Rakefile |
jason-0.5.0 | Rakefile |
jason-0.4.0 | Rakefile |
jason-0.3.1 | Rakefile |