Sha256: f3f7ffae51781cbe631cea950542632b9ec2e678b90eed3a78ae0b9f55ed4554

Contents?: true

Size: 1.08 KB

Versions: 2

Compression:

Stored size: 1.08 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.licenses     = ['AGPL-3.0','BSD-2-Clause']
  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_runtime_dependency('namae', ['~>1.0'])
  s.add_runtime_dependency('rexml')

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

# vim: syntax=ruby

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
csl-2.0.0 csl.gemspec
csl-1.6.0 csl.gemspec