-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyledown2.gemspec
25 lines (20 loc) · 1003 Bytes
/
styledown2.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
# coding: utf-8
require File.expand_path('../lib/styledown/version', __FILE__)
Gem::Specification.new do |spec|
spec.name = 'styledown2'
spec.version = Styledown::VERSION
spec.authors = ['Rico Sta. Cruz']
spec.email = ['rstacruz@users.noreply.github.com']
spec.summary = 'Write maintainable CSS styleguides using Markdown'
spec.description = 'Styledown lets you write maintainable CSS styleguides using Markdown.'
spec.homepage = 'https://github.com/styledown/styledown2'
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.add_dependency 'styledown2-source', "= #{Styledown::VERSION}"
spec.add_dependency 'execjs', '< 3.0.0'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'minitest'
end