app_status_notification 0.9.0.beta1 → 0.9.0.beta2

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
  SHA256:
3
- metadata.gz: c69f877bbe839479390ea0c927984edfba4aa3f71952fda2acacf9766d83356b
4
- data.tar.gz: fc0d57cc1ede26be67a5e2f7da9893ee109d02e16ae63a162205361c8adfb644
3
+ metadata.gz: 4c12c2ec89f2a04084d25216df4a4914fd49004872e664d613fe6f94be350618
4
+ data.tar.gz: 13b1507f4f5a2bc375224b17cec96e9b2839d6c73b57fa2756c9e02deadd0c4c
5
5
  SHA512:
6
- metadata.gz: 978d4297fdd21d8618d77aca5bb12112ad17032a9cd3d30fb12c42576ef065a40dcb5594be48b293e406f250d2c9594e13749b3c7ce93231d6bd02e6dd2c9481
7
- data.tar.gz: 0f2bcd8c18a6d4555e9764a9c21a42f5ab7f2df4c449fcd5efcd383185101991a809c34a0a075c1f3b8cf84ac079ec75c280ac337d9b2e13235690e991836c86
6
+ metadata.gz: e3b02a1267a5a4c3fed2c3ef3fbb4a8d095750bd9fce310f65236a609846f68ac27e399c4725d6bac7dcbce21faa26ad97df6f2a3f5998503d8dd2803e064d42
7
+ data.tar.gz: 9765bdfb5ed5948902357df5a003d92912fc15074a2547e0c2def94b03b0c7e9656aabe7b575522f0ae68c67c7c4aeb480cec7b7367965ef86ffc0bdfbc5583b
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- app_status_notification (0.9.0.beta1)
4
+ app_status_notification (0.9.0.beta2)
5
5
  activesupport (>= 6.0.3.1)
6
6
  anyway_config (>= 2.0.0)
7
7
  faraday (>= 1.0.1)
@@ -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 |global_options, options, args|
36
- AppStatusNotification.watch(global_options[:config])
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module AppStatusNotification
4
- VERSION = '0.9.0.beta1'
4
+ VERSION = '0.9.0.beta2'
5
5
  end
@@ -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?(config_file)
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.beta1
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-08 00:00:00.000000000 Z
11
+ date: 2021-03-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday