forked from Granicus/govdelivery-tms-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
govdelivery-tms.gemspec
33 lines (29 loc) · 1.09 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
# -*- 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 = ['[email protected]']
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 3"
s.add_runtime_dependency 'activesupport', '>=5.2.4.3', '<8.0.0'
s.add_runtime_dependency 'faraday'
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