forked from ismasan/hash_mapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hash_mapper.gemspec
31 lines (27 loc) · 1.17 KB
/
hash_mapper.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path('../lib', __FILE__)
require 'hash_mapper/version'
Gem::Specification.new do |s|
s.name = %q{hash_mapper}
s.version = HashMapper::VERSION
s.authors = ['Ismael Celis']
s.description = %q{Tiny module that allows you to easily adapt from one hash structure to another with a simple declarative DSL.}
s.date = %q{2010-09-21}
s.email = %q{[email protected]}
s.files = `git ls-files`.split("\n")
s.homepage = %q{http://github.com/ismasan/hash_mapper}
s.rdoc_options = ['--charset=UTF-8']
s.require_paths = ['lib']
s.summary = %q{Maps input hashes to a normalized format}
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ['lib']
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency("activesupport", "~> 4")
else
s.add_dependency("activesupport", "~> 4")
end
# specify any dependencies here; for example:
s.add_development_dependency 'rspec'
s.add_development_dependency 'rake'
end