public
Description: SIMPLESEM interpreter
Homepage:
Clone URL: git://github.com/robolson/simplesem.git
simplesem / Rakefile
100644 12 lines (10 sloc) 0.351 kb
1
2
3
4
5
6
7
8
9
10
11
12
require 'rake'
require 'echoe'
 
Echoe.new('simplesem', '0.1.4') do |p|
  p.summary = "SIMPLESEM Interpreter"
  p.description = "Interpreter for parsing and executing SIMPLESEM programs"
  p.url = "http://github.com/robolson/simplesem"
  p.author = "Rob Olson"
  p.email = "rob@thinkingdigitally.com"
  p.runtime_dependencies = ["treetop >=1.2.4"]
end