-
Notifications
You must be signed in to change notification settings - Fork 38
/
adzerk.gemspec
23 lines (22 loc) · 970 Bytes
/
adzerk.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
$:.push File.expand_path("../lib", __FILE__)
require 'adzerk/version'
Gem::Specification.new do |s|
s.name = 'adzerk'
s.version = Adzerk::VERSION
s.licenses = ['Apache-2.0']
s.summary = "Adzerk API"
s.description = "Ruby library for the Adzerk API"
s.files = ['lib/adzerk.rb'] + Dir['lib/**/*.rb'] + Dir['test/*.rb']
s.require_path = 'lib'
s.authors = ["Kacy Fortner", "James Jeffers", "James Avery",
"Nate Kohari", "Rafael Chacon", "Sean Chaney",
"Brec Carson", "Sam Lehman", "Dave Yarwood",
"Micha Niskin"]
s.email = "engineering@adzerk.com"
s.homepage = "http://adzerk.com"
s.add_development_dependency "rspec", "= 3.5.0"
s.add_development_dependency "rake", "= 12.3.3"
s.add_runtime_dependency "json", "~> 2.0"
s.add_runtime_dependency "rest-client", "~> 2.1"
s.add_runtime_dependency "activesupport", ">= 5.1"
end