build-buddy 1.0.6 → 1.1.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
  SHA1:
3
- metadata.gz: 0b2d3eab19b59adf57beb5489d827f289c871f8e
4
- data.tar.gz: b6ea074f9c8e13b36247c839715e549bc25428bc
3
+ metadata.gz: 823ad09aee4fcf86c149aceb919c9fb1d09ebe91
4
+ data.tar.gz: 7ced4d2d510a047605e903b5e14f301b39c49609
5
5
  SHA512:
6
- metadata.gz: 66842f29b1f61fd65b290d88e346fa364dcdce66585100f77370c5216ed673e3b2c4a8831c800084eab887f7ffc122549eded0d780b6eacdfe72b640c02a37fb
7
- data.tar.gz: 20063e74483fc136eab52fbbb6a772491a1a6b6fd7f600a0d02b4efa22ecd3d9d4f1e255d627d897f9cf1ef1148c75388c2117449328fba45b2a3bd6b62aecbd
6
+ metadata.gz: d8a2eeb4ced6a73650c53149671a2459b5ae43a4e928e03b5b48fbab5100a3902e7d948411178e0df4b6b2e7c50f1ba62e0fd783c7e3d0e212a894984b02a66c
7
+ data.tar.gz: f7e4e4823fbee1cc8f9ae7eeb1a694d588f43b16c531c79bded4e78d6f4dea8ab469cc763a7a3765179b00d091bc6119e89779f5e5a353ceba1dd50420999b9b
@@ -21,6 +21,12 @@ class Tool
21
21
 
22
22
  load config_file_name
23
23
 
24
+ config_path = File.dirname(config_file_name)
25
+ BuildBuddy::Config.pull_request_build_script = File.expand_path(BuildBuddy::Config.pull_request_build_script, config_path)
26
+ BuildBuddy::Config.master_build_script = File.expand_path(BuildBuddy::Config.master_build_script, config_path)
27
+ BuildBuddy::Config.release_build_script = File.expand_path(BuildBuddy::Config.release_build_script, config_path)
28
+ BuildBuddy::Config.build_log_dir = File.expand_path(BuildBuddy::Config.build_log_dir, config_path)
29
+
24
30
  build_log_dir = BuildBuddy::Config.build_log_dir
25
31
 
26
32
  unless Dir.exist?(build_log_dir)
@@ -4,6 +4,6 @@ require 'build_buddy/builder'
4
4
  require 'build_buddy/watcher'
5
5
 
6
6
  module BuildBuddy
7
- VERSION = "1.0.6"
7
+ VERSION = "1.1.0"
8
8
  end
9
9
 
@@ -14,7 +14,7 @@ module BuildBuddy
14
14
  attr_accessor :pull_request_build_script
15
15
  attr_accessor :master_build_script
16
16
  attr_accessor :release_build_script
17
- end
17
+ end
18
18
 
19
19
  class << self
20
20
  def configure
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: build-buddy
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.6
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Lyon-smith