pushybullet 0.1.0 → 0.1.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 +4 -4
- data/CHANGELOG.md +17 -0
- data/Gemfile.lock +1 -1
- data/lib/pushybullet/version.rb +1 -1
- data/pushybullet.gemspec +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: eb9f14cc25a605fa81f01e30057db0e23cb2408e2e0b55154e6a71f9c458786e
|
|
4
|
+
data.tar.gz: 6b576942ce2c85bd4116458f289aab1320c60481813aee46a957572946a712da
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a81f59b2e5fa62da009bab4b04008692dba2331b98813481f3688890b57a1dac0b7a566c5439302011b749cc9ad8fd8c31785ebd1dfc3da3ae0e704065f0777f
|
|
7
|
+
data.tar.gz: '083bdc8b7de67f786a88fd9c08babb3ccbcfa1637eea42b523d737227f95af21d6d9e3bf93d73dc7d5544b3ff7dae0da77093d6b4490387c7a122b0db18bf408'
|
data/CHANGELOG.md
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
All notable changes to this project will be documented in this file.
|
|
3
|
+
|
|
4
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
5
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
|
+
|
|
7
|
+
## [Unreleased]
|
|
8
|
+
|
|
9
|
+
## [0.1.1] - 2020-11-18
|
|
10
|
+
### Added
|
|
11
|
+
- Added changelog
|
|
12
|
+
|
|
13
|
+
## [0.1.0] - 2020-11-17
|
|
14
|
+
### Added
|
|
15
|
+
- Initial commit
|
|
16
|
+
- List user devices
|
|
17
|
+
- Send pushes
|
data/Gemfile.lock
CHANGED
data/lib/pushybullet/version.rb
CHANGED
data/pushybullet.gemspec
CHANGED
|
@@ -17,7 +17,7 @@ Gem::Specification.new do |spec|
|
|
|
17
17
|
|
|
18
18
|
spec.metadata['homepage_uri'] = spec.homepage
|
|
19
19
|
spec.metadata['source_code_uri'] = 'https://github.com/arcticfoxnv/pushybullet-gem'
|
|
20
|
-
spec.metadata['changelog_uri'] = 'https://github.com/arcticfoxnv/pushybullet-gem'
|
|
20
|
+
spec.metadata['changelog_uri'] = 'https://github.com/arcticfoxnv/pushybullet-gem/blob/master/CHANGELOG.md'
|
|
21
21
|
|
|
22
22
|
# Specify which files should be added to the gem when it is released.
|
|
23
23
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pushybullet
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nick King
|
|
@@ -50,6 +50,7 @@ files:
|
|
|
50
50
|
- ".rubocop.yml"
|
|
51
51
|
- ".rubocop_todo.yml"
|
|
52
52
|
- ".travis.yml"
|
|
53
|
+
- CHANGELOG.md
|
|
53
54
|
- CODE_OF_CONDUCT.md
|
|
54
55
|
- Gemfile
|
|
55
56
|
- Gemfile.lock
|
|
@@ -76,7 +77,7 @@ metadata:
|
|
|
76
77
|
allowed_push_host: https://rubygems.org
|
|
77
78
|
homepage_uri: https://github.com/arcticfoxnv/pushybullet-gem
|
|
78
79
|
source_code_uri: https://github.com/arcticfoxnv/pushybullet-gem
|
|
79
|
-
changelog_uri: https://github.com/arcticfoxnv/pushybullet-gem
|
|
80
|
+
changelog_uri: https://github.com/arcticfoxnv/pushybullet-gem/blob/master/CHANGELOG.md
|
|
80
81
|
post_install_message:
|
|
81
82
|
rdoc_options: []
|
|
82
83
|
require_paths:
|