flogic / flame

A fork of the seattle.rb flog project (why a fork? flog source is kept in a private perforce repo, and we wanted to add some new functionality, oh, and tests)

flame / Rakefile
100644 19 lines (11 sloc) 0.344 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# -*- ruby -*-
 
require 'rubygems'
require 'hoe'
 
$: << '../../ParseTree/dev/lib' << '../../RubyInline/dev/lib'
 
require './lib/flog'
 
Hoe.new('flog', Flog::VERSION) do |flog|
  flog.rubyforge_name = 'seattlerb'
 
  flog.developer('Ryan Davis', 'ryand-ruby@zenspider.com')
 
  flog.extra_deps << ["ParseTree", '>= 2.0.1']
end
 
# vim: syntax=Ruby