Sha256: 1a3fc03c7080d08c46f44c9844341ee5098791ffe03a7b94507a6467b5efbaf1
Contents?: true
Size: 358 Bytes
Versions: 5
Compression:
Stored size: 358 Bytes
Contents
require "bundler/gem_tasks" require "rake/testtask" if RUBY_ENGINE == 'jruby' # Excluding sqlite3 tests test_glob = "test/**/{inline_param_encoder_test.rb,postgres/*_test.rb}" else test_glob = "test/**/*_test.rb" end Rake::TestTask.new(:test) do |t| t.libs << "test" t.libs << "lib" t.test_files = FileList[test_glob] end task :default => :test
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
mini_sql-0.2.4 | Rakefile |
mini_sql-0.2.2-java | Rakefile |
mini_sql-0.2.3-java | Rakefile |
mini_sql-0.2.3 | Rakefile |
mini_sql-0.2.2 | Rakefile |