This repository was archived by the owner on Nov 16, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathzero_push.gemspec
More file actions
30 lines (26 loc) · 1.35 KB
/
zero_push.gemspec
File metadata and controls
30 lines (26 loc) · 1.35 KB
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
# -*- 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 = ["stefan.natchev@gmail.com", "adam.v.duke@gmail.com"]
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.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.8.5"
gem.add_development_dependency 'actionpack', '~> 3.2.11'
gem.add_development_dependency 'activesupport', '~> 3.2.11'
gem.add_development_dependency 'minitest', '~> 4.7.0'
gem.add_development_dependency 'mocha', '~> 0.13.3'
gem.add_development_dependency 'rake', '~> 10.0.3'
gem.add_development_dependency 'railties', '~> 3.2.11'
gem.add_development_dependency 'vcr', '~> 2.4.0'
end