-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathprawn-qr.gemspec
24 lines (21 loc) · 953 Bytes
/
prawn-qr.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/prawn-qr/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Josep Jaume"]
gem.email = ["[email protected]"]
gem.description = %q{Prawn-qr is a prawn extension for creating QR Codes inside of a prawn document}
gem.summary = gem.description
gem.homepage = "http://github.com/josepjaume/prawn-qr"
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "prawn-qr"
gem.require_paths = ["lib"]
gem.version = Prawn::Qr::VERSION
gem.add_runtime_dependency 'rqrcode'
gem.add_runtime_dependency 'prawn'
gem.add_development_dependency 'qrio'
gem.add_development_dependency 'mini_magick'
gem.add_development_dependency 'mocha'
gem.add_development_dependency 'rake'
end