ruby-push-notifications 0.1.0 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.hound.yml +2 -0
- data/.ruby-style.yml +1063 -0
- data/.travis.yml +7 -0
- data/Gemfile.lock +2 -0
- data/README.md +6 -2
- data/examples/mpns.rb +17 -0
- data/lib/ruby-push-notifications/mpns/mpns_connection.rb +82 -0
- data/lib/ruby-push-notifications/mpns/mpns_notification.rb +96 -0
- data/lib/ruby-push-notifications/mpns/mpns_pusher.rb +29 -0
- data/lib/ruby-push-notifications/mpns/mpns_response.rb +81 -0
- data/lib/ruby-push-notifications/mpns/mpns_result.rb +182 -0
- data/lib/ruby-push-notifications/mpns.rb +5 -0
- data/lib/ruby-push-notifications/version.rb +1 -1
- data/lib/ruby-push-notifications.rb +1 -0
- data/ruby-push-notifications.gemspec +2 -0
- data/spec/factories/notifications.rb +8 -0
- data/spec/factories.rb +5 -0
- data/spec/ruby-push-notifications/mpns/mpns_connection_spec.rb +46 -0
- data/spec/ruby-push-notifications/mpns/mpns_notification_spec.rb +43 -0
- data/spec/ruby-push-notifications/mpns/mpns_pusher_spec.rb +59 -0
- data/spec/ruby-push-notifications/mpns/mpns_response_spec.rb +64 -0
- metadata +33 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 915e61224a1fb8cb223c024a4ab0b2c031ab4ed6
|
4
|
+
data.tar.gz: e728198fc76862b251f09493e933ea7cb63d9a26
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d82f2cc812134a1a1d9834ff5d31f3841e362acb550ed36509f664b1b8b5f269cf74499f86bb1a391e162ac44acf0303a4e36160921ee03698fd94f069051795
|
7
|
+
data.tar.gz: 372b58b0c41a208868fa11a82bf0f26799697e279ad22e864210ec073153226e33b0c7ed8163089032d0c03ccf45325bbe6f2629aeb7b7a7084f758b56890060
|
data/.hound.yml
ADDED