forked from brightbit/markdown_checkboxes
-
Notifications
You must be signed in to change notification settings - Fork 1
/
markdown_checkboxes.gemspec
38 lines (31 loc) · 1.21 KB
/
markdown_checkboxes.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |s|
s.name = 'markdown_checkboxes'
s.version = '1.1.0'
s.date = '2017-03-28'
s.summary = 'Markdown with checkbox support'
s.description = 'Adding checkbox rendering functionality on top of the redcarpet markdown parser'
s.authors = ['Brightbit Apps']
s.email = '[email protected]'
s.homepage = 'http://rubygems.org/gems/markdown_checkboxes'
s.license = 'MIT'
if s.respond_to?(:metadata)
s.metadata['allowed_push_host'] = 'https://rubygems.org'
else
raise 'RubyGems 2.0 or newer is required to protect against ' \
'public gem pushes.'
end
s.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
f.match(/\.gem\z/)
end
s.bindir = 'exe'
s.executables = s.files.grep(%r{^exe/}) { |f| File.basename(f) }
s.require_paths = %w(lib)
s.add_runtime_dependency 'redcarpet', '~> 3.4'
s.add_runtime_dependency 'actionpack', '~> 5.0'
s.add_development_dependency 'rake-compiler', '~> 1.0'
s.add_development_dependency 'test-unit', '~> 3.2'
end