Sha256: fd2743a5006dfb5517559733020ffed9e73ad803a0afea1ed525746d1f6a50a6
Contents?: true
Size: 978 Bytes
Versions: 3
Compression:
Stored size: 978 Bytes
Contents
# -*- encoding: utf-8 -*- lib = File.expand_path('../lib/', __FILE__) $:.unshift lib unless $:.include?(lib) require 'csl/version' Gem::Specification.new do |s| s.name = 'csl' s.version = CSL::VERSION.dup s.platform = Gem::Platform::RUBY s.authors = ['Sylvester Keil'] s.email = ['http://sylvester.keil.or.at'] s.homepage = 'https://github.com/inukshuk/csl-ruby' s.summary = 'A Ruby CSL parser and library' s.description = """ A Ruby parser and full API for the Citation Style Language (CSL), an open XML-based language to describe the formatting of citations and bibliographies. """ s.license = 'AGPL' s.date = Time.now.strftime('%Y-%m-%d') s.add_dependency('namae', ['~>0.7']) s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.executables = [] s.require_path = 'lib' s.has_rdoc = 'yard' end # vim: syntax=ruby
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
csl-1.0.2 | csl.gemspec |
csl-1.0.1 | csl.gemspec |
csl-1.0.0 | csl.gemspec |