envirobly 0.4.2 → 0.4.3

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: 7cf07e75c65933a5f7c064588ac13a36ee5af3e698fc82f90affc0960bf7d170
4
- data.tar.gz: 2f721b799aeb0b2725c92b75b9f1d63b461ad5cfd44d095481aea5c809bd1a2c
3
+ metadata.gz: 4df26217f5f0c3dc57f4b1413d8d78e60f12532067ddd33036d3fff8910c69ed
4
+ data.tar.gz: 04bb82ea5693b170be38484890f2ecab17a6c080c8c443cf03f6231084a89082
5
5
  SHA512:
6
- metadata.gz: a37f7b8895957e017ddab73d991c1a34b7b50aeff1e491caf923164e3e6c5abe8ddc67900371fc8dc1c7a552c3e2c930e9cb2b92174953531c87fc495debf357
7
- data.tar.gz: 43075318aa04c61690e71665823e19da68c2797e1d4534433235a4f3f46254343d454abaa9cd367b641184452df6546ad5f9f447a89e51943dc34084f08202a7
6
+ metadata.gz: 66ca715c8dd25acae13bef402d65a45602972e4f97bebeb52880de1b9df0e93b4a9c0b256fd619ae06af905c32d59c927e21945fec539295bd01b01ac8a7fbb5
7
+ data.tar.gz: 194dde3701339effc1d5da5673195efad226fe9253d6db9dfc987a0478a69493216cf687f9ddcff9c5a66e049564ff9864fb0a406cc104e946425d68725ee390
@@ -6,14 +6,14 @@ class Envirobly::Config
6
6
  DIR = ".envirobly"
7
7
  PATH = "#{DIR}/project.yml"
8
8
 
9
- attr_reader :parsing_error
9
+ attr_reader :parsing_error, :raw
10
10
 
11
11
  def initialize(commit)
12
12
  @commit = commit
13
13
  @parsing_error = nil
14
- @project = parse_config_content_at_commit
14
+ @raw = config_content_at_commit
15
15
 
16
- if @project
16
+ if @project = parse
17
17
  transform_env_var_values!
18
18
  append_image_tags!
19
19
  end
@@ -38,8 +38,8 @@ class Envirobly::Config
38
38
  end
39
39
 
40
40
  private
41
- def parse_config_content_at_commit
42
- YAML.load config_content_at_commit, aliases: true
41
+ def parse
42
+ YAML.load @raw, aliases: true
43
43
  rescue Psych::Exception => exception
44
44
  @parsing_error = exception.message
45
45
  nil
@@ -25,7 +25,8 @@ class Envirobly::Deployment
25
25
  time: @commit.time,
26
26
  message: @commit.message
27
27
  },
28
- config: config.to_h
28
+ config: config.to_h,
29
+ raw_config: config.raw
29
30
  }
30
31
 
31
32
  puts "Deployment config:"
@@ -1,3 +1,3 @@
1
1
  module Envirobly
2
- VERSION = "0.4.2"
2
+ VERSION = "0.4.3"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: envirobly
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.2
4
+ version: 0.4.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Robert Starsi
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-09-16 00:00:00.000000000 Z
11
+ date: 2024-09-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor