public
Description: Store Data at then end of a class for later use.
Homepage: http://rdocul.us/repos/data_bank/master/index.html
Clone URL: git://github.com/adkron/data_bank.git
data_bank / Rakefile
100644 15 lines (13 sloc) 0.471 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Rakefile
require 'rubygems'
require 'rake'
require 'echoe'
 
Echoe.new('data_bank', '0.2.0') do |p|
  p.description = 'Marshal data to be loaded on sequential runs of your script.'
  p.url = 'http://github.com/Adkron/databank'
  p.author = 'Amos King'
  p.email = 'amos.l.king@gmail.com'
  p.ignore_pattern = ['tmp/*', 'script/*', 'example.rb']
  p.development_dependencies = []
end
 
Dir['#{File.dirname(__FILE__)}/tasks/*.rake'].sort.each