Sha256: 3ee7ba77e5e65a967f83013c37ece6cb2f432fe0acbee8d292b7296381abd734
Contents?: true
Size: 1.11 KB
Versions: 5
Compression:
Stored size: 1.11 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 versions 1.8.7 and 1.9.3. } 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.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
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
tms_client-0.2.2 | tms_client.gemspec |
tms_client-0.2.1 | tms_client.gemspec |
tms_client-0.2.0 | tms_client.gemspec |
tms_client-0.1.1 | tms_client.gemspec |
tms_client-0.1.0 | tms_client.gemspec |