cuke_modeler 1.0.1 → 1.0.2

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.
Files changed (111) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +5 -5
  3. data/Gemfile +1 -0
  4. data/History.md +9 -0
  5. data/README.md +6 -0
  6. data/Rakefile +2 -2
  7. data/cuke_modeler.gemspec +7 -6
  8. data/lib/cuke_modeler/version.rb +1 -1
  9. data/{features → testing/cucumber/features}/analysis/test_comparison.feature +0 -0
  10. data/{features → testing/cucumber/features}/modeling/background_modeling.feature +0 -0
  11. data/{features → testing/cucumber/features}/modeling/background_output.feature +0 -0
  12. data/{features → testing/cucumber/features}/modeling/cell_modeling.feature +0 -0
  13. data/{features → testing/cucumber/features}/modeling/cell_output.feature +0 -0
  14. data/{features → testing/cucumber/features}/modeling/directory_modeling.feature +0 -0
  15. data/{features → testing/cucumber/features}/modeling/directory_output.feature +0 -0
  16. data/{features → testing/cucumber/features}/modeling/doc_string_modeling.feature +0 -0
  17. data/{features → testing/cucumber/features}/modeling/doc_string_output.feature +0 -0
  18. data/{features → testing/cucumber/features}/modeling/example_modeling.feature +0 -0
  19. data/{features → testing/cucumber/features}/modeling/example_output.feature +0 -0
  20. data/{features → testing/cucumber/features}/modeling/feature_file_modeling.feature +0 -0
  21. data/{features → testing/cucumber/features}/modeling/feature_file_output.feature +0 -0
  22. data/{features → testing/cucumber/features}/modeling/feature_modeling.feature +0 -0
  23. data/{features → testing/cucumber/features}/modeling/feature_output.feature +0 -0
  24. data/{features → testing/cucumber/features}/modeling/model_output.feature +0 -0
  25. data/{features → testing/cucumber/features}/modeling/model_structure.feature +0 -0
  26. data/{features → testing/cucumber/features}/modeling/outline_modeling.feature +0 -0
  27. data/{features → testing/cucumber/features}/modeling/outline_output.feature +0 -0
  28. data/{features → testing/cucumber/features}/modeling/row_modeling.feature +0 -0
  29. data/{features → testing/cucumber/features}/modeling/row_output.feature +0 -0
  30. data/{features → testing/cucumber/features}/modeling/scenario_modeling.feature +0 -0
  31. data/{features → testing/cucumber/features}/modeling/scenario_output.feature +0 -0
  32. data/{features → testing/cucumber/features}/modeling/step_modeling.feature +0 -0
  33. data/{features → testing/cucumber/features}/modeling/step_output.feature +0 -0
  34. data/{features → testing/cucumber/features}/modeling/table_modeling.feature +0 -0
  35. data/{features → testing/cucumber/features}/modeling/table_output.feature +0 -0
  36. data/{features → testing/cucumber/features}/modeling/tag_modeling.feature +0 -0
  37. data/{features → testing/cucumber/features}/modeling/tag_output.feature +0 -0
  38. data/{features → testing/cucumber}/step_definitions/action_steps.rb +0 -0
  39. data/{features → testing/cucumber}/step_definitions/background_steps.rb +0 -0
  40. data/{features → testing/cucumber}/step_definitions/directory_steps.rb +0 -0
  41. data/{features → testing/cucumber}/step_definitions/doc_string_steps.rb +0 -0
  42. data/{features → testing/cucumber}/step_definitions/feature_file_steps.rb +0 -0
  43. data/{features → testing/cucumber}/step_definitions/feature_steps.rb +0 -0
  44. data/{features → testing/cucumber}/step_definitions/modeling_steps.rb +0 -0
  45. data/{features → testing/cucumber}/step_definitions/setup_steps.rb +0 -0
  46. data/{features → testing/cucumber}/step_definitions/step_steps.rb +0 -0
  47. data/{features → testing/cucumber}/step_definitions/table_steps.rb +0 -0
  48. data/{features → testing/cucumber}/step_definitions/tag_steps.rb +0 -0
  49. data/{features → testing/cucumber}/step_definitions/verification_steps.rb +0 -0
  50. data/{features → testing/cucumber}/support/env.rb +1 -1
  51. data/{features → testing/cucumber}/support/transforms.rb +0 -0
  52. data/{gemfiles → testing/gemfiles}/gherkin2.gemfile +2 -1
  53. data/{gemfiles → testing/gemfiles}/gherkin3.gemfile +2 -1
  54. data/{gemfiles → testing/gemfiles}/gherkin4.gemfile +2 -1
  55. data/{spec → testing/rspec/spec}/integration/background_integration_spec.rb +1 -1
  56. data/{spec → testing/rspec/spec}/integration/cell_integration_spec.rb +1 -1
  57. data/{spec → testing/rspec/spec}/integration/directory_integration_spec.rb +1 -1
  58. data/{spec → testing/rspec/spec}/integration/doc_string_integration_spec.rb +1 -1
  59. data/{spec → testing/rspec/spec}/integration/example_integration_spec.rb +2 -2
  60. data/{spec → testing/rspec/spec}/integration/feature_file_integration_spec.rb +1 -1
  61. data/{spec → testing/rspec/spec}/integration/feature_integration_spec.rb +1 -1
  62. data/{spec → testing/rspec/spec}/integration/gherkin_2_adapter_spec.rb +1 -1
  63. data/{spec → testing/rspec/spec}/integration/gherkin_3_adapter_spec.rb +1 -1
  64. data/{spec → testing/rspec/spec}/integration/gherkin_4_adapter_spec.rb +1 -1
  65. data/{spec → testing/rspec/spec}/integration/model_integration_spec.rb +1 -1
  66. data/{spec → testing/rspec/spec}/integration/nested_integration_spec.rb +1 -1
  67. data/{spec → testing/rspec/spec}/integration/outline_integration_spec.rb +1 -1
  68. data/{spec → testing/rspec/spec}/integration/parsing_integration_spec.rb +1 -1
  69. data/{spec → testing/rspec/spec}/integration/row_integration_spec.rb +1 -1
  70. data/{spec → testing/rspec/spec}/integration/scenario_integration_spec.rb +1 -1
  71. data/{spec → testing/rspec/spec}/integration/shared/models_integration_specs.rb +1 -1
  72. data/{spec → testing/rspec/spec}/integration/step_integration_spec.rb +1 -1
  73. data/{spec → testing/rspec/spec}/integration/table_integration_spec.rb +5 -5
  74. data/{spec → testing/rspec/spec}/integration/tag_integration_spec.rb +4 -4
  75. data/{spec → testing/rspec/spec}/spec_helper.rb +3 -3
  76. data/{spec → testing/rspec/spec}/unit/background_unit_spec.rb +1 -1
  77. data/{spec → testing/rspec/spec}/unit/cell_unit_spec.rb +1 -1
  78. data/{spec → testing/rspec/spec}/unit/described_unit_spec.rb +1 -1
  79. data/{spec → testing/rspec/spec}/unit/directory_unit_spec.rb +1 -1
  80. data/{spec → testing/rspec/spec}/unit/doc_string_unit_spec.rb +1 -1
  81. data/{spec → testing/rspec/spec}/unit/example_unit_spec.rb +1 -1
  82. data/{spec → testing/rspec/spec}/unit/feature_file_unit_spec.rb +1 -1
  83. data/{spec → testing/rspec/spec}/unit/feature_unit_spec.rb +1 -1
  84. data/{spec → testing/rspec/spec}/unit/model_unit_spec.rb +1 -1
  85. data/{spec → testing/rspec/spec}/unit/named_unit_spec.rb +1 -1
  86. data/{spec → testing/rspec/spec}/unit/nested_unit_spec.rb +1 -1
  87. data/{spec → testing/rspec/spec}/unit/outline_unit_spec.rb +1 -1
  88. data/{spec → testing/rspec/spec}/unit/parsed_unit_spec.rb +1 -1
  89. data/{spec → testing/rspec/spec}/unit/parsing_unit_spec.rb +1 -1
  90. data/{spec → testing/rspec/spec}/unit/row_unit_spec.rb +1 -1
  91. data/{spec → testing/rspec/spec}/unit/scenario_unit_spec.rb +1 -1
  92. data/{spec → testing/rspec/spec}/unit/shared/bare_bones_models_unit_specs.rb +1 -1
  93. data/{spec → testing/rspec/spec}/unit/shared/containing_models_unit_specs.rb +1 -1
  94. data/{spec → testing/rspec/spec}/unit/shared/described_models_unit_specs.rb +1 -1
  95. data/{spec → testing/rspec/spec}/unit/shared/models_unit_specs.rb +1 -1
  96. data/{spec → testing/rspec/spec}/unit/shared/named_models_unit_specs.rb +1 -1
  97. data/{spec → testing/rspec/spec}/unit/shared/nested_models_unit_specs.rb +1 -1
  98. data/{spec → testing/rspec/spec}/unit/shared/parsed_models_unit_specs.rb +1 -1
  99. data/{spec → testing/rspec/spec}/unit/shared/prepopulated_models_unit_specs.rb +1 -1
  100. data/{spec → testing/rspec/spec}/unit/shared/sourced_models_unit_specs.rb +1 -1
  101. data/{spec → testing/rspec/spec}/unit/shared/stepped_models_unit_specs.rb +1 -1
  102. data/{spec → testing/rspec/spec}/unit/shared/stringifiable_models_unit_specs.rb +1 -1
  103. data/{spec → testing/rspec/spec}/unit/shared/tagged_models_unit_specs.rb +1 -1
  104. data/{spec → testing/rspec/spec}/unit/sourceable_unit_spec.rb +1 -1
  105. data/{spec → testing/rspec/spec}/unit/step_unit_spec.rb +1 -1
  106. data/{spec → testing/rspec/spec}/unit/stepped_unit_spec.rb +1 -1
  107. data/{spec → testing/rspec/spec}/unit/table_unit_spec.rb +1 -1
  108. data/{spec → testing/rspec/spec}/unit/tag_unit_spec.rb +1 -1
  109. data/{spec → testing/rspec/spec}/unit/taggable_unit_spec.rb +1 -1
  110. data/todo.txt +0 -1
  111. metadata +135 -222
