forked from tcocca/rash
-
Notifications
You must be signed in to change notification settings - Fork 5
/
rash.gemspec
25 lines (21 loc) · 1001 Bytes
/
rash.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "rash/version"
Gem::Specification.new do |s|
s.name = %q{rash_alt}
s.authors = ["tcocca", "Shigenobu Nishikawa"]
s.description = %q{simple extension to Hashie::Mash for rubyified keys, all keys are converted to underscore to eliminate horrible camelCasing}
s.email = %q{[email protected], [email protected]}
s.homepage = "https://github.com/shishi/rash_alt"
s.rdoc_options = ["--charset=UTF-8"]
s.summary = %q{simple extension to Hashie::Mash for rubyified keys}
s.version = Rash::VERSION
s.add_dependency 'hashie', '>= 3.4'
s.add_development_dependency 'rake', '>= 13.0.3'
s.add_development_dependency 'rdoc', '>= 6.3.0'
s.add_development_dependency 'rspec', '>= 3.4'
s.require_paths = ['lib']
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
end