-
Notifications
You must be signed in to change notification settings - Fork 0
/
swift-playground.gemspec
29 lines (26 loc) · 1.24 KB
/
swift-playground.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
# Ensure we require the local version and not one we might have installed already
require File.join([File.dirname(__FILE__), 'lib', 'swift', 'playground', 'metadata.rb'])
spec = Gem::Specification.new do |s|
s.name = 'swift-playground'
s.version = Swift::Playground::VERSION
s.authors = ['Mark Haylock']
s.email = ['[email protected]']
s.homepage = 'https://github.com/resolve/swift-playground'
s.license = 'MIT'
s.summary = Swift::Playground::SUMMARY
s.description = Swift::Playground::DESCRIPTION
s.files = `git ls-files -z`.split("\x0")
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.require_paths = ['lib']
s.required_ruby_version = '>= 2.0.0'
s.add_runtime_dependency 'html-pipeline', '~> 1.11'
s.add_runtime_dependency 'activesupport', '~> 4.0'
s.add_runtime_dependency 'github-markdown', '~> 0.6.7'
s.add_runtime_dependency 'sanitize', '~> 3.0'
s.add_runtime_dependency 'gemoji', '~> 2.1.0'
s.add_runtime_dependency 'gli', '~> 2.12.2'
s.add_runtime_dependency 'paint', '~> 0.9.0'
s.add_runtime_dependency 'highline', '~> 1.6.21'
s.add_runtime_dependency 'sass', '~> 3.2'
end