forked from svenfuchs/hashr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhashr.gemspec
22 lines (18 loc) · 839 Bytes
/
hashr.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# encoding: utf-8
$:.unshift File.expand_path('../lib', __FILE__)
require 'hashr/version'
Gem::Specification.new do |s|
s.name = "hashr"
s.version = Hashr::VERSION
s.authors = ["Sven Fuchs"]
s.email = "svenfuchs@artweb-design.de"
s.homepage = "http://github.com/svenfuchs/hashr"
s.summary = "Simple Hash extension to make working with nested hashes (e.g. for configuration) easier and less error-prone"
s.description = "Simple Hash extension to make working with nested hashes (e.g. for configuration) easier and less error-prone."
s.files = Dir['{lib/**/*,test/**/*,[A-Z]*}']
s.platform = Gem::Platform::RUBY
s.require_path = 'lib'
s.rubyforge_project = '[none]'
s.add_development_dependency 'rake'
s.add_development_dependency 'test_declarative', '>=0.0.2'
end