File: kdl.gemspec

package info (click to toggle)
ruby-kdl 1.0.3-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 480 kB
  • sloc: ruby: 6,667; yacc: 72; sh: 5; makefile: 4
file content (28 lines) | stat: -rw-r--r-- 1,108 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
require_relative 'lib/kdl/version'

Gem::Specification.new do |spec|
  spec.name          = "kdl"
  spec.version       = KDL::VERSION
  spec.authors       = ["Danielle Smith"]
  spec.email         = ["danini@hey.com"]

  spec.summary       = %q{KDL Document Language}
  spec.description   = %q{Ruby implementation of the KDL Document Language Spec}
  spec.homepage      = "https://kdl.dev"
  spec.license       = "MIT"
  spec.required_ruby_version = Gem::Requirement.new(">= 2.4.0")

  spec.metadata["homepage_uri"] = spec.homepage
  spec.metadata["source_code_uri"] = "https://github.com/danini-the-panini/kdl-rb"
  spec.metadata["changelog_uri"] = "https://github.com/danini-the-panini/kdl-rb/releases"

  # Specify which files should be added to the gem when it is released.
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
  spec.files         = Dir['lib/**/**/*.rb']
  spec.bindir        = "exe"
  spec.require_paths = ["lib"]

  spec.add_development_dependency 'racc', '~> 1.5'
  spec.add_dependency 'simpleidn', '~> 0.2.1'
  spec.add_dependency 'bigdecimal'
end