bibtex-ruby.gemspec in bibtex-ruby-1.3.12 vs bibtex-ruby.gemspec in bibtex-ruby-2.0.0pre1
- old
+ new
@@ -9,22 +9,28 @@
s.version = BibTeX::Version::STRING.dup
s.platform = Gem::Platform::RUBY
s.authors = ['Sylvester Keil']
s.email = ['http://sylvester.keil.or.at']
s.homepage = 'http://inukshuk.github.com/bibtex-ruby'
- s.summary = 'A BibTeX parser and converter written in Ruby.'
- s.description = 'A (fairly complete) BibTeX library and parser written in Ruby. Includes a name parser and supports regular BibTeX entries, @comments, string replacement via @string. Allows for easy export/conversion to formats such as YAML, JSON, and XML.'
s.license = 'GPL-3'
+ s.summary = 'A BibTeX parser, converter and API for Ruby.'
+ s.description = <<-END_DESCRIPTION
+ 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.3'])
+ s.add_runtime_dependency('multi_json', ['~>1.0'])
s.add_development_dependency('rake', ['~>0.9'])
s.add_development_dependency('racc', ['~>1.4'])
- s.add_development_dependency('mini_shoulda', ['~>0.3'])
- s.add_development_dependency('mynyml-redgreen', ['~>0.7'])
- s.add_development_dependency('autowatchr', ['~>0.1'])
- s.add_development_dependency('cucumber', ['~>0.10'])
- s.add_development_dependency('json', ['~>1.5'])
s.add_development_dependency('rdoc', ['~>3.9'])
s.files = File.open('Manifest').readlines.map(&:chomp)
s.test_files = Dir.glob('test/**/test*.rb')
s.executables = []
\ No newline at end of file