Sha256: 85a44f5a3e2cb0916bc6d133fffd29926328bf168445a3faed3e8082695143d0

Contents?: true

Size: 1.17 KB

Versions: 1

Compression:

Stored size: 1.17 KB

Contents

# -*- mode: enh-ruby -*-
require_relative 'lib/uri/ni/version'

Gem::Specification.new do |spec|
  spec.name          = 'uri-ni'
  spec.version       = URI::NI::VERSION
  spec.authors       = ['Dorian Taylor']
  spec.email         = ['code@doriantaylor.com']
  spec.license       = 'Apache-2.0'
  spec.homepage      = 'https://github.com/doriantaylor/rb-uri-ni'
  spec.summary       = 'URI handler for RFC6920 ni:/// URIs'
  spec.description = <<-DESC
  DESC

  spec.metadata['homepage_uri'] = spec.homepage

  spec.files         = Dir.chdir(File.expand_path('..', __FILE__)) do
    `git ls-files -z`.split("\x0").reject do |f|
      f.match(%r{^(test|spec|features)/})
    end
  end
  spec.bindir        = 'exe'
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ['lib']

  # ruby
  spec.required_ruby_version = Gem::Dependency.new('>= 2.3.0')

  # dev/test dependencies
  spec.add_development_dependency 'bundler', '~> 2'
  # bundler put these in the gemfile i dunno wtf
  #spec.add_development_dependency 'rake',    '~> 12.0'
  #spec.add_development_dependency 'rspec',   '~> 3.0'

  # we need uri and digest and base64 but those are all in core
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
uri-ni-0.1.0 uri-ni.gemspec