@@ -4,9 +4,9 @@ unless RUBY_VERSION.to_s < '1.9.0'
4
4
  end
5
5
 
6
6
 
7
- this_dir = File.dirname(__FILE__)
8
-
9
- require "#{this_dir}/../lib/cuke_modeler"
7
+ # Ruby 1.8.x seems to have trouble if relative paths get too nested, so resolving the path before using it here
8
+ this_dir = File.expand_path(File.dirname(__FILE__))
9
+ require "#{this_dir}/../../../lib/cuke_modeler"
10
10
 
11
11
  require "#{this_dir}/unit/shared/models_unit_specs"
12
12
  require "#{this_dir}/integration/shared/models_integration_specs"
@@ -1,4 +1,4 @@
1
- require 'spec_helper'
1
+ require "#{File.dirname(__FILE__)}/../spec_helper"
2
2
 
3
3
 
4
4
  describe 'Background, Unit', :unit_test => true do
@@ -1,4 +1,4 @@
1
- require 'spec_helper'
1
+ require "#{File.dirname(__FILE__)}/../spec_helper"
2
2
 
3
3
 
4
4
  describe 'Cell, Unit', :unit_test => true do
@@ -1,4 +1,4 @@
1
- require 'spec_helper'
1
+ require "#{File.dirname(__FILE__)}/../spec_helper"
2
2
 
