File: gitlab-markup.gemspec

package info (click to toggle)
ruby-gitlab-markup 1.9.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 504 kB
  • sloc: ruby: 369; python: 137; sh: 16; makefile: 15
file content (30 lines) | stat: -rw-r--r-- 1,325 bytes parent folder | download | duplicates (2)
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
require File.expand_path('../lib/github-markup', __FILE__)

Gem::Specification.new do |s|
  s.name          = 'gitlab-markup'
  s.version       = GitHub::Markup::VERSION
  s.summary       = 'Fork from github-markup GitLab uses to render non markdown content'
  s.description   = 'This gem is used by GitLab to render any non Markdown markup'
  s.authors       = ['Chris Wanstrath']
  s.email         = 'chris@ozmm.org'
  s.homepage      = 'https://gitlab.com/gitlab-org/gitlab-markup'
  s.license       = 'MIT'

  s.files         = `git ls-files`.split($\)
  s.executables   = s.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
  s.test_files    = s.files.grep(%r{^(test|spec|features)/})
  s.require_paths = %w[lib]

  s.metadata = {
    'bug_tracker_uri' => 'https://gitlab.com/gitlab-org/gitlab-markup/issues',
    'changelog_uri'   => 'https://gitlab.com/gitlab-org/gitlab-markup/blob/master/HISTORY.md',
    'source_code_uri' => 'https://gitlab.com/gitlab-org/gitlab-markup'
  }

  s.add_development_dependency 'activesupport', '~> 4.0'
  s.add_development_dependency 'html-pipeline', '~> 2.14'
  s.add_development_dependency 'minitest', '~> 5.4.3'
  s.add_development_dependency 'nokogiri', '~> 1.13.8'
  s.add_development_dependency 'nokogiri-diff', '~> 0.2.0'
  s.add_development_dependency 'sanitize', '~> 5.1'
end