forked from NicosKaralis/pushmeup
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpushmeup.gemspec
More file actions
34 lines (26 loc) · 1.34 KB
/
pushmeup.gemspec
File metadata and controls
34 lines (26 loc) · 1.34 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
31
32
33
34
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "pushmeup/version"
Gem::Specification.new do |s|
s.name = 'pushmeup'
s.version = Pushmeup::VERSION
s.authors = ["Nicos Karalis"]
s.email = ["nicoskaralis@me.com"]
s.homepage = "https://github.com/NicosKaralis/pushmeup"
s.summary = %q{Send push notifications to Apple devices through ANPS and Android devices through GCM}
s.description = <<-DESC
This gem is a wrapper to send push notifications to devices.
Currently it only sends to Android or iOS devices, but more platforms will be added soon.
With APNS (Apple Push Notifications Service) you can send push notifications to Apple devices.
With GCM (Google Cloud Messaging) you can send push notifications to Android devices.
DESC
s.rubyforge_project = "pushmeup"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_dependency 'httparty'
s.add_dependency 'json'
s.add_development_dependency 'rake'
s.add_development_dependency 'rspec'
end