forked from leadmachineapp/simple_spark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
simple_spark.gemspec
24 lines (20 loc) · 914 Bytes
/
simple_spark.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'simple_spark/version'
Gem::Specification.new do |spec|
spec.name = 'simple_spark'
spec.version = SimpleSpark::VERSION
spec.authors = ['Jak Charlton']
spec.email = ['[email protected]']
spec.summary = 'A library for accessing the SparkPost REST API http://www.sparkpost.com'
spec.description = 'An alternative to the official SparkPost Ruby gem'
spec.homepage = ''
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
spec.add_dependency 'json', '>= 1.7.7', '< 2.0'
spec.add_dependency 'excon', '>= 0.16.0', '< 1.0'
end