-
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathRakefile
More file actions
112 lines (79 loc) · 1.87 KB
/
Rakefile
File metadata and controls
112 lines (79 loc) · 1.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
# -*- ruby -*-
require 'rubygems'
require 'hoe'
Hoe.add_include_dirs("lib",
"../../sexp_processor/dev/lib")
Hoe.plugin :seattlerb
Hoe.plugin :isolate
Hoe.plugin :rdoc
Hoe.spec 'ruby2ruby' do
developer 'Ryan Davis', 'ryand-ruby@zenspider.com'
license "MIT"
dependency "sexp_processor", "~> 4.6"
dependency "prism", "~> 1.7", :dev
require_ruby_version ">= 3.2"
self.isolate_multiruby = true
end
def process ruby, file="stdin"
require "prism"
require "prism/translation/ruby_parser"
require "ruby2ruby"
not_ruby_parser = Class.new Prism::Translation::RubyParser
parser = not_ruby_parser.new
ruby2ruby = Ruby2Ruby.new
begin
sexp = parser.process(ruby, file)
pp sexp if ENV["SEXP"]
ruby2ruby.process(sexp)
rescue Interrupt => e
raise e
end
end
task :stress do
$: << "lib"
require "pp"
files = Dir["../../*/dev/**/*.rb"].reject { |s| s =~ %r%/gems/% }
warn "Stress testing against #{files.size} files"
bad = {}
files.each do |file|
warn file
begin
process File.read(file), file
rescue Interrupt => e
raise e
rescue Exception => e
bad[file] = e
end
end
pp bad
end
task :debug => :isolate do
ENV["V"] ||= "18"
file = ENV["F"] || ENV["FILE"]
ruby = if file then
File.read(file)
else
file = "env"
ENV["R"] || ENV["RUBY"]
end
puts process(ruby, file)
end
task :parse => :isolate do
require "prism"
require "prism/translation/ruby_parser"
require "pp"
not_ruby_parser = Class.new Prism::Translation::RubyParser
parser = not_ruby_parser.new
file = ENV["F"]
ruby = ENV["R"]
if ruby then
file = "env"
else
ruby = File.read file
end
pp parser.process(ruby, file)
end
task :bugs do
sh "for f in bug*.rb ; do #{Gem.ruby} -S rake debug F=$f && rm $f ; done"
end
# vim: syntax=ruby