-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrcite.gemspec
29 lines (24 loc) · 1.13 KB
/
rcite.gemspec
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
Gem::Specification.new do |s|
s.name = 'rcite'
s.version = '0.1.0'
s.summary = "Citation and bibliography generator."
s.description = "RCite parses BibTeX files and generates citations as well "+
"as bibliography entries based on styles. Its key feature "+
"is the simple style syntax that sets it apart from BibTeX, "+
"BibLaTeX and CSL."
s.license = 'MIT'
s.authors = ["Jannis Limperg"]
s.email = '[email protected]'
s.homepage = 'http://rubygems.org/gems/rcite'
s.files = Dir["lib/**/*.rb"] + Dir["bin/**/*"] + Dir["spec/**/*"]
s.executables << 'rcite'
s.add_runtime_dependency 'bibtex-ruby', '~> 2.0'
s.add_runtime_dependency 'slop', '~> 3.0'
s.add_runtime_dependency 'require_all', '~> 1.2'
s.add_development_dependency 'rspec', '~> 2.9'
s.add_development_dependency 'simplecov', '~> 0.6'
s.add_development_dependency 'yard', '~> 0.7'
s.add_development_dependency 'redcarpet', '~> 2.1'
s.add_development_dependency 'rake', '~> 0.9'
s.add_development_dependency 'cucumber', '~> 1.1'
end