-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlinkify-it-rb.gemspec
More file actions
22 lines (17 loc) · 848 Bytes
/
Copy pathlinkify-it-rb.gemspec
File metadata and controls
22 lines (17 loc) · 848 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require File.expand_path('../lib/linkify-it-rb/version.rb', __FILE__)
Gem::Specification.new do |gem|
gem.name = 'linkify-it-rb'
gem.version = LinkifyIt::VERSION
gem.authors = ["Brett Walker", "Vitaly Puzrin"]
gem.email = 'github@digitalmoksha.com'
gem.summary = "linkify-it for motion-markdown-it in Ruby"
gem.description = "Ruby version of linkify-it for motion-markdown-it, for Ruby and RubyMotion"
gem.homepage = 'https://github.com/digitalmoksha/linkify-it-rb'
gem.licenses = ['MIT']
gem.files = Dir.glob('lib/**/*.rb')
gem.files << 'README.md'
gem.test_files = Dir.glob('spec/**/*.rb')
gem.require_paths = ["lib"]
gem.add_dependency 'uc.micro-rb', '~> 1.0'
gem.add_development_dependency 'motion-expect' # required for Travis build to work
end