-
Notifications
You must be signed in to change notification settings - Fork 4
/
girlscout.gemspec
33 lines (28 loc) · 1.19 KB
/
girlscout.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
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |s|
s.name = 'girlscout'
s.version = '0.4.0'
s.date = '2015-12-16'
s.summary = 'Integrate your support tooling with HelpScout API.'
s.description = 'Provides integration with HelpScout REST API.'
s.authors = ['Chakrit Wichian']
s.email = '[email protected]'
s.homepage = 'https://www.omise.co'
s.license = 'MIT'
s.files = `git ls-files -z lib`.split("\x0")
s.require_paths = ['lib']
s.add_runtime_dependency 'excon', '~>0.62'
s.add_runtime_dependency 'json', '>=2.1'
s.add_development_dependency 'bundler', '~>1.16'
s.add_development_dependency 'guard', '~>2.14'
s.add_development_dependency 'guard-minitest', '~>2.4'
s.add_development_dependency 'minitest', '~>5.11'
s.add_development_dependency 'minitest-reporters', '~>1.3'
s.add_development_dependency 'overcommit', '~>0.46'
s.add_development_dependency 'pry', '~>0.11'
s.add_development_dependency 'rake', '~>12.3'
s.add_development_dependency 'rubocop', '~>0.58'
s.add_development_dependency 'vcr', '~>4.0'
end