-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgovdelivery-tms.gemspec
32 lines (28 loc) · 1.04 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
# -*- 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 1.9 and 2.0. "
s.add_runtime_dependency 'activesupport'
s.add_runtime_dependency 'faraday'
s.add_runtime_dependency 'faraday_middleware'
s.add_runtime_dependency 'mime-types'
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