public
Description: Reia is a Ruby/Python-like language for BEAM, the Erlang VM
Homepage: http://reia-lang.org
Clone URL: git://github.com/tarcieri/reia.git
Convert .ra extension to .re
Tony Arcieri (author)
Tue Jun 10 00:36:16 -0700 2008
commit  87bd7ed40d280dcf1b3f0911f914dd37b7006b89
tree    cb6d1122f3ec6404f49af8ec602125e6928b4698
parent  f0b1712e73529f5c9296d13bdc61e6006646bbe0
...
5
6
7
8
 
9
10
11
...
21
22
23
24
 
25
26
27
...
5
6
7
 
8
9
10
11
...
21
22
23
 
24
25
26
27
0
@@ -5,7 +5,7 @@ rule ".beam" => ".erl" do |t|
0
   sh "bin/erlc -o #{File.dirname(t.name)} #{t.source}"
0
 end
0
 
0
-rule ".beam" => ".ra" do |t|
0
+rule ".beam" => ".re" do |t|
0
   sh "bin/reiac -o #{t.name} #{t.source}"
0
 end
0
 
0
@@ -21,7 +21,7 @@ SMEX_BEAM.each do |beam|
0
 end
0
 
0
 SOURCES = FileList.new('src/reia/*') do |fl|
0
- fl.include %w[*.erl *.ra *.xrl *.yrl]
0
+ fl.include %w[*.erl *.re *.xrl *.yrl]
0
 end
0
 
0
 BEAMS = SOURCES.sub(/\.\w+$/, '.beam')

Comments

    No one has commented yet.