-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathjs_regex.gemspec
27 lines (21 loc) · 964 Bytes
/
js_regex.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
# encoding: utf-8
dir = File.expand_path(__dir__)
require File.join(dir, 'lib', 'js_regex', 'version')
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = 'js_regex'
s.version = JsRegex::VERSION
s.license = 'MIT'
s.summary = 'Converts Ruby regexes to JavaScript regexes.'
s.description = 'JsRegex converts Ruby\'s native regular expressions for '\
'JavaScript, taking care of various incompatibilities '\
'and returning warnings for unsolvable differences.'
s.authors = ['Janosch Müller']
s.email = ['[email protected]']
s.homepage = 'https://github.com/jaynetics/js_regex'
s.files = Dir[File.join('lib', '**', '*.{csv,rb}')]
s.required_ruby_version = '>= 2.1.0'
s.add_dependency 'character_set', '~> 1.4'
s.add_dependency 'regexp_parser', '~> 2.10'
s.add_dependency 'regexp_property_values', '~> 1.0'
end