Sha256: cf26a2398924cacd0d37cf3b42505a409cbd644c60962499340a0514832cac8d
Contents?: true
Size: 1.13 KB
Versions: 3
Compression:
Stored size: 1.13 KB
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "tms_client/version" Gem::Specification.new do |s| s.name = "tms_client" s.version = TMS::VERSION s.platform = Gem::Platform::RUBY s.authors = ["GovDelivery"] s.email = ["support@govdelivery.com"] s.homepage = "http://govdelivery.com" s.summary = %q{A ruby client to interact with the GovDelivery TMS REST API.} s.description = %q{A reference implementation, written in Ruby, to interact with GovDelivery's TMS API. The client is compatible with Ruby 1.9 and 2.0. } # This will default active support to the latest stable version # if the variable is nil. s.add_runtime_dependency "activesupport" s.add_runtime_dependency "faraday" s.add_runtime_dependency "faraday_middleware" s.files = %w{ Gemfile README.md Rakefile tms_client.gemspec } + Dir["lib/**/*"] 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
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
tms_client-0.5.3 | tms_client.gemspec |
tms_client-0.5.2 | tms_client.gemspec |
tms_client-0.5.1 | tms_client.gemspec |