-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeeplink.gemspec
More file actions
25 lines (19 loc) · 824 Bytes
/
Copy pathdeeplink.gemspec
File metadata and controls
25 lines (19 loc) · 824 Bytes
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
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'deeplink/version'
Gem::Specification.new do |spec|
spec.required_ruby_version = '>= 2.5.0'
spec.name = 'deeplink'
spec.version = Deeplink::VERSION
spec.authors = ['Ricardo Otero']
spec.email = ['oterosantos@gmail.com']
spec.summary = 'Gem to manage deep links parsing.'
spec.description = 'It mitigates the lack of support for mobile deep links on the URI module.'
spec.homepage = 'https://github.com/rikas/deeplink'
spec.license = 'MIT'
spec.files = Dir.glob('{lib}/**/*', File::FNM_DOTMATCH)
spec.bindir = 'exe'
spec.require_paths = ['lib']
spec.metadata['rubygems_mfa_required'] = 'true'
end