summaryrefslogtreecommitdiff
path: root/lib/scanf.gemspec
blob: e845427215abceb0a2ed851f4a31754a95a2a15c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# coding: utf-8
# frozen_string_literal: true

Gem::Specification.new do |spec|
  spec.name          = "scanf"
  spec.version       = "1.0.0"
  spec.authors       = ["David Alan Black"]
  spec.email         = ['dblack@superlink.net']

  spec.summary       = "scanf is an implementation of the C function scanf(3)."
  spec.description   = "scanf is an implementation of the C function scanf(3)."
  spec.homepage      = "https://github.com/ruby/scanf"
  spec.license       = "BSD-2-Clause"

  spec.files         = ["lib/scanf.rb"]
  spec.bindir        = "exe"
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]
  spec.required_ruby_version = ">= 2.3.0"

  spec.add_development_dependency "bundler", "~> 1.14"
  spec.add_development_dependency "rake", "~> 10.0"
  spec.add_development_dependency "test-unit"
end