henry-container 0.1.49 → 0.1.50

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
  SHA1:
3
- metadata.gz: c93dba7a071410d8141e8ff483c67d7130ddab15
4
- data.tar.gz: f2feecf24e72ca5d3d40210a1bdcba8eb35967d1
3
+ metadata.gz: f05fd4b532ac47751906ba9b950a6f49d94d53a5
4
+ data.tar.gz: 6586221066d7638def8ee4d2bb1f312ce9d6d654
5
5
  SHA512:
6
- metadata.gz: 4ffdb2e380b55f12d83d66971d658e7a1c3b4fe5ed99428688aa868035d5d898a3e231d348c1bff0961a35da90bf1bd9eb86f664abc2a0824259547198d2e520
7
- data.tar.gz: 223c742a3917a4591101bd8f1eadb0578394fa3d640f12b7b3b4f1095cd7a06d4d8b526d8ca05aad96dcf8030eacc38916296acf22a6cf464895a0c523339d4c
6
+ metadata.gz: 2c921b541c7b22d3a86219fb20276df14f58a28e4995ea1f8b02c2435e2311b44187a1061cd1087589b60295af73014c38c9272572035fb83462a1aabe493914
7
+ data.tar.gz: 427b6843a773376df7bcfb92986ce5a759fdb1682c7bc6366b9ca4d7510206f97e398ff6366db0b1c023a6db408cf7fd4fd3d753498eade16659a69e513334d7
@@ -3,7 +3,7 @@ module Henry
3
3
  class Container
4
4
 
5
5
  # Current Gem version
6
- VERSION = '0.1.49'
6
+ VERSION = '0.1.50'
7
7
 
8
8
  end
9
9
 
@@ -16,7 +16,7 @@ module Henry
16
16
  # The path to the default file export directory
17
17
  #
18
18
  # @return [String]
19
- DEFAULT_OUTPUT_DIRECTORY = "./output"
19
+ DEFAULT_OUTPUT_DIRECTORY = ".output"
20
20
 
21
21
  def self.config
22
22
  @@config ||= Henry::Config.import!.params
@@ -41,6 +41,7 @@ module Henry
41
41
  #
42
42
  # @param [String] path the path of the file to be exported.
43
43
  def self.export_file(path)
44
+ FileUtils.mkdir_p(Henry::Environment.output_path)
44
45
  FileUtils.copy_file(path, "#{Henry::Environment.output_path}/#{File.basename(path)}")
45
46
  end
46
47
 
@@ -14,7 +14,7 @@ module Henry
14
14
  OUT_PATH = 'cucumber.out'
15
15
 
16
16
  # Default base output directory
17
- DEFAULT_OUTPUT_BASE_DIR = '.henry'
17
+ DEFAULT_OUTPUT_BASE_DIR = '.output'
18
18
 
19
19
  # The reports path template.
20
20
  REPORTS_DIR = 'reports/${FORMAT}'
@@ -11,7 +11,7 @@ module Henry
11
11
  OUT_PATH = 'minitest.out'
12
12
 
13
13
  # Default base output directory
14
- DEFAULT_OUTPUT_BASE_DIR = '.henry'
14
+ DEFAULT_OUTPUT_BASE_DIR = '.output'
15
15
 
16
16
  # The reports path template.
17
17
  REPORTS_DIR = 'reports/minitest'
@@ -14,7 +14,7 @@ module Henry
14
14
  OUT_PATH = 'rspec.out'
15
15
 
16
16
  # Default base output directory
17
- DEFAULT_OUTPUT_BASE_DIR = '.henry'
17
+ DEFAULT_OUTPUT_BASE_DIR = '.output'
18
18
 
19
19
  # The reports path template.
20
20
  REPORTS_DIR = 'reports/${FORMAT}'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: henry-container
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.49
4
+ version: 0.1.50
5
5
  platform: ruby
6
6
  authors:
7
7
  - Roberto Decurnex