hiptest-publisher 1.24.0 → 1.25.0

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
  SHA256:
3
- metadata.gz: '09445f481edaea2106196ec07def0d1a4d2a72ca36e200ad9cdcd8df69ebf36a'
4
- data.tar.gz: 957f74182eaa0c91ac62d18bb514772c7bb786a7cd968124d4240e711c1fcbbe
3
+ metadata.gz: 9b32532cf24c1b4eb89a73d461326d4bb8b4479537006fa992791e80c0b44670
4
+ data.tar.gz: d8b5967b9aae9c867d5f1f04612e5ca9d90d4993408acbcec5b5cda54da20412
5
5
  SHA512:
6
- metadata.gz: 686b8b9adb5b51a19e00a3750ec5fcedce02a86cf62a1e4030b3c15a856be642082f40057385ee6e13f0c689fc25154121e7e93573823e70626ee677fd43a528
7
- data.tar.gz: 3fa1ef00011ebb3848c8fc8347ab2dbac1939a68ba3ae63fb41050a7b13b052de6bfd4dad669f0d927a489a454405c361d3742ba3233bda7f1b3b646d63d617b
6
+ metadata.gz: a5ecc59f31485f0eff1125bad4d50d015a1fd3f208264d886337108c8cd1f67c753d6dbc6886b2bd9404c31f41414b3860b42f3831114ab22b3559eb61f8ace2
7
+ data.tar.gz: ebefba4c226511ad9dcfa0486881ee753c8cbb2060df3ac1196e91c6db3e7331d413a41274542b5374392d168638657d8b99f20601cb2c5ad44b85067e404aa9
data/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) Hiptest
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
22
+
data/README.md CHANGED
@@ -1,6 +1,7 @@
1
1
  HipTest Publisher
2
2
  ==============
3
3
 