3
3
 
4
4
  describe 'Described, Unit', :unit_test => true do
@@ -1,4 +1,4 @@
1
- require 'spec_helper'
1
+ require "#{File.dirname(__FILE__)}/../spec_helper"
2
2
 
3
3
 
4
4
  describe 'Directory, Unit', :unit_test => true do
@@ -1,4 +1,4 @@
1
- require 'spec_helper'
1
+ require "#{File.dirname(__FILE__)}/../spec_helper"
2
2
 
3
3
 
4
4
  describe 'DocString, Unit', :unit_test => true do
@@ -1,4 +1,4 @@
1
- require 'spec_helper'
1
+ require "#{File.dirname(__FILE__)}/../spec_helper"
2
2
 
3
3
 
4
4
  describe 'Example, Unit', :unit_test => true do
@@ -1,4 +1,4 @@
1
- require 'spec_helper'
1
+ require "#{File.dirname(__FILE__)}/../spec_helper"
2
2
 
3
3
 
4
4
  describe 'FeatureFile, Unit', :unit_test => true do
@@ -1,4 +1,4 @@
1
- require 'spec_helper'
1
+ require "#{File.dirname(__FILE__)}/../spec_helper"
2
2
 
3
3
 
4
4
  describe 'Feature, Unit', :unit_test => true do
@@ -1,4 +1,4 @@
1
- require 'spec_helper'
1
+ require "#{File.dirname(__FILE__)}/../spec_helper"
2
2
 
3
3
 
4
4
  describe 'Model, Unit' do
@@ -1,4 +1,4 @@
1
- require 'spec_helper'
1
+ require "#{File.dirname(__FILE__)}/../spec_helper"
2
2
 
3
3
 
4
4
  describe 'Named, Unit', :unit_test => true do
@@ -1,4 +1,4 @@
1
- require 'spec_helper'
1
+ require "#{File.dirname(__FILE__)}/../spec_helper"
2
2
 
3
3
 
4
4
  describe 'Nested, Unit', :unit_test => true do
@@ -1,4 +1,4 @@
1
- require 'spec_helper'
1
+ require "#{File.dirname(__FILE__)}/../spec_helper"
2
2
 
3
3
 
4
4
  describe 'Outline, Unit', :unit_test => true do
@@ -1,4 +1,4 @@
1
- require 'spec_helper'
1
+ require "#{File.dirname(__FILE__)}/../spec_helper"
2
2
 
3
3
 
4
4
  describe 'Parsed, Unit' do
@@ -1,4 +1,4 @@
1
- require 'spec_helper'
1
+ require "#{File.dirname(__FILE__)}/../spec_helper"
2
2
 
3
3
 
4
4
  describe 'Parsing, Unit', :unit_test => true do
@@ -1,4 +1,4 @@
1
- require 'spec_helper'
1
+ require "#{File.dirname(__FILE__)}/../spec_helper"
2
2
 
3
3
 
4
4
  describe 'Row, Unit', :unit_test => true do
@@ -1,4 +1,4 @@
1
- require 'spec_helper'
1
+ require "#{File.dirname(__FILE__)}/../spec_helper"
2
2
 
3
3
 
4
4
  describe 'Scenario, Unit', :unit_test => true do
@@ -1,4 +1,4 @@
1
- require 'spec_helper'
1
+ require "#{File.dirname(__FILE__)}/../../spec_helper"
2
2
 
3
3
  shared_examples_for 'a bare bones model' do
4
4
 
@@ -1,4 +1,4 @@
1
- require 'spec_helper'
1
+ require "#{File.dirname(__FILE__)}/../../spec_helper"
2
2
 
3
3
  shared_examples_for 'a containing model' do
4
4
 
@@ -1,4 +1,4 @@
1
- require 'spec_helper'
1
+ require "#{File.dirname(__FILE__)}/../../spec_helper"
2
2
 
3
3
  shared_examples_for 'a described model' do
4
4
 
@@ -1,4 +1,4 @@
1
- require 'spec_helper'
1
+ require "#{File.dirname(__FILE__)}/../../spec_helper"
2
2
 
3
3
  shared_examples_for 'a model' do
4
4
 
@@ -1,4 +1,4 @@
1
- require 'spec_helper'
1
+ require "#{File.dirname(__FILE__)}/../../spec_helper"
2
2
 
3
3
  shared_examples_for 'a named model' do
4
4
 
@@ -1,4 +1,4 @@
1
- require 'spec_helper'
1
+ require "#{File.dirname(__FILE__)}/../../spec_helper"
2
2
 
