Sha256: ba2a01f1f3ae9e4a2c2f391e90838cd04ad30555d2e5163542cb17523e07dcf4
Contents?: true
Size: 1.98 KB
Versions: 4
Compression:
Stored size: 1.98 KB
Contents
# coding: utf-8 lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "asciidoctor-bibliography/version" Gem::Specification.new do |spec| # rubocop:disable Metrics/BlockLength spec.name = "asciidoctor-bibliography" spec.version = AsciidoctorBibliography::VERSION spec.authors = ["Ribose Inc."] spec.email = ["open.source@ribose.com"] spec.summary = 'Citations and bibliography the "asciidoctor-way"' spec.description = <<~END asciidoctor-bibliography lets you handle citations and bibliography the "asciidoctor-way"! Its syntax is designed to be native-asciidoctor: * single cite `cite:[key]`; * contextual cite `cite[key, page=3]`; * multiple cites `cite:[key1]+[key2]`; * full cite `fullcite:[key]`; and * TeX-compatible macros including `citep:[key]`, `citet:[key]` and friends. Citation output styles are fully bridged to the CSL library, supporting formats such as IEEE, APA, Chicago, DIN and ISO 690. The `bibliography::[]` command generates a full reference list that adheres to your configured citation style. END spec.homepage = "https://github.com/riboseinc/asciidoctor-bibliography" spec.license = "MIT" spec.require_paths = ["lib"] spec.files = `git ls-files`.split("\n") spec.test_files = `git ls-files -- {spec}/*`.split("\n") spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0") spec.add_dependency "asciidoctor", "~> 1.5.6" spec.add_dependency "citeproc-ruby", "~> 1.1.7" spec.add_dependency "csl-styles", "~> 1.0.1" spec.add_dependency "latex-decode", "~> 0.2.2" spec.add_dependency "bibtex-ruby", "~> 4.4.4" spec.add_development_dependency "bundler" spec.add_development_dependency "byebug" spec.add_development_dependency "rspec" spec.add_development_dependency "rake" spec.add_development_dependency "simplecov" spec.add_development_dependency "yard" spec.add_development_dependency "rubocop" end
Version data entries
4 entries across 4 versions & 1 rubygems