Sha256: 4a0ea3f8db8fda05be0b024c8e5477b1f2343a974f5135999da177124641d57b

Contents?: true

Size: 556 Bytes

Versions: 1

Compression:

Stored size: 556 Bytes

Contents

require "bundler/gem_tasks"

require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec) do |t|
  t.rspec_opts = ["-c", "-f progress"] # '--format specdoc'
  t.pattern = 'spec/**/*_spec.rb'
end

task :devstart do |t|
  require 'pathname'
  libs = ['lib', 'esper'].map{|p| Pathname.new(__FILE__).dirname.join('.', p).expand_path}
  $LOAD_PATH.unshift(*libs.map(&:to_s))

  ARGV.clear
  ARGV.push("start", "--more-verbose", "-Xmx1500m", "--stats", "dump.json")
  require 'norikra/cli'
  Norikra::CLI.start
end

task :test => :spec
task :default => :spec

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
norikra-0.0.17-java Rakefile