Sha256: b18d36bc9aadb5529dfbd5efa4a604f26bfa7d991254c06d1782dd0004bac10d

Contents?: true

Size: 1.42 KB

Versions: 2

Compression:

Stored size: 1.42 KB

Contents

# Copyright (c) 2020 Jerome Arbez-Gindre
# frozen_string_literal: true

lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require('asciidoctor/defmastership/version')

Gem::Specification.new do |spec|
  spec.metadata = {
    'rubygems_mfa_required' => 'true'
  }

  spec.required_ruby_version = '>= 2.7'
  spec.name          = 'asciidoctor-defmastership'
  spec.version       = Asciidoctor::DefMastership::VERSION
  spec.authors       = ['Jérôme Arbez-Gindre']
  spec.email         = ['jeromearbezgindre@gmail.com']
  spec.licenses      = ['MIT']

  spec.summary = %(asciidoctor extension to handle applicable
                         definition references)

  spec.description = %(asciidoctor-defmastership allows to define
                   applicable definitions references, link to other references
                   (internal or external))

  spec.homepage    = 'https://gitlab.com/jjag/asciidoctor-defmastership/'

  # 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.chdir(File.expand_path(__dir__)) do
      `git ls-files -z`.split("\x0").reject do |f|
        f.match(%r{^(test|spec|features)/})
      end
    end
  spec.require_paths = ['lib']

  spec.add_dependency('asciidoctor', '~> 2.0')
  spec.add_dependency('defmastership', '>= 1.0.16', '< 2.0')
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
asciidoctor-defmastership-1.0.7 asciidoctor-defmastership.gemspec
asciidoctor-defmastership-1.0.6 asciidoctor-defmastership.gemspec