json-serializer.gemspec in json-serializer-0.0.2 vs json-serializer.gemspec in json-serializer-0.0.3

- old
+ new

@@ -1,22 +1,14 @@ -# encoding: utf-8 - Gem::Specification.new do |s| - s.name = 'json-serializer' - s.version = '0.0.2' - s.summary = 'Replaces hash-driven development with object-oriented development' + s.name = "json-serializer" + s.version = "0.0.3" + s.summary = "Customize JSON ouput through serializer objects." s.description = s.summary - s.authors = ['Francesco Rodríguez'] - s.email = ['lrodriguezsanc@gmail.com'] - s.homepage = 'https://github.com/frodsan/mocoso' - s.license = 'MIT' + s.authors = ["Francesco Rodríguez"] + s.email = ["lrodriguezsanc@gmail.com"] + s.homepage = "https://github.com/frodsan/mocoso" + s.license = "Unlicense" - s.files = Dir[ - 'LICENSE', - 'README.md', - 'lib/**/*.rb', - '*.gemspec', - 'test/*.*' - ] + s.files = `git ls-files`.split("\n") - s.add_development_dependency 'cutest' + s.add_development_dependency "cutest" end