forked from grocer/grocer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
grocer.gemspec
33 lines (29 loc) · 1.41 KB
/
grocer.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
33
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/grocer/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ['Andy Lindeman', 'Steven Harman', 'Patrick Van Stee']
gem.summary = %q{Pushing Apple notifications since 2012.}
gem.description = <<-DESC
Grocer interfaces with the Apple Push
Notification Service to send push
notifications to iOS devices and collect
notification feedback via the Feedback
Service.
There are other gems out there to do this,
but Grocer plans to be the cleanest, most
extensible, and friendliest.
DESC
gem.homepage = 'https://github.com/grocer/grocer'
gem.license = 'MIT'
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.name = "grocer"
gem.require_paths = ["lib"]
gem.version = Grocer::VERSION
gem.add_development_dependency 'rspec', '~> 3.4'
gem.add_development_dependency 'pry', '~> 0.10.1'
gem.add_development_dependency 'mocha'
gem.add_development_dependency 'bourne'
gem.add_development_dependency 'rake'
end