-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathgithub-markdown-preview.gemspec
30 lines (26 loc) · 1.2 KB
/
github-markdown-preview.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path('../lib', __FILE__)
require 'github-markdown-preview/version'
Gem::Specification.new do |s|
s.name = 'github-markdown-preview'
s.version = GithubMarkdownPreview::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['Daniel Marcotte']
s.email = 'dmarcotte@gmail.com'
s.homepage = 'https://github.com/dmarcotte/github-markdown-preview'
s.summary = %q{Use your favorite editor plus the usual edit/refresh cycle to quickly write and polish your Github markdown}
s.description = %q{Local previews for Github markdown}
s.license = 'MIT'
s.add_dependency 'listen', '3.1.5'
s.add_dependency 'html-pipeline', '2.7.1'
s.add_dependency 'commonmarker', '0.17.9'
s.add_dependency 'sanitize', '4.6.4'
s.add_dependency 'github-markdown', '0.6.9'
s.add_dependency 'gemoji', '3.0.0'
s.add_development_dependency 'minitest', '~> 5.11.3'
s.add_development_dependency 'rake', '~> 12.3.1'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = %w(lib)
end