3
3
  shared_examples_for 'a nested model' do
4
4
 
@@ -1,4 +1,4 @@
1
- require 'spec_helper'
1
+ require "#{File.dirname(__FILE__)}/../../spec_helper"
2
2
 
3
3
  shared_examples_for 'a parsed model' do
4
4
 
@@ -1,4 +1,4 @@
1
- require 'spec_helper'
1
+ require "#{File.dirname(__FILE__)}/../../spec_helper"
2
2
 
3
3
  shared_examples_for 'a prepopulated model' do
4
4
 
@@ -1,4 +1,4 @@
1
- require 'spec_helper'
1
+ require "#{File.dirname(__FILE__)}/../../spec_helper"
2
2
 
3
3
  shared_examples_for 'a sourced model' do
4
4
 
@@ -1,4 +1,4 @@
1
- require 'spec_helper'
1
+ require "#{File.dirname(__FILE__)}/../../spec_helper"
2
2
 
3
3
  shared_examples_for 'a stepped model' do
4
4
 
@@ -1,4 +1,4 @@
1
- require 'spec_helper'
1
+ require "#{File.dirname(__FILE__)}/../../spec_helper"
2
2
 
3
3
  shared_examples_for 'a stringifiable model' do
4
4
 
@@ -1,4 +1,4 @@
1
- require 'spec_helper'
1
+ require "#{File.dirname(__FILE__)}/../../spec_helper"
2
2
 
3
3
  shared_examples_for 'a tagged model' do
4
4
 
@@ -1,4 +1,4 @@
1
- require 'spec_helper'
1
+ require "#{File.dirname(__FILE__)}/../spec_helper"
2
2
 
3
3
 
4
4
  describe 'Sourceable, Unit', :unit_test => true do
@@ -1,4 +1,4 @@
1
- require 'spec_helper'
1
+ require "#{File.dirname(__FILE__)}/../spec_helper"
2
2
 
3
3
 
4
4
  describe 'Step, Unit', :unit_test => true do
@@ -1,4 +1,4 @@
1
- require 'spec_helper'
1
+ require "#{File.dirname(__FILE__)}/../spec_helper"
2
2
 
3
3
 
4
4
  describe 'Stepped, Unit', :unit_test => true do
@@ -1,4 +1,4 @@
1
- require 'spec_helper'
1
+ require "#{File.dirname(__FILE__)}/../spec_helper"
2
2
 
3
3
 
4
4
  describe 'Table, Unit', :unit_test => true do
@@ -1,4 +1,4 @@
1
- require 'spec_helper'
1
+ require "#{File.dirname(__FILE__)}/../spec_helper"
2
2
 
3
3
 
4
4
  describe 'Tag, Unit', :unit_test => true do
@@ -1,4 +1,4 @@
1
- require 'spec_helper'
1
+ require "#{File.dirname(__FILE__)}/../spec_helper"
2
2
 
3
3
 
4
4
  describe 'Taggable, Unit', :unit_test => true do
data/todo.txt CHANGED
@@ -14,7 +14,6 @@ parsing module needs json/multijson require line?
14
14
  # todo - incorporate cuke_modeler extensions from other projects
15
15
  # todo - add plenty of testing around weird and minimal gherkin text for all models
16
16
 
17
- restructure project into new way that I did the other one
18
17
 
19
18
  Backlog
20
19
  -------------
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cuke_modeler
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eric Kessler
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-09-10 00:00:00.000000000 Z
11
+ date: 2016-09-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gherkin
@@ -28,16 +28,22 @@ dependencies:
28
28
  name: json
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - "~>"
31
+ - - ">="
32
32
  - !ruby/object:Gem::Version
33
33
  version: '1.0'
34
+ - - "<="
35
+ - !ruby/object:Gem::Version
36
+ version: '3.0'
34
37
  type: :runtime
35
38
  prerelease: false
36
39
  version_requirements: !ruby/object:Gem::Requirement
37
40
  requirements:
38
- - - "~>"
41
+ - - ">="
39
42
  - !ruby/object:Gem::Version
40
43
  version: '1.0'
44
+ - - "<="
45
+ - !ruby/object:Gem::Version
46
+ version: '3.0'
41
47
  - !ruby/object:Gem::Dependency
42
48
  name: multi_json
43
49
  requirement: !ruby/object:Gem::Requirement
@@ -70,30 +76,30 @@ dependencies:
70
76
  name: rake
71
77
  requirement: !ruby/object:Gem::Requirement
72
78
  requirements:
73
- - - ">="
79
+ - - "<"
74
80
  - !ruby/object:Gem::Version
75
- version: '0'
81
+ version: 12.0.0
76
82
  type: :development
77
83
  prerelease: false
78
84
  version_requirements: !ruby/object:Gem::Requirement
79
85
  requirements:
80
- - - ">="
86
+ - - "<"
81
87
  - !ruby/object:Gem::Version
82
- version: '0'
88
+ version: 12.0.0
83
89
  - !ruby/object:Gem::Dependency
84
90
  name: cucumber
85
91
  requirement: !ruby/object:Gem::Requirement
86
92
  requirements:
87
- - - ">="
93
+ - - "<"
88
94
  - !ruby/object:Gem::Version
89
- version: '0'
95
+ version: 3.0.0
90
96
  type: :development
91
97
  prerelease: false
92
98
  version_requirements: !ruby/object:Gem::Requirement
93
99
  requirements:
