-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathprawn-icon.gemspec
41 lines (33 loc) · 1.42 KB
/
prawn-icon.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
34
35
36
37
38
39
40
41
# frozen_string_literal: true
basedir = __dir__
require "#{basedir}/lib/prawn/icon/version"
Gem::Specification.new do |spec|
spec.name = 'prawn-icon'
spec.version = Prawn::Icon::VERSION
spec.platform = Gem::Platform::RUBY
spec.summary = 'Provides icon fonts for PrawnPDF'
spec.files = Dir.glob('{lib,spec,data,examples}/**/**/*') +
%w[prawn-icon.gemspec Gemfile Rakefile] +
%w[README.md CHANGELOG.md] +
%w[COPYING LICENSE GPLv2 GPLv3]
spec.require_path = 'lib'
spec.required_ruby_version = '>= 1.9.3'
spec.required_rubygems_version = '>= 1.3.6'
spec.homepage = 'https://github.com/jessedoyle/prawn-icon/'
spec.authors = ['Jesse Doyle']
spec.email = ['jdoyle@ualberta.ca']
spec.licenses = %w[RUBY GPL-2 GPL-3]
spec.add_dependency('prawn', '>= 1.1.0', '< 3.0.0')
spec.add_development_dependency('pdf-inspector', '>= 1.2.1')
spec.add_development_dependency('pdf-reader', '>= 1.4')
spec.add_development_dependency('rake')
spec.add_development_dependency('rspec', '>= 3.5.0')
spec.add_development_dependency('rubocop', '~> 1.35.1')
spec.add_development_dependency('simplecov')
spec.description = <<~END_DESC
Prawn::Icon provides various icon fonts including
FontAwesome, PaymentFont and Foundation Icons
for use with the Prawn PDF toolkit.
END_DESC
spec.metadata['rubygems_mfa_required'] = 'true'
end