Sha256: 021f61a7495589edd4cc1cded6a9f8628cb4a679bbb27e81ffe6b1f92267ecca

Contents?: true

Size: 1.46 KB

Versions: 13

Compression:

Stored size: 1.46 KB

Contents

# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)

require 'bibtex/version'

Gem::Specification.new do |s|
  s.name        = 'bibtex-ruby'
  s.version     = BibTeX::Version::STRING.dup
  s.platform    = Gem::Platform::RUBY
  s.authors     = ['Sylvester Keil']
  s.email       = ['sylvester@keil.or.at']
  s.homepage    = 'http://inukshuk.github.com/bibtex-ruby'
  s.license     = 'GPL-3'

  s.summary     = 'A BibTeX parser, converter and API for Ruby.'
  s.description = <<-END_DESCRIPTION.gsub(/^\s+/, '')
		BibTeX-Ruby is the Rubyist's swiss-army-knife for all things BibTeX. It
    includes a parser for all common BibTeX objects (@string, @preamble,
    @comment and regular entries) and a sophisticated name parser that
    tokenizes correctly formatted names; BibTeX-Ruby recognizes BibTeX string
    replacements, joins values containing multiple strings or variables,
    supports cross-references, and decodes common LaTeX formatting
    instructions to unicode; if you are in a hurry, it also allows for easy
    export/conversion to formats such as YAML, JSON, CSL, and XML (BibTeXML).
	END_DESCRIPTION
	
  s.add_runtime_dependency('latex-decode', ['>=0.0.6'])
  s.add_runtime_dependency('multi_json', ['~>1.3'])

  s.files        = File.open('Manifest').readlines.map(&:chomp)
  s.test_files   = Dir.glob('test/**/test*.rb')
  s.executables  = []
  s.require_path = 'lib'

  s.has_rdoc  = 'yard'
end

# vim: syntax=ruby

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
bibtex-ruby-3.0.1 bibtex-ruby.gemspec
bibtex-ruby-3.0.0 bibtex-ruby.gemspec
bibtex-ruby-2.3.4 bibtex-ruby.gemspec
bibtex-ruby-2.3.3 bibtex-ruby.gemspec
bibtex-ruby-2.3.2 bibtex-ruby.gemspec
bibtex-ruby-2.3.1 bibtex-ruby.gemspec
bibtex-ruby-2.3.0 bibtex-ruby.gemspec
bibtex-ruby-2.2.2 bibtex-ruby.gemspec
bibtex-ruby-2.2.1 bibtex-ruby.gemspec
bibtex-ruby-2.2.0 bibtex-ruby.gemspec
bibtex-ruby-2.1.2 bibtex-ruby.gemspec
bibtex-ruby-2.1.1 bibtex-ruby.gemspec
bibtex-ruby-2.1.0 bibtex-ruby.gemspec