avm-apps 0.2.0 → 0.2.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c74837dcc74369568039a4e571df1d71369339ffa2a3c98fb2164c1a35410c58
4
- data.tar.gz: 4a0ddaa74956140e2c6872ea32bd41cad513824fada240e98fab5b5d422cec36
3
+ metadata.gz: eeb648dd2ea6795a63a773e9d68d5adfc68ca0caec7b2e23d59386d39a743b22
4
+ data.tar.gz: 1be55161ac58ed831dbec83be9f10ff3eec8195a4d9d4bdbce55c480f5ade7f2
5
5
  SHA512:
6
- metadata.gz: b1e7fecf325f191275d5b6f85fec3b4ad49bc2d646e76cc52c1776b8e8805ba74f670ee79968cdaea27c30c45443811956ad3d89c3866c4248e6cfb5351a2aeb
7
- data.tar.gz: 80195404e9361a694cd4afc8fd3919cf392fc1338588ec5d5ac7eb7a8bbb3db53cebd4507bff76222ecfe8f7e4da14a9fde4092cf155d365275c46aebada0dd4
6
+ metadata.gz: 411b358eb1882d4d5893f3f5ecb244b98172d43b726a3ce1d6921ee07819c761777118b7dd511014e77a55024d1822dcf8be210bb8b254245d113971858c866c
7
+ data.tar.gz: 38e3093ad78f87d3db11d4e67e9597845beb294fa12c9c0b482d2d3fa00e5198bfe6b516adb53463ab30c67de6da91ae7eff6942e0e600e0e8f5598d3778e978
@@ -10,7 +10,7 @@ module Avm
10
10
  common_concern do
11
11
  include ::ActiveSupport::Callbacks
12
12
 
13
- enable_console_speaker
13
+ enable_speaker
14
14
  enable_simple_cache
15
15
  enable_listable
16
16
  common_constructor :instance, :options, default: [{}] do
@@ -1,13 +1,13 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'eac_ruby_utils/configs'
3
+ require 'eac_config/old_configs'
4
4
  require 'eac_ruby_utils/core_ext'
5
5
  require 'yaml'
6
6
 
7
7
  module Avm
8
8
  module Apps
9
9
  module Sources
10
- class Configuration < ::EacRubyUtils::Configs
10
+ class Configuration < ::EacConfig::OldConfigs
11
11
  require_sub __FILE__
12
12
 
13
13
  FILENAMES = %w[.avm.yml .avm.yaml].freeze
@@ -6,7 +6,7 @@ require 'i18n'
6
6
  module Avm
7
7
  module Apps
8
8
  module Sources
9
- class Configuration < ::EacRubyUtils::Configs
9
+ class Configuration < ::EacConfig::OldConfigs
10
10
  LOCALE_KEY = :locale
11
11
 
12
12
  def locale
@@ -3,7 +3,7 @@
3
3
  module Avm
4
4
  module Apps
5
5
  module Sources
6
- class Configuration < ::EacRubyUtils::Configs
6
+ class Configuration < ::EacConfig::OldConfigs
7
7
  RUBOCOP_COMMAND_KEY = 'ruby.rubocop.command'
8
8
  RUBOCOP_GEMFILE_KEY = 'ruby.rubocop.gemfile'
9
9
 
@@ -5,7 +5,7 @@ require 'avm/patches/eac_ruby_gems_utils/gem'
5
5
  module Avm
6
6
  module Apps
7
7
  module Sources
8
- class Configuration < ::EacRubyUtils::Configs
8
+ class Configuration < ::EacConfig::OldConfigs
9
9
  BUNDLE_TEST_COMMAND_KEY = 'test.bundle_command'
10
10
  TEST_COMMAND_KEY = 'test.command'
11
11
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Avm
4
4
  module Apps
5
- VERSION = '0.2.0'
5
+ VERSION = '0.2.1'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: avm-apps
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eduardo H. Bogoni
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-05-14 00:00:00.000000000 Z
11
+ date: 2021-05-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: eac_ruby_utils