# coding: utf-8 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 = '1.0.0' spec.authors = ['Premysl Donat'] spec.email = ['pdonat@seznam.cz'] 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.require_paths = ['lib'] spec.add_development_dependency 'bundler' spec.add_development_dependency 'rake' spec.add_development_dependency 'rspec' spec.add_development_dependency 'pry' end