public
Description: All the extra stuff you could want for the Mack Framework.
Homepage: http://www.mackframework.com
Clone URL: git://github.com/markbates/mack-more.git
100644 28 lines (23 sloc) 0.887 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
28
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_mapper"
  s.version = GEM_VERSION
  s.summary = "DataMapper ORM support for Mack"
  s.description = "mack-data_mapper was developed by: markbates"
  s.author = "markbates"
  s.email = "mark@mackframework.com"
  s.homepage = "http://www.mackframework.com"
 
  s.test_files = FileList['test/**/*']
 
  s.files = FileList['lib/**/*.*', 'README', 'doc/**/*.*', 'bin/**/*.*']
  s.require_paths << 'lib'
 
  s.add_dependency("data_mapper", "0.9.3")
  s.extra_rdoc_files = ["README"]
  s.has_rdoc = true
  s.required_ruby_version = ">= 1.8.6"
  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