yamload 0.7.0 → 0.8.0

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: 16ac85003b48e85dd2475a7ab87c43037cc953eb6d6c492fa95444dd9f09ba79
4
- data.tar.gz: e50a8eb78728cc4975115c1474fa878080fb9ee745712e26dafffe6aeba41fa4
3
+ metadata.gz: e758b62515b04c2077aaf86f11c984d4420d4554ae2949ea42a26a74b7a51058
4
+ data.tar.gz: f81d42230bcf5e724a942681d3a41be87ebd8bde1324d19527d5439edfd16a21
5
5
  SHA512:
6
- metadata.gz: e847bceccbb83e3f880b78fc8c9ea7c88541583b2adb3b70e2c5ff263afb51b519bc12f6202cb39fce469d35d400a867955d8f9fa067116de96a63cf5bd3d47d
7
- data.tar.gz: 8f9a9267907f7d1904afe7ba576aae7443da874b1a6b09f05a74c848938212d2bcf873ea573e8f5c0731fdeb12a79dbc252f68e3e8e068fe99e81a8cd9de60a3
6
+ metadata.gz: a8b86f003e03b652f37ceb35cac2d85c56392da63ade3331477d59b5ecb010b69001bc9f61227f0a2fb0006123869bbea18cfce8b19eb528c623c78b73317461
7
+ data.tar.gz: c4939e33a6d673ac6a9dd527305e51b7e0b1cf47dc66de9ff11b9ef320c7d804401c3d587c41e2d4d5c49419ca961421d2bbe639c2fbc1088fdca191c3c70d48
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 0.8.0
2
+
3
+ - [PLAT-379] Improve bundler startup time
4
+
1
5
  ## 0.7.1
2
6
 
3
7
  - Fix incorrect tags
@@ -1,8 +1,5 @@
1
1
  require "yaml"
2
2
  require "ice_nine"
3
- require "aws-sdk-secretsmanager"
4
- require "aws-sdk-ssm"
5
-
6
3
  require "yamload/loading"
7
4
  require "yamload/conversion"
8
5
  require "yamload/defaults"
@@ -50,6 +50,7 @@ module Yamload
50
50
  end
51
51
 
52
52
  def secrets_client
53
+ require "aws-sdk-secretsmanager"
53
54
  options = {}
54
55
  options[:endpoint] = ENV["AWS_SECRETS_MANAGER_ENDPOINT"] if ENV.has_key?("AWS_SECRETS_MANAGER_ENDPOINT")
55
56
  @secrets_client ||= Aws::SecretsManager::Client.new(options)
@@ -60,6 +61,7 @@ module Yamload
60
61
  end
61
62
 
62
63
  def ssm_client
64
+ require "aws-sdk-ssm"
63
65
  options = {}
64
66
  options[:endpoint] = ENV["AWS_SSM_ENDPOINT"] if ENV.has_key?("AWS_SSM_ENDPOINT")
65
67
  @ssm_client ||= Aws::SSM::Client.new(options)
@@ -1,3 +1,3 @@
1
1
  module Yamload
2
- VERSION = "0.7.0"
2
+ VERSION = "0.8.0"
3
3
  end
data/spec/spec_helper.rb CHANGED
@@ -4,5 +4,8 @@ require "support/coverage_loader"
4
4
 
5
5
  require "yamload"
6
6
 
7
+ require "aws-sdk-ssm"
8
+ require "aws-sdk-secretsmanager"
9
+
7
10
  current_file_dir = __dir__
8
11
  Yamload.dir = File.join(current_file_dir, "fixtures")
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: yamload
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alessandro Berardi
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2022-01-25 00:00:00.000000000 Z
12
+ date: 2022-07-02 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: anima