-
Notifications
You must be signed in to change notification settings - Fork 2
/
editions.gemspec
50 lines (40 loc) · 1.67 KB
/
editions.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# -*- encoding: utf-8 -*-
require File.expand_path('lib/editions/version', File.dirname(__FILE__))
Gem::Specification.new do |s|
s.name = 'editions'
s.version = Editions::VERSION
s.summary = 'Publish periodicals generated from articles composed in AsciiDoc'
s.description = <<-EOS
A toolchain for publishing periodicals that are aggregated from articles stored in GitHub repositories and composed in AsciiDoc.
EOS
s.author = 'OpenDevise Inc.'
s.email = 'editions@opendevise.io'
s.homepage = 'http://opendevise.io/projects/editions'
s.license = 'MIT'
s.required_ruby_version = '>= 1.9'
begin
s.files = `git ls-files -z -- */* {README.adoc,LICENSE.adoc,Rakefile}`.split "\0"
rescue
s.files = Dir['**/*']
end
s.executables = %w(editions)
s.test_files = s.files.grep(/^(?:test|spec|feature)\/.*$/)
s.require_paths = %w(lib)
s.has_rdoc = true
s.rdoc_options = %(--charset=UTF-8 --title=Editions --main=README.adoc -ri)
s.extra_rdoc_files = %w(README.adoc LICENSE.adoc)
s.add_development_dependency 'rake', '~> 10.0'
s.add_development_dependency 'rdoc', '~> 4.1.0'
s.add_development_dependency 'aruba', '~> 0.5.4'
s.add_runtime_dependency 'gli', '~> 2.10.0'
s.add_runtime_dependency 'octokit', '~> 3.8.0'
s.add_runtime_dependency 'commander', '~> 4.2.0'
s.add_runtime_dependency 'rugged', '~> 0.23.0b1'
s.add_runtime_dependency 'asciidoctor', '~> 1.5.0'
s.add_runtime_dependency 'asciidoctor-epub3', '1.0.0.alpha.1'
s.add_runtime_dependency 'asciidoctor-pdf', '1.5.0.alpha.1'
s.add_runtime_dependency 'rmagick', '~> 2.13.2'
s.add_runtime_dependency 'safe_yaml', '~> 1.0.3'
# optional
#s.add_runtime_dependency 'netrc', '0.7.7'
end