-
Notifications
You must be signed in to change notification settings - Fork 75
/
customerio.gemspec
26 lines (22 loc) · 1009 Bytes
/
customerio.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/customerio/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["John Allison"]
gem.email = ["[email protected]"]
gem.description = "A ruby client for the Customer.io event API."
gem.summary = "A ruby client for the Customer.io event API."
gem.homepage = "https://customer.io"
gem.license = "MIT"
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "customerio"
gem.require_paths = ["lib"]
gem.version = Customerio::VERSION
gem.add_dependency('multi_json', "~> 1.0")
gem.add_dependency('addressable', '~> 2.8.0')
gem.add_development_dependency('rake', '~> 10.5')
gem.add_development_dependency('rspec', '~> 3.10')
gem.add_development_dependency('webmock', '3.6.0')
gem.add_development_dependency('json')
end