-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtsms_client.gemspec
38 lines (33 loc) · 1.2 KB
/
tsms_client.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
35
36
37
38
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "tsms_client/version"
Gem::Specification.new do |s|
s.name = "tsms_client"
s.version = TSMS::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["GovDelivery"]
s.email = ["[email protected]"]
s.homepage = "http://govdelivery.com"
s.summary = %q{A ruby client to interact with the GovDelivery TSMS REST API.}
s.description = %q{A reference implementation, written in Ruby, to interact with GovDelivery's TSMS API.}
if RUBY_VERSION < "1.9"
s.add_runtime_dependency "json" # this is part of 1.9's stdlib
end
s.add_runtime_dependency "faraday"
s.add_runtime_dependency "faraday_middleware"
s.add_runtime_dependency "activesupport"
s.add_runtime_dependency "link_header"
s.add_development_dependency "rspec"
s.add_development_dependency "rake"
s.files = %w{
Gemfile
README.md
Rakefile
tsms_client.gemspec
lib/tsms_client.rb
lib/tsms_client/version.rb
}
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
end