Sha256: 92b20bd1df927db1c069f3d34aa412e1d778bae53237c9cbe061cdcf18fd7580

Contents?: true

Size: 1.04 KB

Versions: 1

Compression:

Stored size: 1.04 KB

Contents

# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)

require 'csl/version'

EXCLUDES = %w{
  .coveralls.yml
  .travis.yml
  .csl.gemspec
  .simplecov
  .rspec
} | `git ls-files -- {spec,features}/*`.split("\n")

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.license     = 'AGPL-3.0'
  s.date        = Time.now.strftime('%Y-%m-%d')
  s.summary     = 'A Ruby CSL parser and library'
  s.description = <<~EOS
		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.
	EOS


  s.required_ruby_version = '>= 2.2'
  s.add_dependency('namae', ['~>1.0'])

  s.files        = `git ls-files`.split("\n") - EXCLUDES
  s.require_path = 'lib'
  s.has_rdoc     = 'yard'
end

# vim: syntax=ruby

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
csl-1.5.0 csl.gemspec