pushofy 0.0.19 → 0.0.20

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: 5edbb06c89e07debbd874978044645f9209d89ae
4
- data.tar.gz: a9eaf55a0bbe9d0ec31ba7764f4cef52d88f773a
3
+ metadata.gz: f0e8a10dce7873bbd7d804060dd0a2b9ec31b5d2
4
+ data.tar.gz: ca604e7b22c09bb888df75fbd57b6d25f61510ca
5
5
  SHA512:
6
- metadata.gz: 33a1ba45c694128a1878eb2860de2b8ea23d9e4380d1e133808b8f43442b58920b9d414a4cdcf773a7304073a3f242b43ab777ab290b63d87e798196584d7622
7
- data.tar.gz: 4165725c93e8ba9bf852913ecf94e2d519dc97bd12d69113122303db20d443b3b2c0af4ca6e61ce91dfe832645ef389ca273c3a85fe18f33c94209ab2ec13c68
6
+ metadata.gz: 5f41299b9121057b080a634662c1b48f08c806d6cae126a0f5448b2eeecd82efbb9a1d36254be7f8953649c9cfdc13c6f8468467b793432a2c036f731df421f1
7
+ data.tar.gz: 6552788ea038652ccfa771beed2666718eece21a9f3599ebfc4a4ec75ad95baeff272e1d428f8369ad72269cde7cb8d70eed351773db82c15422715a2484bbd3
data/bin/pushofy.rb CHANGED
@@ -1,6 +1,7 @@
1
+ require_relative "../lib/pushofy/push_message"
1
2
  require_relative "../lib/pushofy/applepush"
2
3
  require_relative "../lib/pushofy/androidpush"
3
- require_relative "../lib/pushofy/push"
4
+
4
5
  require "active_support/core_ext"
5
6
 
6
7
  # puts "Enter the message you want to send >"
@@ -4,7 +4,7 @@ require_relative 'applepayload'
4
4
  require_relative 'ssl_helper'
5
5
  require 'openssl'
6
6
  module Pushofy
7
- class Push
7
+ class PushMessage
8
8
  def initialize(args = {})
9
9
  @id = args[:id]
10
10
  @message = args[:message]
@@ -1,3 +1,3 @@
1
1
  module Pushofy
2
- VERSION = "0.0.19"
2
+ VERSION = "0.0.20"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pushofy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.19
4
+ version: 0.0.20
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ankur Kothari
@@ -93,7 +93,7 @@ files:
93
93
  - lib/pushofy/applepayload.rb
94
94
  - lib/pushofy/applepush.rb
95
95
  - lib/pushofy/payload.rb
96
- - lib/pushofy/push.rb
96
+ - lib/pushofy/push_message.rb
97
97
  - lib/pushofy/spush.php
98
98
  - lib/pushofy/ssl_helper.rb
99
99
  - lib/pushofy/sslconnection.rb