hash_flatten.gemspec in hash_flatten-0.3.0 vs hash_flatten.gemspec in hash_flatten-1.0.0
- old
+ new
@@ -2,22 +2,21 @@
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |spec|
spec.name = 'hash_flatten'
- spec.version = '0.3.0'
+ spec.version = '1.0.0'
spec.authors = ['Premysl Donat']
spec.email = ['pdonat@seznam.cz']
- spec.summary = 'Two method i miss in std lib'
- spec.description = spec.summary
+ spec.summary = 'Flatten nested Hash to one level depth with keys joined with a dot.'
+ spec.description = 'A refinement which includes a method for flattening nested Hash to one level depth with keys joined with a dot. Also includes a method for reverse operation.'
spec.homepage = 'https://github.com/Masa331/hash_flatten'
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
- spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.add_development_dependency 'bundler'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'rspec'