gcm-client 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/lib/gcm.rb +9 -0
  3. data/lib/gcm/version.rb +1 -1
  4. metadata +2 -2
  5. data/lib/apns.rb +0 -9
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: dea6487a57fd6198d663a9a27518c6643e76fc70
4
- data.tar.gz: 2c7372fc85ff81e8c0d009c23a09e86269951cc2
3
+ metadata.gz: c457082eb253ac570ca046d9bb7ca2d4ecc178f5
4
+ data.tar.gz: 22357efa10754c55bd3bf1272ac66f618ca2ddb5
5
5
  SHA512:
6
- metadata.gz: b218a670f462312b04a6a7fd88275e6c71b56187388ce26079d6d99de5d65e5d1ad280f471e7f63ec3d7bbfa10f92b1e56810725fb55763fa0523b4f760a44b2
7
- data.tar.gz: 07986df76ee4b7cd98fb5ba1cf6930a651dfe811a9cdadb0b6d3989d4c3af6c2682ecf6a9d58f439955ecf806d4860996256b970ffe3056142f89e5df4d7db6e
6
+ metadata.gz: 87afb48b08fcf9cdb4f66eca217c0b1b355183c95b07c74bbdf7bf0fac4611c087d91735780e40337856038eb93fcb1b76c5ec8ee9a1801c38c0205507fad974
7
+ data.tar.gz: fda91636b63ed881ca835e78679418b92a4b879bd5850875e7d586be2a58d5113d24652a8b8f170cb38d959db2296466da679adf7399e6aaa042a43cbdff7fa5
@@ -0,0 +1,9 @@
1
+ require 'gcm/client'
2
+ require 'gcm/notification'
3
+ require 'gcm/notification_response'
4
+ require 'gcm/response'
5
+ require 'gcm/version'
6
+
7
+ module GCM
8
+ class Error < StandardError; end
9
+ end
@@ -1,3 +1,3 @@
1
1
  module GCM
2
- VERSION = '1.0.0'
2
+ VERSION = '1.0.1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gcm-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Charlie Smurthwaite
@@ -18,7 +18,7 @@ extensions: []
18
18
  extra_rdoc_files: []
19
19
  files:
20
20
  - MIT-LICENSE
21
- - lib/apns.rb
21
+ - lib/gcm.rb
22
22
  - lib/gcm/client.rb
23
23
  - lib/gcm/notification.rb
24
24
  - lib/gcm/notification_response.rb
@@ -1,9 +0,0 @@
1
- require 'apns/client'
2
- require 'apns/notification'
3
- require 'apns/notification_response'
4
- require 'apns/response'
5
- require 'apns/version'
6
-
7
- module APNS
8
- class Error < StandardError; end
9
- end