-
Notifications
You must be signed in to change notification settings - Fork 1
/
tddium_client.gemspec
35 lines (29 loc) · 1.13 KB
/
tddium_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
=begin
Copyright (c) 2011 Solano Labs All Rights Reserved
=end
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "tddium_client/version"
Gem::Specification.new do |s|
s.name = "tddium_client"
s.version = TddiumClient::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Jay Moorthi"]
s.email = ["[email protected]"]
s.homepage = "https://www.solanolabs.com/"
s.summary = %q{tddium Client Gem}
s.description = %q{Internal Gem used to call the Tddium API}
s.rubyforge_project = "tddium_client"
s.files = `git ls-files`.split("\n")
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"]
s.add_runtime_dependency("httpclient", ">= 2.2.5")
s.add_runtime_dependency("json")
s.add_development_dependency("rspec")
s.add_development_dependency("webmock")
s.add_development_dependency("fakefs")
s.add_development_dependency("rack-test")
s.add_development_dependency("simplecov")
s.add_development_dependency("rake")
end