exception_notification-pushbullet 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 00045ab4d7bf4a6a1a7c18ab15efb9742da5f4f7
|
4
|
+
data.tar.gz: 309a3f7b840f128729f2cd36750419902aa28449
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 05c75c42a0fbab1ac445f811d69e999d7c6b887a7c901584ae0edb36a56829e3de4fed940a4bb57fa305d513344c1884af5ca92f49c7c004b7c2f410e4a4454c
|
7
|
+
data.tar.gz: 8dac47892aef97b3efa7d8c56866b9ddb3c846263cc5f3fb3ae16f79a0c6a3ed3c917d474db296f2025a54bcb965c871718890e9b6196cb798701dad07b52fc2
|
data/README.md
CHANGED
@@ -56,6 +56,13 @@ Check [Pushbullet API](https://docs.pushbullet.com/#pushbullet-api) for details.
|
|
56
56
|
|
57
57
|
ID of devices to send notifications. Default is send to all devices registered in user.
|
58
58
|
|
59
|
+
|
60
|
+
#### title
|
61
|
+
|
62
|
+
*String, default: "New exception occured in _appname_(_environment_)."*
|
63
|
+
|
64
|
+
Notification title.
|
65
|
+
|
59
66
|
## Contributing
|
60
67
|
|
61
68
|
Bug reports and pull requests are welcome on GitHub at https://github.com/y-yagi/exception_notification-pushbullet. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
@@ -34,9 +34,9 @@ module ExceptionNotifier
|
|
34
34
|
if @title
|
35
35
|
@title
|
36
36
|
elsif app && environment
|
37
|
-
"New exception
|
37
|
+
"New exception occurred in #{app}(#{environment})."
|
38
38
|
else
|
39
|
-
'New exception
|
39
|
+
'New exception occurred.'
|
40
40
|
end
|
41
41
|
end
|
42
42
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: exception_notification-pushbullet
|
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
|
- Yuji Yaginuma
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-05
|
11
|
+
date: 2016-06-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: exception_notification
|