94
- - - ">="
100
+ - - "<"
95
101
  - !ruby/object:Gem::Version
96
- version: '0'
102
+ version: 3.0.0
97
103
  - !ruby/object:Gem::Dependency
98
104
  name: rspec
99
105
  requirement: !ruby/object:Gem::Requirement
@@ -112,16 +118,16 @@ dependencies:
112
118
  name: simplecov
113
119
  requirement: !ruby/object:Gem::Requirement
114
120
  requirements:
115
- - - ">="
121
+ - - "<"
116
122
  - !ruby/object:Gem::Version
117
- version: '0'
123
+ version: 1.0.0
118
124
  type: :development
119
125
  prerelease: false
120
126
  version_requirements: !ruby/object:Gem::Requirement
121
127
  requirements:
122
- - - ">="
128
+ - - "<"
123
129
  - !ruby/object:Gem::Version
124
- version: '0'
130
+ version: 1.0.0
125
131
  - !ruby/object:Gem::Dependency
126
132
  name: racatt
127
133
  requirement: !ruby/object:Gem::Requirement
@@ -140,17 +146,22 @@ dependencies:
140
146
  name: coveralls
141
147
  requirement: !ruby/object:Gem::Requirement
142
148
  requirements:
143
- - - ">="
149
+ - - "<"
144
150
  - !ruby/object:Gem::Version
145
- version: '0'
151
+ version: 1.0.0
146
152
  type: :development
147
153
  prerelease: false
148
154
  version_requirements: !ruby/object:Gem::Requirement
149
155
  requirements:
150
- - - ">="
156
+ - - "<"
151
157
  - !ruby/object:Gem::Version
152
- version: '0'
153
- description:
158
+ version: 1.0.0
159
+ description: This gem facilitates modeling a test suite that is written in Gherkin
160
+ (e.g. Cucumber, SpecFlow, Lettuce, etc.). It does this by providing an abstraction
161
+ layer on top of the Abstract Syntax Tree that the 'gherkin' gem generates when parsing
162
+ features, as well as providing models for feature files and directories in order
163
+ to be able to have a fully traversable model tree of a test suite's structure. These
164
+ models can then be analyzed or manipulated more easily than the underlying AST layer.
154
165
  email:
155
166
  - morrow748@gmail.com
156
167
  executables: []
@@ -166,52 +177,6 @@ files:
166
177
  - README.md
167
178
  - Rakefile
168
179
  - cuke_modeler.gemspec
169
- - features/analysis/test_comparison.feature
170
- - features/modeling/background_modeling.feature
171
- - features/modeling/background_output.feature
172
- - features/modeling/cell_modeling.feature
173
- - features/modeling/cell_output.feature
174
- - features/modeling/directory_modeling.feature
175
- - features/modeling/directory_output.feature
176
- - features/modeling/doc_string_modeling.feature
177
- - features/modeling/doc_string_output.feature
178
- - features/modeling/example_modeling.feature
179
- - features/modeling/example_output.feature
180
- - features/modeling/feature_file_modeling.feature
181
- - features/modeling/feature_file_output.feature
182
- - features/modeling/feature_modeling.feature
183
- - features/modeling/feature_output.feature
184
- - features/modeling/model_output.feature
185
- - features/modeling/model_structure.feature
186
- - features/modeling/outline_modeling.feature
187
- - features/modeling/outline_output.feature
188
- - features/modeling/row_modeling.feature
189
- - features/modeling/row_output.feature
190
- - features/modeling/scenario_modeling.feature
191
- - features/modeling/scenario_output.feature
192
- - features/modeling/step_modeling.feature
193
- - features/modeling/step_output.feature
194
- - features/modeling/table_modeling.feature
195
- - features/modeling/table_output.feature
196
- - features/modeling/tag_modeling.feature
197
- - features/modeling/tag_output.feature
198
- - features/step_definitions/action_steps.rb
199
- - features/step_definitions/background_steps.rb
200
- - features/step_definitions/directory_steps.rb
201
- - features/step_definitions/doc_string_steps.rb
202
- - features/step_definitions/feature_file_steps.rb
203
- - features/step_definitions/feature_steps.rb
204
- - features/step_definitions/modeling_steps.rb
205
- - features/step_definitions/setup_steps.rb
206
- - features/step_definitions/step_steps.rb
207
- - features/step_definitions/table_steps.rb
208
- - features/step_definitions/tag_steps.rb
209
- - features/step_definitions/verification_steps.rb
210
- - features/support/env.rb
211
- - features/support/transforms.rb
212
- - gemfiles/gherkin2.gemfile
213
- - gemfiles/gherkin3.gemfile
214
- - gemfiles/gherkin4.gemfile
215
180
  - lib/cuke_modeler.rb
216
181
  - lib/cuke_modeler/adapters/gherkin_2_adapter.rb
217
182
  - lib/cuke_modeler/adapters/gherkin_3_adapter.rb
@@ -240,61 +205,107 @@ files:
240
205
  - lib/cuke_modeler/stepped.rb
241
206
  - lib/cuke_modeler/taggable.rb
242
207
  - lib/cuke_modeler/version.rb
