forked from inukshuk/bibtex-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbibtex-ruby.gemspec
More file actions
45 lines (36 loc) · 1.92 KB
/
bibtex-ruby.gemspec
File metadata and controls
45 lines (36 loc) · 1.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# -*- 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 = '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.date = Time.now
s.required_rubygems_version = '>= 1.3.6'
s.rubyforge_project = s.name
s.add_runtime_dependency('latex-decode', ['>= 0.0.1'])
s.add_development_dependency('rake', ['>= 0.8'])
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('ruby-prof', ['>= 0.10'])
s.add_development_dependency('gnuplot', ['>= 2.3'])
s.add_development_dependency('rdoc', ['>= 3.6'])
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 = true
s.rdoc_options = %w{--line-numbers --inline-source --title "BibTeX-Ruby Documentation" --main README.md --webcvs=http://github.com/inukshuk/bibtex-ruby/tree/master/}
s.extra_rdoc_files = %w{README.md}
end
# vim: syntax=ruby