File: scanf.gemspec

package info (click to toggle)
ruby-scanf 1.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 140 kB
  • sloc: ruby: 624; sh: 4; makefile: 4
file content (25 lines) | stat: -rw-r--r-- 900 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
# coding: utf-8
# frozen_string_literal: true

Gem::Specification.new do |spec|
  spec.name          = "scanf"
  spec.version       = "1.0.0"
  spec.date          = '2017-12-11'
  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