243
- - spec/integration/background_integration_spec.rb
244
- - spec/integration/cell_integration_spec.rb
245
- - spec/integration/directory_integration_spec.rb
246
- - spec/integration/doc_string_integration_spec.rb
247
- - spec/integration/example_integration_spec.rb
248
- - spec/integration/feature_file_integration_spec.rb
249
- - spec/integration/feature_integration_spec.rb
250
- - spec/integration/gherkin_2_adapter_spec.rb
251
- - spec/integration/gherkin_3_adapter_spec.rb
252
- - spec/integration/gherkin_4_adapter_spec.rb
253
- - spec/integration/model_integration_spec.rb
254
- - spec/integration/nested_integration_spec.rb
255
- - spec/integration/outline_integration_spec.rb
256
- - spec/integration/parsing_integration_spec.rb
257
- - spec/integration/row_integration_spec.rb
258
- - spec/integration/scenario_integration_spec.rb
259
- - spec/integration/shared/models_integration_specs.rb
260
- - spec/integration/step_integration_spec.rb
261
- - spec/integration/table_integration_spec.rb
262
- - spec/integration/tag_integration_spec.rb
263
- - spec/spec_helper.rb
264
- - spec/unit/background_unit_spec.rb
265
- - spec/unit/cell_unit_spec.rb
266
- - spec/unit/described_unit_spec.rb
267
- - spec/unit/directory_unit_spec.rb
268
- - spec/unit/doc_string_unit_spec.rb
269
- - spec/unit/example_unit_spec.rb
270
- - spec/unit/feature_file_unit_spec.rb
271
- - spec/unit/feature_unit_spec.rb
272
- - spec/unit/model_unit_spec.rb
273
- - spec/unit/named_unit_spec.rb
274
- - spec/unit/nested_unit_spec.rb
275
- - spec/unit/outline_unit_spec.rb
276
- - spec/unit/parsed_unit_spec.rb
277
- - spec/unit/parsing_unit_spec.rb
278
- - spec/unit/row_unit_spec.rb
279
- - spec/unit/scenario_unit_spec.rb
280
- - spec/unit/shared/bare_bones_models_unit_specs.rb
281
- - spec/unit/shared/containing_models_unit_specs.rb
282
- - spec/unit/shared/described_models_unit_specs.rb
283
- - spec/unit/shared/models_unit_specs.rb
284
- - spec/unit/shared/named_models_unit_specs.rb
285
- - spec/unit/shared/nested_models_unit_specs.rb
286
- - spec/unit/shared/parsed_models_unit_specs.rb
287
- - spec/unit/shared/prepopulated_models_unit_specs.rb
288
- - spec/unit/shared/sourced_models_unit_specs.rb
289
- - spec/unit/shared/stepped_models_unit_specs.rb
290
- - spec/unit/shared/stringifiable_models_unit_specs.rb
291
- - spec/unit/shared/tagged_models_unit_specs.rb
292
- - spec/unit/sourceable_unit_spec.rb
293
- - spec/unit/step_unit_spec.rb
294
- - spec/unit/stepped_unit_spec.rb
295
- - spec/unit/table_unit_spec.rb
296
- - spec/unit/tag_unit_spec.rb
297
- - spec/unit/taggable_unit_spec.rb
208
+ - testing/cucumber/features/analysis/test_comparison.feature
209
+ - testing/cucumber/features/modeling/background_modeling.feature
210
+ - testing/cucumber/features/modeling/background_output.feature
211
+ - testing/cucumber/features/modeling/cell_modeling.feature
212
+ - testing/cucumber/features/modeling/cell_output.feature
213
+ - testing/cucumber/features/modeling/directory_modeling.feature
214
+ - testing/cucumber/features/modeling/directory_output.feature
215
+ - testing/cucumber/features/modeling/doc_string_modeling.feature
216
+ - testing/cucumber/features/modeling/doc_string_output.feature
217
+ - testing/cucumber/features/modeling/example_modeling.feature
218
+ - testing/cucumber/features/modeling/example_output.feature
219
+ - testing/cucumber/features/modeling/feature_file_modeling.feature
220
+ - testing/cucumber/features/modeling/feature_file_output.feature
221
+ - testing/cucumber/features/modeling/feature_modeling.feature
222
+ - testing/cucumber/features/modeling/feature_output.feature
223
+ - testing/cucumber/features/modeling/model_output.feature
224
+ - testing/cucumber/features/modeling/model_structure.feature
225
+ - testing/cucumber/features/modeling/outline_modeling.feature
226
+ - testing/cucumber/features/modeling/outline_output.feature
227
+ - testing/cucumber/features/modeling/row_modeling.feature
228
+ - testing/cucumber/features/modeling/row_output.feature
229
+ - testing/cucumber/features/modeling/scenario_modeling.feature
230
+ - testing/cucumber/features/modeling/scenario_output.feature
231
+ - testing/cucumber/features/modeling/step_modeling.feature
232
+ - testing/cucumber/features/modeling/step_output.feature
233
+ - testing/cucumber/features/modeling/table_modeling.feature
234
+ - testing/cucumber/features/modeling/table_output.feature
235
+ - testing/cucumber/features/modeling/tag_modeling.feature
236
+ - testing/cucumber/features/modeling/tag_output.feature
237
+ - testing/cucumber/step_definitions/action_steps.rb
238
+ - testing/cucumber/step_definitions/background_steps.rb
239
+ - testing/cucumber/step_definitions/directory_steps.rb
240
+ - testing/cucumber/step_definitions/doc_string_steps.rb
241
+ - testing/cucumber/step_definitions/feature_file_steps.rb
242
+ - testing/cucumber/step_definitions/feature_steps.rb
243
+ - testing/cucumber/step_definitions/modeling_steps.rb
244
+ - testing/cucumber/step_definitions/setup_steps.rb
245
+ - testing/cucumber/step_definitions/step_steps.rb
246
+ - testing/cucumber/step_definitions/table_steps.rb
247
+ - testing/cucumber/step_definitions/tag_steps.rb
248
+ - testing/cucumber/step_definitions/verification_steps.rb
249
+ - testing/cucumber/support/env.rb
250
+ - testing/cucumber/support/transforms.rb
251
+ - testing/gemfiles/gherkin2.gemfile
252
+ - testing/gemfiles/gherkin3.gemfile
253
+ - testing/gemfiles/gherkin4.gemfile
254
+ - testing/rspec/spec/integration/background_integration_spec.rb
255
+ - testing/rspec/spec/integration/cell_integration_spec.rb
256
+ - testing/rspec/spec/integration/directory_integration_spec.rb
257
+ - testing/rspec/spec/integration/doc_string_integration_spec.rb
258
+ - testing/rspec/spec/integration/example_integration_spec.rb
259
+ - testing/rspec/spec/integration/feature_file_integration_spec.rb
260
+ - testing/rspec/spec/integration/feature_integration_spec.rb
261
+ - testing/rspec/spec/integration/gherkin_2_adapter_spec.rb
262
+ - testing/rspec/spec/integration/gherkin_3_adapter_spec.rb
263
+ - testing/rspec/spec/integration/gherkin_4_adapter_spec.rb
264
+ - testing/rspec/spec/integration/model_integration_spec.rb
265
+ - testing/rspec/spec/integration/nested_integration_spec.rb
266
+ - testing/rspec/spec/integration/outline_integration_spec.rb
267
+ - testing/rspec/spec/integration/parsing_integration_spec.rb
268
+ - testing/rspec/spec/integration/row_integration_spec.rb
269
+ - testing/rspec/spec/integration/scenario_integration_spec.rb
270
+ - testing/rspec/spec/integration/shared/models_integration_specs.rb
271
+ - testing/rspec/spec/integration/step_integration_spec.rb
272
+ - testing/rspec/spec/integration/table_integration_spec.rb
273
+ - testing/rspec/spec/integration/tag_integration_spec.rb
274
+ - testing/rspec/spec/spec_helper.rb
275
+ - testing/rspec/spec/unit/background_unit_spec.rb
276
+ - testing/rspec/spec/unit/cell_unit_spec.rb
277
+ - testing/rspec/spec/unit/described_unit_spec.rb
278
+ - testing/rspec/spec/unit/directory_unit_spec.rb
279
+ - testing/rspec/spec/unit/doc_string_unit_spec.rb
280
+ - testing/rspec/spec/unit/example_unit_spec.rb
281
+ - testing/rspec/spec/unit/feature_file_unit_spec.rb
282
+ - testing/rspec/spec/unit/feature_unit_spec.rb
283
+ - testing/rspec/spec/unit/model_unit_spec.rb
284
+ - testing/rspec/spec/unit/named_unit_spec.rb
285
+ - testing/rspec/spec/unit/nested_unit_spec.rb
286
+ - testing/rspec/spec/unit/outline_unit_spec.rb
287
+ - testing/rspec/spec/unit/parsed_unit_spec.rb
288
+ - testing/rspec/spec/unit/parsing_unit_spec.rb
289
+ - testing/rspec/spec/unit/row_unit_spec.rb
290
+ - testing/rspec/spec/unit/scenario_unit_spec.rb
291
+ - testing/rspec/spec/unit/shared/bare_bones_models_unit_specs.rb
292
+ - testing/rspec/spec/unit/shared/containing_models_unit_specs.rb
293
+ - testing/rspec/spec/unit/shared/described_models_unit_specs.rb
294
+ - testing/rspec/spec/unit/shared/models_unit_specs.rb
295
+ - testing/rspec/spec/unit/shared/named_models_unit_specs.rb
296
+ - testing/rspec/spec/unit/shared/nested_models_unit_specs.rb
297
+ - testing/rspec/spec/unit/shared/parsed_models_unit_specs.rb
298
+ - testing/rspec/spec/unit/shared/prepopulated_models_unit_specs.rb
299
+ - testing/rspec/spec/unit/shared/sourced_models_unit_specs.rb
300
+ - testing/rspec/spec/unit/shared/stepped_models_unit_specs.rb
301
+ - testing/rspec/spec/unit/shared/stringifiable_models_unit_specs.rb
302
+ - testing/rspec/spec/unit/shared/tagged_models_unit_specs.rb
303
+ - testing/rspec/spec/unit/sourceable_unit_spec.rb
304
+ - testing/rspec/spec/unit/step_unit_spec.rb
305
+ - testing/rspec/spec/unit/stepped_unit_spec.rb
306
+ - testing/rspec/spec/unit/table_unit_spec.rb
307
+ - testing/rspec/spec/unit/tag_unit_spec.rb
308
+ - testing/rspec/spec/unit/taggable_unit_spec.rb
298
309
  - todo.txt
