markbates / mack-more

All the extra stuff you could want for the Mack Framework.

This URL has Read+Write access

mack-more / mack-data_factory / Rakefile
100644 27 lines (22 sloc) 0.822 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
crt = File.join(File.dirname(__FILE__), "..", "common_rake_tasks")
require File.join(crt, "rake_task_requires")
 
@gem_spec = Gem::Specification.new do |s|
  s.name = 'mack-data_factory'
  s.version = GEM_VERSION
  s.summary = %{Data Factory}
  s.description = %{Data factory for Mack Testing Framework}
  s.author = "Darsono Sutedja"
  s.email = "darsono.sutedja@gmail.com"
  s.homepage = "http://www.mackframework.com"
 
  s.test_files = FileList['test/**/*']
 
  s.files = FileList['lib/**/*', 'README', 'doc/**/*.*']
  # s.add_dependency("faker", "0.3.1")
  s.require_paths << 'lib'
  
  s.has_rdoc = true
  s.rdoc_options << '--exclude=gems/'
  s.rubyforge_project = "magrathea"
end
 
# Require all the necessary rake tasks:
[:install, :package, :rdoc, :release, :test].each do |t|
  load(File.join(crt, "#{t}.rake"))
end