Sha256: d393a93822aa9238c12513b501cdcdab36a165947f4151e1d953a3875e54247a

Contents?: true

Size: 1.4 KB

Versions: 26

Compression:

Stored size: 1.4 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'])

  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

26 entries across 26 versions & 1 rubygems

Version Path
bibtex-ruby-4.2.0 bibtex-ruby.gemspec
bibtex-ruby-4.1.2 bibtex-ruby.gemspec
bibtex-ruby-4.1.1 bibtex-ruby.gemspec
bibtex-ruby-4.1.0 bibtex-ruby.gemspec
bibtex-ruby-4.0.16 bibtex-ruby.gemspec
bibtex-ruby-4.0.15 bibtex-ruby.gemspec
bibtex-ruby-4.0.14 bibtex-ruby.gemspec
bibtex-ruby-4.0.13 bibtex-ruby.gemspec
bibtex-ruby-4.0.12 bibtex-ruby.gemspec
bibtex-ruby-4.0.11 bibtex-ruby.gemspec
bibtex-ruby-4.0.10 bibtex-ruby.gemspec
bibtex-ruby-4.0.9 bibtex-ruby.gemspec
bibtex-ruby-4.0.8 bibtex-ruby.gemspec
bibtex-ruby-4.0.7 bibtex-ruby.gemspec
bibtex-ruby-4.0.6 bibtex-ruby.gemspec
bibtex-ruby-4.0.5 bibtex-ruby.gemspec
bibtex-ruby-4.0.4 bibtex-ruby.gemspec
bibtex-ruby-4.0.3 bibtex-ruby.gemspec
bibtex-ruby-4.0.2 bibtex-ruby.gemspec
bibtex-ruby-4.0.1 bibtex-ruby.gemspec