bmo 0.11.0 → 0.11.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 19acde83274fe69f0e14d40f818a4eb7bb87d412
4
- data.tar.gz: ce53e972d6982339045099bbafc779dfe128b9de
3
+ metadata.gz: 67c2763712b6cbe556baf252e3d8b0a5c31c0f3a
4
+ data.tar.gz: a987a57802a541c04142f05b09731a8cfa12a39e
5
5
  SHA512:
6
- metadata.gz: 5f9ce0b3ba64b2cca3f6cf28df9f82357089c0085e53417a208b68276dd3c5d1f89f40467311a8499d390f62cf7241ade70a11affab776920097417178bc85f6
7
- data.tar.gz: d7023aef52e8f447241a9fdf2edc8749338987cd35da29e394fc837ddcb6cd4d0db94ae08eb9180419f1964a98f79ef4ec9b0596b7343816c816d672716096c1
6
+ metadata.gz: 1099d1f066d5d2b1e1dd719d13fe14439eac618857b8675965c217be786e32561743de066464e0981e03b95ac63a27ebe74ec593d82b18c3a891b55b028d1ec5
7
+ data.tar.gz: 27f7aaa3ee22ac92dc40025a13fe30329057da0caca29469c0d5f3d776dfd358c14563ba3a3105cf2458f1e62c6c4a8c2dc33f781b7f311a731bcf5b41db8f06
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- bmo (0.10.0)
4
+ bmo (0.11.0)
5
5
  equalizer (~> 0.0.0)
6
6
  faraday (> 0.8.0)
7
7
 
@@ -85,4 +85,4 @@ DEPENDENCIES
85
85
  terminal-notifier-guard
86
86
 
87
87
  BUNDLED WITH
88
- 1.11.2
88
+ 1.12.5
data/README.md CHANGED
@@ -9,7 +9,7 @@
9
9
 
10
10
  # BMO (Beemo)
11
11
 
12
- BMO is a gem to Push Notifications to iOS (via APNS) and Android (via GCM)
12
+ BMO is a gem to Push Notifications to iOS (via APNS) and Android (via GCM). It handles TCP & HTTP Proxies.
13
13
 
14
14
  | Project | BMO |
15
15
  |------------------------ | ----------------------------------------------------------------------------------------------------------------------------- |
@@ -23,6 +23,10 @@ BMO is a gem to Push Notifications to iOS (via APNS) and Android (via GCM)
23
23
  | Homepage | [BMO](https://github.com/antoinelyset/bmo) |
24
24
  | Documentation | [Rdoc](http://rdoc.info/github/antoinelyset/bmo/frames) |
25
25
 
26
+ ## Why another gem ?
27
+
28
+ I needed to use stunnel (TCP Proxy for encrypting with SSL/TLS) and a HTTP Proxy. The existing gems couldn't.
29
+
26
30
  ## Installation
27
31
 
28
32
  ```
@@ -44,7 +44,7 @@ module BMO
44
44
  #
45
45
  def ssl_context
46
46
  cert = File.read(cert_path)
47
- context = OpenSSL::SSL::SSLContext.new
47
+ context = OpenSSL::SSL::SSLContext.new(:TLSv1)
48
48
  context.cert = OpenSSL::X509::Certificate.new(cert)
49
49
  context.key = OpenSSL::PKey::RSA.new(cert, cert_pass)
50
50
  context
@@ -1,4 +1,4 @@
1
1
  # Main BMO module, version get right here
2
2
  module BMO
3
- VERSION = '0.11.0'.freeze
3
+ VERSION = '0.11.2'.freeze
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bmo
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.0
4
+ version: 0.11.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Antoine Lyset
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-03-08 00:00:00.000000000 Z
11
+ date: 2016-07-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: equalizer