forked from datamapper/dm-types
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdm-types.gemspec
29 lines (24 loc) · 1.1 KB
/
dm-types.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-types/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = [ 'Dan Kubb' ]
gem.email = [ '[email protected]' ]
gem.summary = 'DataMapper plugin providing extra data types'
gem.description = gem.summary
gem.homepage = 'http://datamapper.org'
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {spec}/*`.split("\n")
gem.extra_rdoc_files = %w[LICENSE README.rdoc]
gem.name = 'dm-types'
gem.require_paths = %w[lib]
gem.version = DataMapper::Types::VERSION
gem.add_runtime_dependency('bcrypt', '~> 3.0')
gem.add_runtime_dependency('dm-core', '~> 1.3.0.beta')
gem.add_runtime_dependency('fastercsv', '~> 1.5.4')
gem.add_runtime_dependency('multi_json', '>= 1.7.7')
gem.add_runtime_dependency('stringex', '>= 2.0.8')
gem.add_runtime_dependency('safe_yaml', '~> 0.6.1')
gem.add_runtime_dependency('uuidtools', '~> 2.1.2')
gem.add_development_dependency('rake', '~> 0.9.2')
gem.add_development_dependency('rspec', '~> 1.3.2')
end