-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmerb_datamapper.gemspec
36 lines (30 loc) · 1.13 KB
/
merb_datamapper.gemspec
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
29
30
31
32
33
34
35
36
#!/usr/bin/env gem build
# -*- encoding: utf-8 -*-
require 'date'
# Load this library's version information
require File.expand_path('../lib/merb_datamapper/version', __FILE__)
Gem::Specification.new do |gem|
gem.name = 'merb_datamapper'
gem.version = Merb::DataMapper::VERSION.dup
gem.date = Date.today.to_s
gem.authors = [ "Jason Toy", "Jonathan Stott" ]
gem.email = "[email protected]"
gem.homepage = "http://github.com/merb/merb_datamapper"
gem.description = "Merb plugin that provides support for datamapper"
gem.summary = "Merb plugin that allows you to use datamapper with your merb app"
gem.require_paths = ['lib']
gem.files = Dir[
'Generators',
'Rakefile',
'{lib,spec}/**/*',
'README*',
'LICENSE*',
'TODO*'
] & `git ls-files -z`.split("\0")
# Runtime dependencies
gem.add_dependency 'merb-core', "~> 1.1"
gem.add_dependency 'dm-core', Merb::DataMapper::DM_VERSION_REQUIREMENT
gem.add_dependency 'dm-migrations', Merb::DataMapper::DM_VERSION_REQUIREMENT
# Development dependencies
gem.add_development_dependency 'rspec', '>= 2.5'
end