4
+ [![CircleCI](https://circleci.com/gh/hiptest/hiptest-publisher.svg?style=svg)](https://circleci.com/gh/hiptest/hiptest-publisher)
4
5
  [![Build Status Linux](https://travis-ci.org/hiptest/hiptest-publisher.svg?branch=master)](https://travis-ci.org/hiptest/hiptest-publisher)
5
6
  [![Build Status Windows](https://ci.appveyor.com/api/projects/status/ciahcci0ayr1oihr/branch/master?svg=true)](https://ci.appveyor.com/project/hiptest/hiptest-publisher)
6
7
  [![Gem Version](https://badge.fury.io/rb/hiptest-publisher.svg)](http://badge.fury.io/rb/hiptest-publisher)
@@ -18,7 +18,23 @@ naming_convention = 'underscore'
18
18
  call_prefix = 'self.actionwords'
19
19
  renderer_addons = 'GherkinAddon BehaveAddon'
20
20
 
21
+ [step_definitions_library]
22
+ node_name = libraries
23
+ call_prefix = 'actionwords'
24
+ template_dirs = behave, python, common
25
+ named_filename = 'steps_%s.py'
26
+ renderer_addons = 'GherkinAddon'
27
+
21
28
  [actionwords]
22
29
  template_dirs = python, common
23
30
  filename = 'actionwords.py'
24
31
  naming_convention = 'underscore'
32
+
33
+ [library]
34
+ template_dirs = python, common
35
+ filename = 'actionword_library.py'
36
+
37
+ [libraries]
38
+ template_dirs = python, common
39
+ named_filename = '%s_library.py'
40
+ filename_convention = 'underscore'
@@ -63,7 +63,6 @@ module Hiptest
63
63
  joiner.gsub!(/\\t/, "\t")
64
64
  joiner.gsub!(/\\n/, "\n")
65
65
 
66
-
67
66
  if block.nil? || block.items.empty?
68
67
  "#{items.join(joiner)}"
69
68
  else
@@ -71,14 +70,11 @@ module Hiptest
71
70
  return else_block.fn(context)
72
71
  end
73
72
 
74
- current_this = context.get('this')
75
- result = items.map do |item|
76
- context.add_item(:this, item)
77
- block.fn(context)
73
+ items.map do |item|
74
+ context.with_temporary_context(this: item) do
75
+ block.fn(context)
76
+ end
78
77
  end.join(joiner)
79
-
80
- context.add_item(:this, current_this)
81
- result
82
78
  end
83
79
  end
84
80
 
@@ -89,12 +85,9 @@ module Hiptest
89
85
  end
90
86
 
91
87
  def hh_with(context, var, name, block)
92
- name = name.to_s
93
- current_value = context.get(name)
94
- context.add_item(name, var)
95
- result = block.fn(context)
96
- context.add_item(name, current_value)
97
- result
88
+ context.with_temporary_context(name => var) do
89
+ block.fn(context)
90
+ end
98
91
  end
99
92
 
100
93
  def hh_unless(context, condition, block, else_block = nil)
@@ -285,14 +278,12 @@ module Hiptest
285
278
  end
286
279
 
287
280
  def hh_case(context, expression, block_whens, block_else = nil)
288
- context.add_item(:__case_expression, expression);
289
- block_whens.fn(context)
290
- result = context.get("__case_result") || (block_else && block_else.fn(context).chomp) || ''
291
-
292
- context.add_item(:__case_expression, nil)
293
- context.add_item(:__case_result, nil)
281
+ result = nil
294
282
 
295
- result
283
+ context.with_temporary_context(__case_expression: expression, __case_result: nil) do
284
+ block_whens.fn(context)
285
+ context.get("__case_result") || (block_else && block_else.fn(context).chomp) || ''
286
+ end
296
287
  end
297
288
 
298
289
  def hh_when(context, value, block)
@@ -4,6 +4,7 @@ require 'parseconfig'
4
4
  require 'ostruct'
5
5
  require 'digest/md5'
6
6
  require 'pathname'
7
+ require 'ruby-handlebars/escapers/dummy_escaper'
7
8
 
8
9
  require 'hiptest-publisher/formatters/console_formatter'
9
10
  require 'hiptest-publisher/renderer_addons'
@@ -430,6 +431,8 @@ class TemplateFinder
430
431
  def handlebars
431
432
  if !@handlebars
432
433
  @handlebars = Handlebars::Handlebars.new
434
+ @handlebars.set_escaper(Handlebars::Escapers::DummyEscaper)
435
+
433
436
  register_partials
434
437
  Hiptest::HandlebarsHelper.register_helpers(@handlebars, @context)
435
438
  end
@@ -0,0 +1,7 @@
1
+ from behave import *
2
+
3
+
4
+ use_step_matcher('re')
5
+ {{#each rendered_children.library_actionwords}}
6
+ {{{this}}}
7
+ {{/each}}
@@ -0,0 +1,4 @@
1
+ {{#if rendered_children.gherkin_used_annotations}}
2
+ {{#each rendered_children.gherkin_used_annotations}}@{{{downcase this }}}(r'{{#remove_last_character ':'}}{{#escape_single_quotes}}{{#strip_regexp_delimiters}}{{> gherkin_pattern}}{{/strip_regexp_delimiters}}{{/escape_single_quotes}}{{/remove_last_character}}')
3
+ {{/each}}def impl(context{{#if has_parameters?}}, {{{ join rendered_children.parameters_ordered_by_pattern ', '}}}{{/if}}):{{#indent}}
4
+ context.actionwords.get{{capitalize library_name}}Library().{{{ underscore rendered_children.name }}}({{#if has_parameters?}}{{#join raw_parameter_names ', '}}{{#replace "__datatable" "context.table"}}{{#replace "__free_text" "context.text"}}{{{underscore this}}}{{/replace}}{{/replace}}{{/join}}{{/if}}){{/indent}}{{/if}}
@@ -1,7 +1,7 @@
1
1
  if ({{{ rendered_children.condition }}}) {{#curly}}
2
2
  {{#indent}}{{#each rendered_children.then}}{{{this}}}
3
3
  {{/each}}{{/indent}}
4
- {{#if has_else?}}{{ close_curly }} else {{open_curly}}
4
+ {{#if has_else?}}} else {
5
5
  {{#indent}}{{#each rendered_children.else}}{{{this}}}
6
6
  {{/each}}{{/indent}}
7
7
  {{/if}}{{/curly}}
@@ -1,5 +1,5 @@
1
- {{#if rendered_children.gherkin_annotation }}{{{ rendered_children.gherkin_annotation }}}(~"^{{#escape_backslashes_and_double_quotes}}{{> gherkin_pattern}}{{/escape_backslashes_and_double_quotes}}\$") {{#curly}} {{{ join rendered_children.parameters_ordered_by_pattern ', '}}} ->{{#indent}}
1
+ {{#if rendered_children.gherkin_annotation }}{{{ rendered_children.gherkin_annotation }}}(~"^{{#escape_backslashes_and_double_quotes}}{{> gherkin_pattern}}{{/escape_backslashes_and_double_quotes}}\$") { {{{ join rendered_children.parameters_ordered_by_pattern ', '}}} ->{{#indent}}
2
2
  {{{ context.call_prefix }}}.{{{camelize_lower uniq_name}}}({{#if has_parameters?}}{{#join raw_parameter_names ', '}}{{{camelize_lower this}}}{{/join}}{{/if}})
3
3
  {{/indent}}
4
- {{/curly}}
4
+ }
5
5
  {{/if}}
@@ -1,5 +1,5 @@
1
- {{#if rendered_children.gherkin_annotation }}{{{ rendered_children.gherkin_annotation }}}(~"^{{#escape_backslashes_and_double_quotes}}{{> gherkin_pattern}}{{/escape_backslashes_and_double_quotes}}\$") {{#curly}} {{{ join rendered_children.parameters_ordered_by_pattern ', '}}} ->{{#indent}}
1
+ {{#if rendered_children.gherkin_annotation }}{{{ rendered_children.gherkin_annotation }}}(~"^{{#escape_backslashes_and_double_quotes}}{{> gherkin_pattern}}{{/escape_backslashes_and_double_quotes}}\$") { {{{ join rendered_children.parameters_ordered_by_pattern ', '}}} ->{{#indent}}
2
2
  {{{ context.call_prefix }}}.get{{{camelize library_name}}}Library().{{{camelize_lower uniq_name}}}({{#if has_parameters?}}{{#join raw_parameter_names ', '}}{{{camelize_lower this}}}{{/join}}{{/if}})
3
3
  {{/indent}}
4
- {{/curly}}
4
+ }
5
5
  {{/if}}
@@ -1,5 +1,5 @@
1
- import {{#curly}} After, Before, Given, When, Then, TableDefinition {{/curly}} from "cucumber";
2
- import {{#curly}} ActionWords {{/curly}} from './actionwords';
1
+ import { After, Before, Given, When, Then, TableDefinition } from "cucumber";
2
+ import { ActionWords } from './actionwords';
3
3
 
4
4
  let actionWords : ActionWords;
5
5
  {{> before_hook}}
@@ -1 +1 @@
1
- {{{ rendered_children.value }}}
1
+ {{ rendered_children.value }}
@@ -1,7 +1,7 @@
1
1
  if ({{{ rendered_children.condition }}}) {{#curly}}
2
2
  {{#indent}}{{#each rendered_children.then}}{{{this}}}
3
3
  {{/each}}{{/indent}}
4
- {{#if has_else?}}{{ close_curly }} else {{open_curly}}
4
+ {{#if has_else?}}} else {
5
5
  {{#indent}}{{#each rendered_children.else}}{{{this}}}
6
6
  {{/each}}{{/indent}}
7
7
  {{/if}}{{/curly}}
@@ -1,7 +1,7 @@
1
1
  if ({{{ rendered_children.condition }}}) {{#curly}}
2
2
  {{#indent}}{{#each rendered_children.then}}{{{this}}}{{/each}}
3
3
  {{/indent}}
4
- {{#if has_else?}}{{close_curly}} else {{open_curly}}
4
+ {{#if has_else?}}} else {
5
5
  {{#indent}}{{#each rendered_children.else}}{{{this}}}{{/each}}
6
6
  {{/indent}}
7
7
  {{/if}}{{/curly}}
@@ -1,6 +1,6 @@
1
1
  {{{ rendered_children.name }}}
2
2
  {{#if context.parent_folder_tags}}{{#if rendered_children.ancestor_tags}}Meta:
3
- {{rendered_children.ancestor_tags}}{{/if}}{{#if has_tags?}}{{#if rendered_children.ancestor_tags}} {{else}}Meta:
3
+ {{join rendered_children.ancestor_tags " "}}{{/if}}{{#if has_tags?}}{{#if rendered_children.ancestor_tags}} {{else}}Meta:
4
4
  {{/if}}{{join rendered_children.tags " "}}
5
5
  {{/if}}{{else}}Meta:
6
6
  {{join rendered_children.tags " "}}
@@ -1,7 +1,7 @@
1
1
  if ({{{ rendered_children.condition }}}) {{#curly}}
2
2
  {{#indent}}{{#each rendered_children.then}}{{{this}}}{{/each}}
3
3
  {{/indent}}
4
- {{#if has_else?}}{{close_curly}} else {{open_curly}}
4
+ {{#if has_else?}}} else {
5
5
  {{#indent}}{{#each rendered_children.else}}{{{this}}}{{/each}}
6
6
  {{/indent}}
7
7
  {{/if}}{{/curly}}
@@ -1 +1 @@
1
- "{{#each treated_chunks}}{{#if this.is_variable?}}{{#curly}}${{{camelize_lower this.raw.children.name}}}{{/curly}}{{else}}{{{ escape_double_quotes this.raw.children.value }}}{{/if}}{{/each}}"
1
+ "{{#each treated_chunks}}{{#if this.is_variable?}}{${{{camelize_lower this.raw.children.name}}}}{{else}}{{{ escape_double_quotes this.raw.children.value }}}{{/if}}{{/each}}"
@@ -1,6 +1,9 @@
1
1
  # encoding: UTF-8
2
2
 
3
- class Actionwords:{{#indent}}
3
+ {{#if uses_library?}}from steps.actionword_library import ActionwordLibrary{{/if}}
4
+
5
+
6
+ class Actionwords{{#if uses_library?}}(ActionwordLibrary){{/if}}:{{#indent}}
4
7
  def __init__(self):{{#indent}}
5
8
  pass{{/indent}}
6
9
 
@@ -1,2 +1,2 @@
1
1
  {{#if has_annotation? }}{{#comment '#'}}{{{ rendered_children.gherkin_text }}}{{/comment}}
2
- {{/if}}self.{{#if context.call_prefix}}{{{ context.call_prefix }}}.{{/if}}{{{ underscore rendered_children.actionword }}}({{{ join rendered_children.arguments ', '}}})
2
+ {{/if}}self.{{#if context.call_prefix}}{{{ context.call_prefix }}}.{{/if}}{{#if is_shared?}}get{{{camelize rendered_children.library_name}}}Library().{{/if}}{{{ underscore rendered_children.actionword }}}({{{ join rendered_children.all_arguments ', '}}})
@@ -0,0 +1,9 @@
1
+ # encoding: UTF-8
2
+
3
+ {{#each library_names}}from steps.{{downcase this}}_library import {{camelize this}}Library
4
+ {{/each}}
5
+
6
+ class ActionwordLibrary:{{#indent}}{{#each library_names}}
7
+ def get{{camelize this}}Library(self):{{#indent}}
8
+ return {{camelize this}}Library(self){{/indent}}
9
+ {{/each}}{{/indent}}
@@ -0,0 +1,17 @@
1
+ # encoding: UTF-8
2
+
3
+ from behave import *
4
+
5
+
6
+ class {{capitalize rendered_children.name}}Library:{{#indent}}
7
+ __instance = None
8
+
9
+ def __new__(cls, context):{{#indent}}
10
+ if {{capitalize rendered_children.name}}Library.__instance is None{{#indent}}
11
+ {{capitalize rendered_children.name}}Library.__instance = object.__new__(cls){{/indent}}
12
+
13
+ return {{capitalize rendered_children.name}}Library.__instance{{/indent}}
14
+
15
+ {{#each rendered_children.library_actionwords}}{{{this}}}
16
+ {{/each}}
17
+ {{/indent}}
@@ -0,0 +1 @@
1
+ {{> item_as_def}}
@@ -13,7 +13,7 @@ Resource{{tab}}keywords.txt
13
13
  *** Keywords ***
14
14
 
15
15
  {{#each rendered_children.splitted_scenarios}}{{#if this.datatable}}{{normalize_with_spaces this.name}} keyword{{#indent}}
16
- [Arguments]{{tab}}${{#curly}}__test_name{{/curly}}{{tab}}{{join this.parameters '\t'}}
16
+ [Arguments]{{tab}}${__test_name}{{tab}}{{join this.parameters '\t'}}
17
17
  {{#if this.tags}}[Tags]{{tab}}{{{ join this.tags '\t'}}}
18
18
  {{/if}}{{join this.body '\n'}}{{/indent}}
19
19
 
@@ -1,4 +1,4 @@
1
- import {{#curly}} TableDefinition {{/curly}} from "cucumber";
1
+ import { TableDefinition } from "cucumber";
2
2
 
3
3
  export class ActionWords {{#curly}}{{#indent}}
4
4
  {{#each rendered_children.actionwords}}{{{this}}}
metadata CHANGED
@@ -1,55 +1,55 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hiptest-publisher
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.24.0
4
+ version: 1.25.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - HipTest R&D
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-06-21 00:00:00.000000000 Z
11
+ date: 2019-07-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: colorize
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ">="
18
- - !ruby/object:Gem::Version
19
- version: 0.7.5
20
17
  - - "~>"
21
18
  - !ruby/object:Gem::Version
22
19
  version: '0.7'
20
+ - - ">="
21
+ - !ruby/object:Gem::Version
22
+ version: 0.7.5
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
26
26
  requirements:
27
- - - ">="
28
- - !ruby/object:Gem::Version
29
- version: 0.7.5
30
27
  - - "~>"
31
28
  - !ruby/object:Gem::Version
32
29
  version: '0.7'
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: 0.7.5
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: parseconfig
35
35
  requirement: !ruby/object:Gem::Requirement
36
36
  requirements:
37
- - - ">="
38
- - !ruby/object:Gem::Version
39
- version: 1.0.4
40
37
  - - "~>"
41
38
  - !ruby/object:Gem::Version
42
39
  version: '1.0'
40
+ - - ">="
41
+ - !ruby/object:Gem::Version
42
+ version: 1.0.4
43
43
  type: :runtime
44
44
  prerelease: false
45
45
  version_requirements: !ruby/object:Gem::Requirement
46
46
  requirements:
47
- - - ">="
48
- - !ruby/object:Gem::Version
49
- version: 1.0.4
50
47
  - - "~>"
51
48
  - !ruby/object:Gem::Version
52
49
  version: '1.0'
50
+ - - ">="
51
+ - !ruby/object:Gem::Version
52
+ version: 1.0.4
53
53
  - !ruby/object:Gem::Dependency
54
54
  name: i18n
55
55
  requirement: !ruby/object:Gem::Requirement
@@ -74,56 +74,56 @@ dependencies:
74
74
  name: nokogiri
75
75
  requirement: !ruby/object:Gem::Requirement
76
76
  requirements:
77
- - - "<"
78
- - !ruby/object:Gem::Version
79
- version: '1.10'
80
77
  - - "~>"
81
78
  - !ruby/object:Gem::Version
82
79
  version: '1.8'
80
+ - - "<"
81
+ - !ruby/object:Gem::Version
82
+ version: '1.10'
83
83
  type: :runtime
84
84
  prerelease: false
85
85
  version_requirements: !ruby/object:Gem::Requirement
86
86
  requirements:
87
- - - "<"
88
- - !ruby/object:Gem::Version
89
- version: '1.10'
90
87
  - - "~>"
91
88
  - !ruby/object:Gem::Version
92
89
  version: '1.8'
90
+ - - "<"
91
+ - !ruby/object:Gem::Version
92
+ version: '1.10'
93
93
  - !ruby/object:Gem::Dependency
94
94
  name: multipart-post
95
95
  requirement: !ruby/object:Gem::Requirement
96
96
  requirements:
97
- - - ">="
98
- - !ruby/object:Gem::Version
99
- version: 2.1.1
100
97
  - - "~>"
101
98
  - !ruby/object:Gem::Version
102
99
  version: '2.1'
100
+ - - ">="
101
+ - !ruby/object:Gem::Version
102
+ version: 2.1.1
103
103
  type: :runtime
104
104
  prerelease: false
105
105
  version_requirements: !ruby/object:Gem::Requirement
106
106
  requirements:
107
- - - ">="
108
- - !ruby/object:Gem::Version
109
- version: 2.1.1
110
107
  - - "~>"
111
108
  - !ruby/object:Gem::Version
112
109
  version: '2.1'
110
+ - - ">="
111
+ - !ruby/object:Gem::Version
112
+ version: 2.1.1
113
113
  - !ruby/object:Gem::Dependency
114
114
  name: ruby-handlebars
115
115
  requirement: !ruby/object:Gem::Requirement
116
116
  requirements:
117
117
  - - "~>"
118
118
  - !ruby/object:Gem::Version
119
- version: 0.0.2
119
+ version: '0.1'
120
120
  type: :runtime
121
121
  prerelease: false
122
122
  version_requirements: !ruby/object:Gem::Requirement
123
123
  requirements:
124
124
  - - "~>"
125
125
  - !ruby/object:Gem::Version
126
- version: 0.0.2
126
+ version: '0.1'
127
127
  - !ruby/object:Gem::Dependency
128
128
  name: ruby_version
129
129
  requirement: !ruby/object:Gem::Requirement
@@ -198,22 +198,22 @@ dependencies:
198
198
  name: codeclimate-test-reporter
199
199
  requirement: !ruby/object:Gem::Requirement
200
200
  requirements:
201
- - - ">="
202
- - !ruby/object:Gem::Version
203
- version: 0.4.6
204
201
  - - "~>"
205
202
  - !ruby/object:Gem::Version
206
203
  version: '0.4'
204
+ - - ">="
205
+ - !ruby/object:Gem::Version
206
+ version: 0.4.6
207
207
  type: :development
208
208
  prerelease: false
209
209
  version_requirements: !ruby/object:Gem::Requirement
210
210
  requirements:
211
- - - ">="
212
- - !ruby/object:Gem::Version
213
- version: 0.4.6
214
211
  - - "~>"
215
212
  - !ruby/object:Gem::Version
216
213
  version: '0.4'
214
+ - - ">="
215
+ - !ruby/object:Gem::Version
216
+ version: 0.4.6
217
217
  - !ruby/object:Gem::Dependency
218
218
  name: i18n-tasks
219
219
  requirement: !ruby/object:Gem::Requirement
@@ -249,8 +249,10 @@ executables:
249
249
  - hiptest-publisher
250
250
  extensions: []
251
251
  extra_rdoc_files:
252
+ - LICENSE
252
253
  - README.md
253
254
  files:
255
+ - LICENSE
254
256
  - README.md
255
257
  - bin/hiptest-publisher
256
258
  - config/i18n-tasks.yml
@@ -323,6 +325,9 @@ files:
323
325
  - lib/templates/behat/parameter.hbs
324
326
  - lib/templates/behave/actionword.hbs
325
327
  - lib/templates/behave/actionwords.hbs
328
+ - lib/templates/behave/library.hbs
329
+ - lib/templates/behave/libraryactionword.hbs
330
+ - lib/templates/behave/nullliteral.hbs
326
331
  - lib/templates/common/_gherkin_pattern.hbs
327
332
  - lib/templates/common/booleanliteral.hbs
328
333
  - lib/templates/common/dataset.hbs
@@ -588,6 +593,9 @@ files:
588
593
  - lib/templates/python/folder.hbs
589
594
  - lib/templates/python/ifthen.hbs
590
595
  - lib/templates/python/index.hbs
596
+ - lib/templates/python/libraries.hbs
597
+ - lib/templates/python/library.hbs
598
+ - lib/templates/python/libraryactionword.hbs
591
599
  - lib/templates/python/list.hbs
592
600
  - lib/templates/python/nullliteral.hbs
593
601
  - lib/templates/python/parameter.hbs
@@ -704,8 +712,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
704
712
  - !ruby/object:Gem::Version
705
713
  version: '0'
706
714
  requirements: []
707
- rubyforge_project:
708
- rubygems_version: 2.7.6.2
715
+ rubygems_version: 3.0.4
709
716
  signing_key:
710
717
  specification_version: 4
711
718
  summary: Export your tests from HipTest into executable tests.