-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathinteractsh.gemspec
25 lines (21 loc) · 917 Bytes
/
interactsh.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
# frozen_string_literal: true
Gem::Specification.new do |spec|
spec.name = 'interactsh'
spec.version = '0.9.7'
spec.authors = ['Joshua MARTINELLE']
spec.email = ['[email protected]']
spec.summary = 'Interactsh Ruby Library'
spec.homepage = 'https://github.com/JoshuaMart/Interactsh-Library'
spec.license = 'MIT'
spec.required_ruby_version = '>= 3.1.6'
spec.metadata = {
"source_code_uri" => "https://github.com/JoshuaMart/Interactsh-Library",
"homepage_uri" => "https://github.com/JoshuaMart/Interactsh-Library",
"github_repo" => "https://github.com/JoshuaMart/Interactsh-Library"
}
spec.add_dependency('jose', '~> 1.2', '>= 1.2.0')
spec.add_dependency('ruby_xid', '~> 1.0', '>= 1.0.7')
spec.add_dependency('securerandom', '~> 0.2.0')
spec.add_dependency('typhoeus', '~> 1.4', '>= 1.4.0')
spec.files = Dir['lib/**/*.rb']
end