public
Description: Model ancestry and property management
Homepage: https://github.com/coryodaniel/dm-property-manager
Clone URL: git://github.com/coryodaniel/dm-property-manager.git
dm-property-manager / dm-property-manager.gemspec
100644 23 lines (20 sloc) 0.879 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
GEM_SPEC = Gem::Specification.new do |s|
  s.name = NAME
  s.version = DataMapper::PropertyManager::VERSION
  s.platform = Gem::Platform::RUBY
  s.author = "Cory O'Daniel"
  s.email = "dm-property-manager@coryodaniel.com"
  s.homepage = "http://github.com/coryodaniel/dm-property-manager/tree/master"
  s.summary = "Share properties between models with one model 'managing' the creation of another."
  s.description = "Share properties between models with one model 'managing' the creation of another."
  s.executables = nil
  s.require_path = "lib"
  s.files = %w( README.markdown Rakefile ) + Dir["{doc,lib,tasks,spec}/**/*"]
 
  # rdoc
  s.has_rdoc = true
  s.extra_rdoc_files = %w( README.markdown )
 
  # Dependencies
  s.add_dependency "dm-core",">=0.9.11"
  
  # Requirements
  s.required_ruby_version = ">= 1.8.5"
end