299
310
  homepage: https://github.com/enkessler/cuke_modeler
300
311
  licenses:
@@ -319,103 +330,5 @@ rubyforge_project:
319
330
  rubygems_version: 2.2.5
320
331
  signing_key:
321
332
  specification_version: 4
322
- summary: A gem providing functionality to model a Cucumber test suite.
323
- test_files:
324
- - features/analysis/test_comparison.feature
325
- - features/modeling/background_modeling.feature
326
- - features/modeling/background_output.feature
327
- - features/modeling/cell_modeling.feature
328
- - features/modeling/cell_output.feature
329
- - features/modeling/directory_modeling.feature
330
- - features/modeling/directory_output.feature
331
- - features/modeling/doc_string_modeling.feature
332
- - features/modeling/doc_string_output.feature
333
- - features/modeling/example_modeling.feature
334
- - features/modeling/example_output.feature
335
- - features/modeling/feature_file_modeling.feature
336
- - features/modeling/feature_file_output.feature
337
- - features/modeling/feature_modeling.feature
338
- - features/modeling/feature_output.feature
339
- - features/modeling/model_output.feature
340
- - features/modeling/model_structure.feature
341
- - features/modeling/outline_modeling.feature
342
- - features/modeling/outline_output.feature
343
- - features/modeling/row_modeling.feature
344
- - features/modeling/row_output.feature
345
- - features/modeling/scenario_modeling.feature
346
- - features/modeling/scenario_output.feature
347
- - features/modeling/step_modeling.feature
348
- - features/modeling/step_output.feature
349
- - features/modeling/table_modeling.feature
350
- - features/modeling/table_output.feature
351
- - features/modeling/tag_modeling.feature
352
- - features/modeling/tag_output.feature
353
- - features/step_definitions/action_steps.rb
354
- - features/step_definitions/background_steps.rb
355
- - features/step_definitions/directory_steps.rb
356
- - features/step_definitions/doc_string_steps.rb
357
- - features/step_definitions/feature_file_steps.rb
358
- - features/step_definitions/feature_steps.rb
359
- - features/step_definitions/modeling_steps.rb
360
- - features/step_definitions/setup_steps.rb
361
- - features/step_definitions/step_steps.rb
362
- - features/step_definitions/table_steps.rb
363
- - features/step_definitions/tag_steps.rb
364
- - features/step_definitions/verification_steps.rb
365
- - features/support/env.rb
366
- - features/support/transforms.rb
367
- - spec/integration/background_integration_spec.rb
368
- - spec/integration/cell_integration_spec.rb
369
- - spec/integration/directory_integration_spec.rb
370
- - spec/integration/doc_string_integration_spec.rb
371
- - spec/integration/example_integration_spec.rb
372
- - spec/integration/feature_file_integration_spec.rb
373
- - spec/integration/feature_integration_spec.rb
374
- - spec/integration/gherkin_2_adapter_spec.rb
375
- - spec/integration/gherkin_3_adapter_spec.rb
376
- - spec/integration/gherkin_4_adapter_spec.rb
377
- - spec/integration/model_integration_spec.rb
378
- - spec/integration/nested_integration_spec.rb
379
- - spec/integration/outline_integration_spec.rb
380
- - spec/integration/parsing_integration_spec.rb
381
- - spec/integration/row_integration_spec.rb
382
- - spec/integration/scenario_integration_spec.rb
383
- - spec/integration/shared/models_integration_specs.rb
384
- - spec/integration/step_integration_spec.rb
385
- - spec/integration/table_integration_spec.rb
386
- - spec/integration/tag_integration_spec.rb
387
- - spec/spec_helper.rb
388
- - spec/unit/background_unit_spec.rb
389
- - spec/unit/cell_unit_spec.rb
390
- - spec/unit/described_unit_spec.rb
391
- - spec/unit/directory_unit_spec.rb
392
- - spec/unit/doc_string_unit_spec.rb
393
- - spec/unit/example_unit_spec.rb
394
- - spec/unit/feature_file_unit_spec.rb
395
- - spec/unit/feature_unit_spec.rb
396
- - spec/unit/model_unit_spec.rb
397
- - spec/unit/named_unit_spec.rb
398
- - spec/unit/nested_unit_spec.rb
399
- - spec/unit/outline_unit_spec.rb
400
- - spec/unit/parsed_unit_spec.rb
401
- - spec/unit/parsing_unit_spec.rb
402
- - spec/unit/row_unit_spec.rb
403
- - spec/unit/scenario_unit_spec.rb
404
- - spec/unit/shared/bare_bones_models_unit_specs.rb
405
- - spec/unit/shared/containing_models_unit_specs.rb
406
- - spec/unit/shared/described_models_unit_specs.rb
407
- - spec/unit/shared/models_unit_specs.rb
408
- - spec/unit/shared/named_models_unit_specs.rb
409
- - spec/unit/shared/nested_models_unit_specs.rb
410
- - spec/unit/shared/parsed_models_unit_specs.rb
411
- - spec/unit/shared/prepopulated_models_unit_specs.rb
412
- - spec/unit/shared/sourced_models_unit_specs.rb
413
- - spec/unit/shared/stepped_models_unit_specs.rb
414
- - spec/unit/shared/stringifiable_models_unit_specs.rb
415
- - spec/unit/shared/tagged_models_unit_specs.rb
416
- - spec/unit/sourceable_unit_spec.rb
417
- - spec/unit/step_unit_spec.rb
418
- - spec/unit/stepped_unit_spec.rb
419
- - spec/unit/table_unit_spec.rb
420
- - spec/unit/tag_unit_spec.rb
421
- - spec/unit/taggable_unit_spec.rb
333
+ summary: A gem providing functionality to model Gherkin based test suites.
334
+ test_files: []