mabbre.gemspec in mabbre-0.0.1 vs mabbre.gemspec in mabbre-0.0.2

- old
+ new

@@ -6,16 +6,21 @@ Gem::Specification.new do |spec| spec.name = "mabbre" spec.version = MAbbre::VERSION spec.authors = ["Gabriel de Oliveira"] spec.email = ["deoliveira.gab@gmail.com"] - spec.summary = "Write a short summary. Required." - spec.description = "Write a longer description. Optional." + spec.summary = "Enable shortened method names on classes and modules." + spec.description = <<-EOS.strip.gsub(/\n/, "").gsub(/\s{2,}/, " ") + MAbbre allows a group of methods in a Class or a + Module to be accessed using an abbreviated form. + These methods can be defined anywhere within a + hierarchy of inclusion and/or inheritance. + EOS spec.homepage = "https://github.com/gdeoliveira/mabbre" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0") spec.test_files = spec.files.grep(/^(test|spec|features)\//) spec.require_paths = ["lib"] - spec.add_dependency "mtrack", "~> 1.1.0" + spec.add_dependency "mtrack", "~> 1.1" end