pushbullet_client 0.0.2 → 0.0.3

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
  SHA256:
3
- metadata.gz: 13463788a15fad6e416d2cf3fcbcf9a582f11f15d5066bae24b563794708b851
4
- data.tar.gz: 83d8b80b52c871c097ca56abd3b14bffc9aca7195bed138980ac1f26e7dfdefe
3
+ metadata.gz: d97458f8dc7bb34dd28f93681eb455efa7b308761f4260ee644e0fa70a4e439f
4
+ data.tar.gz: 3c18d8c09cc6243e2a003b9ecd1ed26e15c45187b8e29040d2c86115d58d2851
5
5
  SHA512:
6
- metadata.gz: f01d2a23d2b3bef7f01219cd67555ad2595fb5a28f6d1bb333f56177aa3c08e4dad127b9cb6cc505545688bac278602a65db69777979e1b7730de499f6c4968e
7
- data.tar.gz: 3a842fb075c008bf3b9c529387c8a3d74b2193e038d91a8c0e2ca93079fad10b3fdc9e5c5e614b4ce576e1631b97f6ad5777769498f758bfc782bd1aa9328a25
6
+ metadata.gz: 944ec467d8d6ac422ac5d774cf9586a77d02ee00ed247c1511c3f0776269cebcb088a7e98e81774c8d2d68b764441e388b0d8214fbe2be62f2fd6b36a4cbca30
7
+ data.tar.gz: 1cfc17468d1d4b7a7710650a74a80d21ed7c81f8d51e3a6f955c92793c4648af961b24a80b9674756486b0cee7c90bb341f8cad26b21195085bb4f80fa889130
@@ -0,0 +1,3 @@
1
+ #!/bin/bash
2
+ gem build pushbullet_client.gemspec
3
+ gem push pushbullet_client
@@ -8,6 +8,6 @@ require 'pushbullet/constants'
8
8
 
9
9
  require 'pushbullet/client'
10
10
 
11
- module Luno
11
+ module Pushbullet
12
12
  class Error < StandardError; end
13
13
  end
@@ -23,7 +23,7 @@ module Pushbullet
23
23
 
24
24
  attr_reader :key, :secret, :base_path, :port
25
25
 
26
- def initialize(access_token:, base_path: 'https://api.pushbullet.com/v2', port: 80)
26
+ def initialize(access_token:, base_path: API_V2_BASE_PATH, port: 80)
27
27
  @access_token = access_token
28
28
  @base_path = base_path
29
29
  @port = port
@@ -1,4 +1,5 @@
1
1
  module Pushbullet
2
2
  module Constants
3
+ API_V2_BASE_PATH = 'https://api.pushbullet.com/v2'
3
4
  end
4
5
  end
@@ -1,3 +1,3 @@
1
1
  module Pushbullet
2
- VERSION = '0.0.2'
2
+ VERSION = '0.0.3'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pushbullet_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - trex22
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-10-18 00:00:00.000000000 Z
11
+ date: 2020-10-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: active_attr
@@ -194,6 +194,7 @@ files:
194
194
  - README.md
195
195
  - Rakefile
196
196
  - bin/console
197
+ - bin/make
197
198
  - bin/setup
198
199
  - lib/pushbullet.rb
199
200
  - lib/pushbullet/chats.rb