Sha256: 8bf006d7251ce02b4b778303be1350bbdb291fcc11e3d6ea819f19eac4400d93
Contents?: true
Size: 1.16 KB
Versions: 2
Compression:
Stored size: 1.16 KB
Contents
# frozen_string_literal: true require 'English' lib = File.expand_path('lib', __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'polish_invoicer/version' Gem::Specification.new do |spec| spec.name = 'polish_invoicer' spec.version = PolishInvoicer::VERSION 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($INPUT_RECORD_SEPARATOR) spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.require_paths = ['lib'] spec.metadata['rubygems_mfa_required'] = 'true' spec.add_development_dependency 'bundler' spec.add_development_dependency 'minitest' spec.add_development_dependency 'rake' spec.add_development_dependency 'rubocop' spec.add_development_dependency 'rubocop-minitest' spec.add_development_dependency 'rubocop-rake' spec.add_development_dependency 'simplecov' spec.add_dependency 'slim2pdf' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
polish_invoicer-0.0.29 | polish_invoicer.gemspec |
polish_invoicer-0.0.28 | polish_invoicer.gemspec |