notifiable-sender 0.2.0 → 0.2.1

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: a249ebe19e8abf711ae1830ed30878b403a786a8
4
- data.tar.gz: 2ec98a7335cee4311398278f650484804298bd7e
3
+ metadata.gz: a7dccb0e4ad2e99ce3ad4bbd06e806944ab1a35f
4
+ data.tar.gz: 7f0be289f6cbe2fb86f20703f49c48383471acbd
5
5
  SHA512:
6
- metadata.gz: affe2b40c14243ce23a772079fc055fff40754ba16d4fa9a1b07a2690b36bbb90753685bbb8962091113a43b3dafd3a9f2306f92ee8c084525872c5cc4953d8c
7
- data.tar.gz: 5f3ee8e9d2af9980fffc648e435ad3a21c77811e3dd0e80a0bdcc0eee51a448ab32b07befee39d4473d40116a39f861dd346bf2ecbb99f695542063fbbfe48b8
6
+ metadata.gz: 3a9b9cbd94f773d485d6e85eab4150a1ad382db93d3d1643d8c9a350faba5a30294a1efd70cca8edefd653600adb5c01e1caf90e3f18324fd4df0538c15cc2d1
7
+ data.tar.gz: b3b6d57e3403e4a390266a765db18f06bb8e15c1eb7b3e5abaf1bed107f18449220b7419ebd9b6f10d22dcdcfd288d3a76312689cbed2b676f7f38860da3eb88
@@ -1,11 +1,10 @@
1
- require 'notifiable/sender/version'
2
1
  require 'rest-client'
3
2
  require 'api-auth'
4
3
  require 'json'
5
4
  require 'logger'
6
5
 
7
6
  module Notifiable
8
- class Sender
7
+ class Sender
9
8
  def initialize(base_uri, access_id, secret_key: nil, logger: Logger.new(STDOUT))
10
9
  raise 'base_uri cannot be nil' if base_uri.empty?
11
10
  raise 'access_id cannot be nil' if access_id.empty?
@@ -1,5 +1,3 @@
1
1
  module Notifiable
2
- module Sender
3
- VERSION = "0.2.0"
4
- end
2
+ VERSION = "0.2.1"
5
3
  end
@@ -5,7 +5,7 @@ require 'notifiable/sender/version'
5
5
 
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = "notifiable-sender"
8
- spec.version = Notifiable::Sender::VERSION
8
+ spec.version = Notifiable::VERSION
9
9
  spec.authors = ["Matt Brooke-Smith"]
10
10
  spec.email = ["matt@futureworkshops.com"]
11
11
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: notifiable-sender
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Brooke-Smith