-
Notifications
You must be signed in to change notification settings - Fork 6
/
sift-partner.gemspec
31 lines (26 loc) · 1.16 KB
/
sift-partner.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "sift-partner/version"
Gem::Specification.new do |s|
s.name = "sift-partner"
s.version = SiftPartner::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Aaron Beppu"]
s.email = ["[email protected]"]
s.homepage = "http://siftscience.com"
s.summary = %q{Sift Science Ruby Partner API Gem}
s.description = %q{Sift Science Ruby Partner API. Please see http://siftscience.com for more details.}
s.rubyforge_project = "sift-partner"
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"]
# Gems that must be intalled for sift to compile and build
s.add_development_dependency "rspec", "~> 2.0"
s.add_development_dependency "webmock", "~> 1.0"
s.add_development_dependency("rake", "~> 11.0")
# Gems that must be intalled for sift to work
s.add_dependency "httparty", "~> 0.13.1"
s.add_dependency "multi_json", "~> 1.0"
s.add_dependency "sift", "~> 1.1.7"
end