-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstring_splitter.gemspec
32 lines (26 loc) · 1.2 KB
/
string_splitter.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
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'string_splitter/version'
Gem::Specification.new do |spec|
spec.name = 'string_splitter'
spec.version = StringSplitter::VERSION
spec.author = 'chocolateboy'
spec.email = '[email protected]'
spec.summary = 'String#split on steroids'
spec.homepage = 'https://github.com/chocolateboy/string_splitter'
spec.license = 'Artistic-2.0'
spec.files = `git ls-files -z *.md bin lib`.split("\0")
spec.required_ruby_version = '>= 2.3'
spec.metadata = {
'allowed_push_host' => 'https://rubygems.org',
'bug_tracker_uri' => 'https://github.com/chocolateboy/string_splitter/issues',
'changelog_uri' => 'https://github.com/chocolateboy/string_splitter/blob/master/CHANGELOG.md',
'source_code_uri' => 'https://github.com/chocolateboy/string_splitter',
}
spec.add_development_dependency 'bundler', '~> 2.1'
spec.add_development_dependency 'minitest', '~> 5.0'
spec.add_development_dependency 'minitest-power_assert', '~> 0.3'
spec.add_development_dependency 'minitest-reporters', '~> 1.3'
spec.add_development_dependency 'rake', '~> 13.0'
end