This repository was archived by the owner on May 11, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgap_intelligence.gemspec
More file actions
44 lines (35 loc) · 1.57 KB
/
gap_intelligence.gemspec
File metadata and controls
44 lines (35 loc) · 1.57 KB
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
39
40
41
42
43
44
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'gap_intelligence/version'
Gem::Specification.new do |spec|
spec.name = 'gap_intelligence'
spec.version = GapIntelligence::VERSION
spec.authors = ['Cesar Camacho',
'Eugene Correia',
'Timur Gabdrakipov',
'Caitlin Goldman',
'Eric Gomez',
'Shavkat Samatov',
'Pavel Skripin',
'Ethan Soutar-Rau']
spec.email = ['ccamacho@gapintelligence.com']
spec.summary = 'A Ruby interface to the gap intelligence API.'
spec.description = 'A Ruby interface to the gap intelligence API.'
spec.homepage = ''
spec.license = ''
if spec.respond_to?(:metadata)
spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com'"
else
raise 'RubyGems 2.0 or newer is required to protect against public gem pushes.'
end
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
spec.add_development_dependency 'bundler', ">= 2.2.10"
spec.add_development_dependency 'rake', '~> 12.3.3'
spec.add_development_dependency 'rspec', '~> 3.0'
spec.add_development_dependency 'webmock', '~> 1.24.2'
spec.add_development_dependency 'factory_girl', '~> 4.0'
spec.add_runtime_dependency 'oauth2', '~> 1.1.0'
end