app_status_notification 0.9.0.beta1 → 0.9.0.beta2
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4c12c2ec89f2a04084d25216df4a4914fd49004872e664d613fe6f94be350618
|
|
4
|
+
data.tar.gz: 13b1507f4f5a2bc375224b17cec96e9b2839d6c73b57fa2756c9e02deadd0c4c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e3b02a1267a5a4c3fed2c3ef3fbb4a8d095750bd9fce310f65236a609846f68ac27e399c4725d6bac7dcbce21faa26ad97df6f2a3f5998503d8dd2803e064d42
|
|
7
|
+
data.tar.gz: 9765bdfb5ed5948902357df5a003d92912fc15074a2547e0c2def94b03b0c7e9656aabe7b575522f0ae68c67c7c4aeb480cec7b7367965ef86ffc0bdfbc5583b
|
data/Gemfile.lock
CHANGED
|
@@ -32,12 +32,12 @@ class AppStatusNotification::Command
|
|
|
32
32
|
desc 'Start watch service'
|
|
33
33
|
arg_name 'Describe arguments to ddd here'
|
|
34
34
|
command :watch do |c|
|
|
35
|
-
c.action do |
|
|
36
|
-
AppStatusNotification.watch(
|
|
35
|
+
c.action do |global, options, args|
|
|
36
|
+
AppStatusNotification.watch(global[:config])
|
|
37
37
|
end
|
|
38
38
|
end
|
|
39
39
|
|
|
40
|
-
pre do |global,command,options,args|
|
|
40
|
+
pre do |global, command, options, args|
|
|
41
41
|
AppStatusNotification.development(global[:development])
|
|
42
42
|
# Pre logic here
|
|
43
43
|
# Return true to proceed; false to abort and not call the
|
|
@@ -7,7 +7,7 @@ module AppStatusNotification
|
|
|
7
7
|
include AppStatusNotification::I18nHelper
|
|
8
8
|
|
|
9
9
|
def self.run(config_path = nil)
|
|
10
|
-
Anyway::Settings.default_config_path = config_path if Dir.exist?(
|
|
10
|
+
Anyway::Settings.default_config_path = config_path if Dir.exist?(config_path)
|
|
11
11
|
|
|
12
12
|
config = Config.new
|
|
13
13
|
yield config if block_given?
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: app_status_notification
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.9.0.
|
|
4
|
+
version: 0.9.0.beta2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- icyleaf
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-03-
|
|
11
|
+
date: 2021-03-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday
|