-
-
Notifications
You must be signed in to change notification settings - Fork 238
/
rqrcode.gemspec
41 lines (37 loc) · 1.52 KB
/
rqrcode.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
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "rqrcode/version"
Gem::Specification.new do |spec|
spec.name = "rqrcode"
spec.version = RQRCode::VERSION
spec.platform = Gem::Platform::RUBY
spec.authors = ["Duncan Robertson"]
spec.email = ["[email protected]"]
spec.summary = "A library to encode QR Codes"
spec.description = <<~EOF
rqrcode is a library for encoding QR Codes. The simple
interface allows you to create QR Code data structures
and then render them in the way you choose.
EOF
spec.homepage = "https://github.com/whomwah/rqrcode"
spec.license = "MIT"
spec.metadata = {
"bug_tracker_uri" => "https://github.com/whomwah/rqrcode/issues",
"changelog_uri" => "https://github.com/whomwah/rqrcode/blob/master/CHANGELOG.md"
}
spec.files = Dir.chdir(File.expand_path("..", __FILE__)) do
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
end
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 2.7"
spec.add_dependency "rqrcode_core", "~> 1.0"
spec.add_dependency "chunky_png", "~> 1.0"
spec.add_development_dependency "bundler", "~> 2.0"
spec.add_development_dependency "rake", "~> 13.0"
spec.add_development_dependency "rspec", "~> 3.5"
# We need an explicit lower version as high versons
# require us to support Ruby >= 3.0.0
spec.add_development_dependency "standard", "1.37"
end