forked from metaquark/gcm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgcm.gemspec
23 lines (19 loc) · 892 Bytes
/
gcm.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
Gem::Specification.new do |s|
s.name = "gcm"
s.version = "0.0.3"
s.authors = ["Amro Mousa", "Kashif Rasul", "Shoaib Burq"]
s.email = ["amromousa@gmail.com", "kashif@spacialdb.com", "shoaib@spacialdb.com"]
s.homepage = "http://github.com/spacialdb/gcm"
s.summary = %q{send data to Android applications on Android devices}
s.description = %q{gcm is a service that helps developers send data from servers to their Android applications on Android devices.}
s.license = "MIT"
s.rubyforge_project = "gcm"
s.files = `git ls-files`.split($\)
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.executables = s.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_dependency('httparty')
s.add_dependency('json')
end