-
Notifications
You must be signed in to change notification settings - Fork 3
/
offline-sort.gemspec
38 lines (31 loc) · 1.42 KB
/
offline-sort.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
33
34
35
36
37
38
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'offline_sort/version'
Gem::Specification.new do |spec|
spec.name = 'offline-sort'
spec.version = OfflineSort::VERSION
spec.authors = ['Matthew Cross']
spec.email = ['[email protected]']
spec.description = 'Offline sort for any enumerable with pluggable serialization strategies'
spec.summary = 'Offline sort for any enumerable with pluggable serialization strategies'
spec.homepage = 'https://github.com/salsify/offline-sort'
spec.license = 'MIT'
if spec.respond_to?(:metadata)
spec.metadata['allowed_push_host'] = 'https://rubygems.org'
spec.metadata['rubygems_mfa_required'] = 'true'
else
raise 'RubyGems 2.0 or newer is required to set allowed_push_host.'
end
spec.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
spec.required_ruby_version = '>= 2.6'
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
spec.add_development_dependency 'bundler'
spec.add_development_dependency 'msgpack'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'rspec'
spec.add_development_dependency 'rspec_junit_formatter'
spec.add_development_dependency 'salsify_rubocop', '~> 1.0.1'
end