forked from strzibny/invoice_printer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinvoice_printer.gemspec
33 lines (28 loc) · 1.29 KB
/
invoice_printer.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'invoice_printer/version'
Gem::Specification.new do |spec|
spec.name = 'invoice_printer'
spec.version = InvoicePrinter::VERSION
spec.authors = ['Josef Strzibny']
spec.email = ['[email protected]']
spec.summary = 'Super simple PDF invoicing in pure Ruby'
spec.description = 'Super simple and fast PDF invoicing in pure Ruby (based on Prawn library).'
spec.homepage = 'https://github.com/strzibny/invoice_printer'
spec.license = 'MIT'
# Remove .pdf files as they take a lot of space
package_files = `git ls-files -z`.split("\x0")
.reject{ |file| file.match /.*\.pdf/ }
spec.files = package_files
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.bindir = 'bin'
spec.add_dependency 'json', '~> 2.1'
spec.add_dependency 'roda', '3.5.0'
spec.add_dependency 'puma', '~> 3.9'
spec.add_dependency 'prawn', '2.1.0'
spec.add_dependency 'prawn-layout', '0.8.4'
spec.add_development_dependency 'bundler', '~> 1.7'
spec.add_development_dependency 'rake', '~> 10.0'
end