polish_invoicer.gemspec in polish_invoicer-0.0.5 vs polish_invoicer.gemspec in polish_invoicer-0.0.6

- old
+ new

@@ -1,26 +1,27 @@ -# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'polish_invoicer/version' Gem::Specification.new do |spec| - spec.name = "polish_invoicer" + spec.name = 'polish_invoicer' spec.version = PolishInvoicer::VERSION - spec.authors = ["Piotr Macuk"] - spec.email = ["piotr@macuk.pl"] - spec.description = %q{Creates polish invoices and proforms as HTML or PDF files} - spec.summary = %q{Creates polish invoices and proforms as HTML or PDF files} - spec.homepage = "" - spec.license = "MIT" + spec.authors = ['Piotr Macuk'] + spec.email = ['piotr@macuk.pl'] + spec.description = 'Creates polish invoices and proforms as HTML or PDF files' + spec.summary = 'Creates polish invoices and proforms as HTML or PDF files' + spec.homepage = '' + spec.license = 'MIT' spec.files = `git ls-files`.split($/) spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) - spec.require_paths = ["lib"] + spec.require_paths = ['lib'] - spec.add_development_dependency "bundler", "~> 1.7" - spec.add_development_dependency "rake" - spec.add_development_dependency "simplecov" + spec.add_development_dependency 'bundler' + spec.add_development_dependency 'rake' + spec.add_development_dependency 'minitest' + spec.add_development_dependency 'simplecov' + spec.add_development_dependency 'rubocop' - spec.add_dependency 'slim2pdf', '~> 0.0.4' + spec.add_dependency 'slim2pdf' end