Sha256: 482be0469783ad353a0810ebf62e2f9dcd2a13effbb4d103e2ac204d4a71f97e

Contents?: true

Size: 318 Bytes

Versions: 4

Compression:

Stored size: 318 Bytes

Contents

require "bundler/gem_tasks"
task :default => :test

desc "Run tests"
task :test do
  task_index = ARGV.index("test")
  if task_index
    run_test_options = ARGV[(task_index + 1)..-1]
  else
    run_test_options = []
  end
  tests_exit_status = ruby("test/run-test.rb", *run_test_options)
  exit(tests_exit_status)
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
groonga-log-0.1.3 Rakefile
groonga-log-0.1.2 Rakefile
groonga-log-0.1.1 Rakefile
groonga-log-0.1.0 Rakefile