Sha256: cb7f107a0ca20acd139d7c7bb96e8cd610321117c6a04c6fb2b40c895ac67809

Contents?: true

Size: 1.11 KB

Versions: 2

Compression:

Stored size: 1.11 KB

Contents

# -*- ruby -*-

require 'rubygems'
require 'hoe'

$: << "../../RubyInline/dev"
require './lib/parse_tree.rb'

Hoe.new("ParseTree", ParseTree::VERSION) do |p|
  p.summary = "Extract and enumerate ruby parse trees."
  p.description = p.paragraphs_of("README.txt", 2).join("\n\n")
  p.changes = p.paragraphs_of("History.txt", 1).join("\n\n")
  p.clean_globs << File.expand_path("~/.ruby_inline")
  p.extra_deps << ['RubyInline', '>= 3.2.0']
  p.spec_extras[:require_paths] = proc { |paths| paths << 'test' }
end

desc 'Run against ruby 1.9 (from a multiruby install) with -d.'
task :test19 do
  sh "~/.multiruby/install/1_9/bin/ruby -d #{Hoe::RUBY_FLAGS} test/test_all.rb #{Hoe::FILTER}"
end

desc 'Run in gdb'
task :debug do
  puts "RUN: r -d #{Hoe::RUBY_FLAGS} test/test_all.rb #{Hoe::FILTER}"
  sh "gdb ~/.multiruby/install/19/bin/ruby"
end

desc 'Run a very basic demo'
task :demo do
  sh "echo 1+1 | ruby #{Hoe::RUBY_FLAGS} ./bin/parse_tree_show -f"
end

desc 'Show what tests are not sorted'
task :sort do
  sh "pgrep '^    \\\"(\\w+)' test/pt_testcase.rb | cut -f 2 -d\\\" > x"
  sh "sort x > y"
  sh "diff x y"
  sh "rm -f x y"
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ParseTree-1.6.3 Rakefile
ParseTree-1.6.2 Rakefile