forked from Shopify/event_stream_parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
event_stream_parser.gemspec
35 lines (26 loc) · 1.17 KB
/
event_stream_parser.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
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'event_stream_parser/version'
Gem::Specification.new do |spec|
spec.name = 'event_stream_parser'
spec.version = EventStreamParser::VERSION
spec.platform = Gem::Platform::RUBY
spec.authors = ['Ates Goral']
spec.email = ['ates.goral@shopify.com']
spec.summary = 'A spec-compliant event stream parser'
spec.homepage = 'https://github.com/Shopify/event_stream_parser'
spec.license = 'MIT'
spec.required_ruby_version = '>= 2.6.0'
spec.required_rubygems_version = '>= 1.3.7'
spec.metadata = {
'bug_tracker_uri' => 'https://github.com/Shopify/event_stream_parser/issues',
'changelog_uri' => 'https://github.com/Shopify/event_stream_parser/blob/main/CHANGELOG.md',
'source_code_uri' => 'https://github.com/Shopify/event_stream_parser',
'allowed_push_host' => 'https://rubygems.org',
'rubygems_mfa_required' => 'true'
}
spec.files = Dir.glob('{lib}/**/*') + ['LICENSE.md', 'README.md']
spec.extra_rdoc_files = ['README.md']
spec.require_paths = ['lib']
end