forked from pivotal-cf/bookbinder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbookbinder.gemspec
38 lines (34 loc) · 1.8 KB
/
bookbinder.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
require 'base64'
Gem::Specification.new do |s|
s.name = 'bookbindery'
s.version = '7.4.2'
s.summary = 'Markdown to Rackup application documentation generator'
s.description = 'A command line utility to be run in Book repositories to stitch together their constituent Markdown repos into a static-HTML-serving application'
s.authors = ['Mike Grafton', 'Lucas Marks', 'Gavin Morgan', 'Nikhil Gajwani', 'Dan Wendorf', 'Brenda Chan', 'Matthew Boedicker', 'Frank Kotsianas', 'Elena Sharma', 'Christa Hartsock', 'Michael Trestman']
s.email = Base64.decode64('Z21vcmdhbkBnb3Bpdm90YWwuY29t') # Gavin's
s.files = Dir['lib/**/*'] + Dir['template_app/**/*'] + Dir['master_middleman/**/*'] + Dir['install_bin/**/*'] + Dir['bookbinder.gemspec']
s.homepage = 'https://github.com/pivotal-cf/bookbinder'
s.license = 'MIT'
s.bindir = 'install_bin'
s.executable = 'bookbinder'
s.required_ruby_version = '>= 2.0'
s.add_runtime_dependency 'fog-aws', ['~> 0.7.1']
s.add_runtime_dependency 'ansi', ['~> 1.4']
s.add_runtime_dependency 'unf', ['~> 0.1']
s.add_runtime_dependency 'middleman', ['~> 3.4.0']
s.add_runtime_dependency 'middleman-livereload', ['~> 3.4.3']
s.add_runtime_dependency 'middleman-syntax', ['~> 2.0']
s.add_runtime_dependency 'rouge', '!= 1.9.1'
s.add_runtime_dependency 'redcarpet', ['~> 3.2.3']
s.add_runtime_dependency 'anemone'
s.add_runtime_dependency 'css_parser'
s.add_runtime_dependency 'puma'
s.add_runtime_dependency 'rack-rewrite'
s.add_runtime_dependency 'therubyracer'
s.add_runtime_dependency 'git', '~> 1.2.8'
s.add_runtime_dependency 'sendgrid-ruby'
s.add_development_dependency 'license_finder'
s.add_development_dependency 'pry-byebug'
s.add_development_dependency 'rake'
s.add_development_dependency 'rspec'
end