File: rqrcode_core.gemspec

package info (click to toggle)
ruby-rqrcode-core 2.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 328 kB
  • sloc: ruby: 1,346; sh: 4; makefile: 4
file content (33 lines) | stat: -rw-r--r-- 1,280 bytes parent folder | download
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 "rqrcode_core/version"

Gem::Specification.new do |spec|
  spec.name = "rqrcode_core"
  spec.version = RQRCodeCore::VERSION
  spec.platform = Gem::Platform::RUBY
  spec.authors = ["Duncan Robertson"]
  spec.email = ["duncan@whomwah.com"]

  spec.summary = "A library to encode QR Codes"
  spec.description = <<~EOF
    rqrcode_core is a Ruby library for encoding QR Codes. The simple
    interface (with no runtime dependencies) allows you to create QR Code data structures.
  EOF
  spec.homepage = "https://github.com/whomwah/rqrcode_core"
  spec.license = "MIT"
  spec.metadata = {
    "bug_tracker_uri" => "https://github.com/whomwah/rqrcode_core/issues",
    "changelog_uri" => "https://github.com/whomwah/rqrcode_core/blob/main/CHANGELOG.md"
  }

  spec.files         = Dir.glob("**/*").select {|v| v !~ /^(test|spec|features|debian)/}
  spec.bindir = "exe"
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.required_ruby_version = "~> 3.0"
  spec.add_development_dependency "bundler", "~> 2.0"
  spec.add_development_dependency "rake", "~> 13.0"
  spec.add_development_dependency "minitest", "~> 5.0"
end