-
Notifications
You must be signed in to change notification settings - Fork 0
/
dm-regex.gemspec
29 lines (22 loc) · 1 KB
/
dm-regex.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/dm-regex/version', __FILE__)
Gem::Specification.new do |gem|
gem.name = 'dm-regex'
gem.authors = [ 'locochris' ]
gem.email = [ '[email protected]' ]
gem.summary = 'DataMapper plugin enabling models to be created from matching a regex'
gem.description = gem.summary
gem.homepage = "http://github.com/locochris/#{gem.name}"
gem.licenses = %w{BSD MIT}
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {spec}/*`.split("\n")
gem.require_paths = [ "lib" ]
gem.version = DataMapper::Regex::VERSION
# gem.required_ruby_version = '>= 1.9.2'
gem.add_runtime_dependency('dm-core', '~> 1.0')
gem.add_runtime_dependency('dm-migrations', '~> 1.0')
gem.add_runtime_dependency('dm-sqlite-adapter', '~> 1.0')
gem.add_development_dependency('rake', '~> 10.0')
gem.add_development_dependency('rspec', '~> 2.0')
gem.add_development_dependency('rdd', '~> 0.0')
end