Sha256: 9a2fa3ccf70ce13170f7f8cf351c6d01d7452dac3a60444de6312ccb60aacbd0

Contents?: true

Size: 803 Bytes

Versions: 1

Compression:

Stored size: 803 Bytes

Contents

# Look in the tasks/setup.rb file for the various options that can be
# configured in this Rakefile. The .rake files in the tasks directory
# are where the options are used.

begin
  require 'bones'
rescue LoadError
  abort '### Please install the "bones" gem ###'
end

require 'lib/surpass'

Bones {
  name     'slayer-surpass'
  authors  'Ana Nelson'
  email    'ana@ananelson.com'
  url      'http://surpass.rubyforge.org'
  version  Surpass::VERSION
}

task :default => 'spec:run'
task 'gem:release' => 'test:run'

desc "run antlr compiler"
task :antlr do
  `cd lib/surpass; antlr4ruby ExcelFormula.g`
end

desc "run examples"
task :examples do
  `rm examples/*.xls`
  `cd examples; ls *.rb`.chomp.split.each do |f|
      next if f =~ /big/
     `jruby #{File.expand_path(f, "examples")}`
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
slayer-surpass-0.1.0 Rakefile