forked from lumoslabs/leanplum_api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
leanplum_api.gemspec
29 lines (24 loc) · 1.12 KB
/
leanplum_api.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
$:.push File.expand_path('../lib', __FILE__)
require 'leanplum_api/version'
Gem::Specification.new do |gem|
gem.name = 'leanplum_api'
gem.version = LeanplumApi::VERSION
gem.authors = ['Lumos Labs, Inc.', 'Countable Corp']
gem.email = ['[email protected]', '[email protected]']
gem.homepage = 'http://www.github.com/lumoslabs/leanplum_api'
gem.summary = 'Gem for the Leanplum API'
gem.description = 'Ruby-esque access to Leanplum API'
gem.licenses = ['MIT']
gem.files = Dir["lib/**/*"] + ['Gemfile', 'LICENSE.txt', 'README.md']
gem.test_files = Dir["spec/**/*"]
gem.required_ruby_version = '>= 2.0'
gem.add_dependency 'activesupport', '> 3.0', '< 6'
gem.add_dependency 'awesome_print', '~> 1'
gem.add_dependency 'faraday', '~> 0.9', '>= 0.9.1'
gem.add_dependency 'faraday_middleware', '~> 0.10'
gem.add_development_dependency 'rspec', '~> 3'
gem.add_development_dependency 'timecop', '~> 0.8'
gem.add_development_dependency 'vcr', '~> 2'
gem.add_development_dependency 'webmock', '~> 2'
gem.add_development_dependency 'dotenv', '~> 2.2', '>= 2.2.1'
end