forked from github/zero_push
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzero_push.gemspec
32 lines (28 loc) · 1.42 KB
/
zero_push.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
30
31
32
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'zero_push/version'
Gem::Specification.new do |gem|
gem.name = "zero_push"
gem.version = ZeroPush::VERSION
gem.authors = ["Stefan Natchev", "Adam Duke"]
gem.email = ["[email protected]", "[email protected]"]
gem.summary = %q{A gem for interacting with the ZeroPush API. (http://zeropush.com)}
gem.description = %q{ZeroPush is a simple service for sending iOS push notifications. (http://zeropush.com)}
gem.homepage = "https://zeropush.com"
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.require_paths = ["lib"]
gem.required_ruby_version = '>= 1.9'
gem.add_dependency "faraday", "~> 0.9.0"
gem.add_dependency "faraday_middleware", "~> 0.9.0"
gem.add_development_dependency 'minitest', '~> 5.3.5'
gem.add_development_dependency 'minitest-around', '~> 0.2.0'
gem.add_development_dependency 'mocha', '~> 1.1.0'
gem.add_development_dependency 'rake', '~> 10.3.2'
gem.add_development_dependency 'railties', '~> 4.1.4'
gem.add_development_dependency 'pry'
gem.add_development_dependency 'webmock', '~> 1.20.4'
end