hypercuke 0.5.0 → 0.5.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
  SHA1:
3
- metadata.gz: e4fc2de2d9d06dbc60cbc06eaf8e44cb624170dc
4
- data.tar.gz: 5182b28d65f9ac1e584ca20a994b7a3dd75a92f4
3
+ metadata.gz: b2d3d8c4332058cc641a19baeeb7ab65604b518c
4
+ data.tar.gz: a53670cee898b72e1648af585fc06116866632a6
5
5
  SHA512:
6
- metadata.gz: e89acf6fd6fbbd1519491b92dc9bc077254c79c16aea0efb4def0288a8e0927a019ae5e3b2f75fc46d65362d96cc501f43b831c4161140bc0c4df02d25d8f4db
7
- data.tar.gz: 9caab6bdaad88e2f92790c4c3b5f14734548f17a0d3a90a2a6ad88d7f1124eca8fac988ff8facde00c2f7f2d11227f4f5fb3d01e079c894d55241284fc64c680
6
+ metadata.gz: 74e341f88dae4ca3e27bd159a7fddd9516b4f32329d4e94506181faa06f57f768e6dd4e9469d33cdd4f875043f81831d68070d53dfa2c29c0351ab8dbfed5c33
7
+ data.tar.gz: 9491999783bf584e615c5591f661470322d703f89a803678b61c3e66ee9b7c978b2ece09614c42146a28ab416700712eef48f1ee78df94118be43e7e02af18ea
@@ -31,14 +31,18 @@ module Hypercuke
31
31
  end
32
32
 
33
33
  def add_layer_tag_for_mode
34
- cuke_args << "--tags #{layer_tag_for_mode}"
34
+ cuke_args << layer_tags_for_mode
35
35
  end
36
36
 
37
- def layer_tag_for_mode
37
+ def layer_tags_for_mode
38
38
  layer = options.fetch(:layer_name)
39
- mode = options[:mode]
40
- blank_or_ok = ->(e) { e.to_s =~ /^(\s*|ok)$/ }
41
- '@' + [ layer, mode ].reject(&blank_or_ok).join('_')
39
+ mode = [options[:mode].to_s.strip, 'ok'].reject {|s| s =~ /^\s*$/ }.first
40
+
41
+ if 'ok' == mode
42
+ "--tags @#{layer} --tags @#{layer}_ok"
43
+ else
44
+ "--tags @#{layer}_#{mode}"
45
+ end
42
46
  end
43
47
 
44
48
  def add_profile_unless_already_present
@@ -1,3 +1,7 @@
1
1
  module Hypercuke
2
- VERSION = "0.5.0"
2
+ MAJOR = 0
3
+ MINOR = 5
4
+ REVISION = 1
5
+
6
+ VERSION = [ MAJOR, MINOR, REVISION ].join('.')
3
7
  end
data/spec/cli_spec.rb CHANGED
@@ -48,13 +48,13 @@ expected: #{expected_output.inspect}
48
48
  end
49
49
 
50
50
  it "ignores the 0th 'hcu' argument in its various forms (does this even happen?)" do
51
- expect_command_line 'hcu core', "#{cmd_base} --tags @core"
52
- expect_command_line 'bin/hcu core', "#{cmd_base} --tags @core"
51
+ expect_command_line 'hcu core', "#{cmd_base} --tags @core --tags @core_ok"
52
+ expect_command_line 'bin/hcu core', "#{cmd_base} --tags @core --tags @core_ok"
53
53
  end
54
54
 
55
55
  it "treats the first argument as a layer name and adds the appropriate --tags flag" do
56
- expect_command_line 'core', "#{cmd_base} --tags @core"
57
- expect_command_line 'model', "#{cmd_base} --tags @model"
56
+ expect_command_line 'core', "#{cmd_base} --tags @core --tags @core_ok"
57
+ expect_command_line 'model', "#{cmd_base} --tags @model --tags @model_ok"
58
58
  end
59
59
 
60
60
  it "barfs if the layer name is not given" do
@@ -63,7 +63,7 @@ expected: #{expected_output.inspect}
63
63
  end
64
64
 
65
65
  it "treats the second argument as a mode (assuming it doesn't start with a dash)" do
66
- expect_command_line 'core ok', "#{cmd_base} --tags @core"
66
+ expect_command_line 'core ok', "#{cmd_base} --tags @core --tags @core_ok"
67
67
  end
68
68
 
69
69
  it "adds '--profile wip' when the mode is 'wip'" do
@@ -71,13 +71,13 @@ expected: #{expected_output.inspect}
71
71
  end
72
72
 
73
73
  it "ignores most other arguments and just hands them off to Cucumber" do
74
- expect_command_line 'core --wibble', "#{cmd_base} --tags @core --wibble"
75
- expect_command_line 'core ok --wibble', "#{cmd_base} --tags @core --wibble"
74
+ expect_command_line 'core --wibble', "#{cmd_base} --tags @core --tags @core_ok --wibble"
75
+ expect_command_line 'core ok --wibble', "#{cmd_base} --tags @core --tags @core_ok --wibble"
76
76
  end
77
77
 
78
78
  it "doesn't override a profile if the user explicitly specifies one (using either -p or --profile)" do
79
- expect_command_line 'core --dingbat --profile emperor_penguin', "#{cmd_base} --tags @core --profile emperor_penguin --dingbat"
80
- expect_command_line 'core --dingbat -p emperor_penguin', "#{cmd_base} --tags @core --profile emperor_penguin --dingbat"
79
+ expect_command_line 'core --dingbat --profile emperor_penguin', "#{cmd_base} --tags @core --tags @core_ok --profile emperor_penguin --dingbat"
80
+ expect_command_line 'core --dingbat -p emperor_penguin', "#{cmd_base} --tags @core --tags @core_ok --profile emperor_penguin --dingbat"
81
81
  end
82
82
 
83
83
  it "doesn't override a user-specified profile, even in wip mode when it would normally use the wip profile" do
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hypercuke
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sam Livingston-Gray
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-08-12 00:00:00.000000000 Z
11
+ date: 2014-08-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement