File: prawn-icon.gemspec

package info (click to toggle)
ruby-prawn-icon 3.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, trixie
  • size: 3,228 kB
  • sloc: ruby: 1,370; makefile: 5
file content (41 lines) | stat: -rw-r--r-- 1,454 bytes parent folder | download | duplicates (2)
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