-
Notifications
You must be signed in to change notification settings - Fork 3
/
govdelivery-tms.gemspec
34 lines (30 loc) · 1.16 KB
/
govdelivery-tms.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
# -*- encoding: utf-8 -*-
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
require 'govdelivery/tms/version'
Gem::Specification.new do |s|
s.name = 'govdelivery-tms'
s.version = GovDelivery::TMS::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['GovDelivery']
s.email = ['support@govdelivery.com']
s.homepage = 'http://govdelivery.com'
s.summary = 'A ruby client to interact with the GovDelivery TMS REST API.'
s.description = "A reference implementation, written in Ruby,
to interact with GovDelivery's TMS API. The client is
compatible with Ruby >=2.5.8, and <= 2.7.1"
s.add_runtime_dependency 'activesupport', '>=5.2.4.3', '<6.0.0'
s.add_runtime_dependency 'faraday'
s.add_runtime_dependency 'faraday_middleware'
s.add_runtime_dependency 'mime-types'
s.add_development_dependency 'simplecov'
s.add_development_dependency 'simplecov-cobertura'
s.files = %w(
Gemfile
README.md
Rakefile
govdelivery-tms.gemspec
.version
) + Dir['lib/**/*']
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.require_paths = ['lib']
end