-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathsift.gemspec
More file actions
35 lines (28 loc) · 1.21 KB
/
sift.gemspec
File metadata and controls
35 lines (28 loc) · 1.21 KB
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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "sift/version"
Gem::Specification.new do |s|
s.name = "sift"
s.version = Sift::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Fred Sadaghiani", "Yoav Schatzberg", "Jacob Burnim"]
s.email = ["support@sift.com"]
s.homepage = "http://sift.com"
s.summary = %q{Sift Ruby API Gem}
s.description = %q{Sift Ruby API. Please see http://sift.com for more details.}
s.rubyforge_project = "sift"
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.required_ruby_version = '>= 2.7.0'
# Gems that must be intalled for sift to compile and build
s.add_development_dependency "rspec", "~> 3.5"
s.add_development_dependency "rspec_junit_formatter"
s.add_development_dependency "pry"
s.add_development_dependency "webmock", ">= 1.16.0", "< 2"
# Gems that must be intalled for sift to work
s.add_dependency "httparty", ">= 0.23.3"
s.add_dependency "multi_json", ">= 1.0"
s.add_development_dependency("rake")
end