yard-nrser-cucumber 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (95) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +61 -0
  3. data/.rspec +3 -0
  4. data/.yardopts +2 -0
  5. data/Gemfile +6 -0
  6. data/History.txt +288 -0
  7. data/LICENSE.txt +22 -0
  8. data/NAME +1 -0
  9. data/README.md +198 -0
  10. data/Rakefile +27 -0
  11. data/VERSION +1 -0
  12. data/example/README.md +8 -0
  13. data/example/child_feature/README.md +21 -0
  14. data/example/child_feature/child.feature +11 -0
  15. data/example/child_feature/grandchild_feature/grandchild.feature +12 -0
  16. data/example/empty.feature +2 -0
  17. data/example/french.feature +18 -0
  18. data/example/scenario.feature +63 -0
  19. data/example/scenario_outline.feature +100 -0
  20. data/example/scenario_outline_multi.feature +15 -0
  21. data/example/step_definitions/example.step.rb +122 -0
  22. data/example/step_definitions/first.step.rb +21 -0
  23. data/example/step_definitions/french_steps.rb +32 -0
  24. data/example/step_definitions/struct.rb +11 -0
  25. data/example/step_definitions/support/env.rb +7 -0
  26. data/example/step_definitions/support/env_support.rb +12 -0
  27. data/example/step_definitions/support/support.rb +6 -0
  28. data/example/tags.feature +18 -0
  29. data/example/transform.feature +18 -0
  30. data/lib/cucumber/city_builder.rb +412 -0
  31. data/lib/docserver/default/fulldoc/html/js/cucumber.js +85 -0
  32. data/lib/docserver/default/layout/html/headers.erb +13 -0
  33. data/lib/docserver/doc_server/full_list/html/full_list.erb +39 -0
  34. data/lib/docserver/doc_server/full_list/html/setup.rb +18 -0
  35. data/lib/templates/default/feature/html/feature.erb +39 -0
  36. data/lib/templates/default/feature/html/no_steps_defined.erb +1 -0
  37. data/lib/templates/default/feature/html/outline.erb +56 -0
  38. data/lib/templates/default/feature/html/pystring.erb +3 -0
  39. data/lib/templates/default/feature/html/scenario.erb +57 -0
  40. data/lib/templates/default/feature/html/setup.rb +51 -0
  41. data/lib/templates/default/feature/html/steps.erb +39 -0
  42. data/lib/templates/default/feature/html/table.erb +20 -0
  43. data/lib/templates/default/featuredirectory/html/alpha_table.erb +30 -0
  44. data/lib/templates/default/featuredirectory/html/directory.erb +32 -0
  45. data/lib/templates/default/featuredirectory/html/setup.rb +37 -0
  46. data/lib/templates/default/featuretags/html/namespace.erb +159 -0
  47. data/lib/templates/default/featuretags/html/setup.rb +34 -0
  48. data/lib/templates/default/fulldoc/html/css/cucumber.css +226 -0
  49. data/lib/templates/default/fulldoc/html/directories.erb +27 -0
  50. data/lib/templates/default/fulldoc/html/full_list_featuredirectories.erb +11 -0
  51. data/lib/templates/default/fulldoc/html/full_list_features.erb +37 -0
  52. data/lib/templates/default/fulldoc/html/full_list_stepdefinitions.erb +20 -0
  53. data/lib/templates/default/fulldoc/html/full_list_steps.erb +20 -0
  54. data/lib/templates/default/fulldoc/html/full_list_tags.erb +16 -0
  55. data/lib/templates/default/fulldoc/html/js/cucumber.js +333 -0
  56. data/lib/templates/default/fulldoc/html/setup.rb +208 -0
  57. data/lib/templates/default/layout/html/setup.rb +131 -0
  58. data/lib/templates/default/requirements/html/alpha_table.erb +26 -0
  59. data/lib/templates/default/requirements/html/requirements.erb +50 -0
  60. data/lib/templates/default/requirements/html/setup.rb +51 -0
  61. data/lib/templates/default/steptransformers/html/header.erb +12 -0
  62. data/lib/templates/default/steptransformers/html/index.erb +10 -0
  63. data/lib/templates/default/steptransformers/html/setup.rb +94 -0
  64. data/lib/templates/default/steptransformers/html/transformers.erb +80 -0
  65. data/lib/templates/default/steptransformers/html/undefinedsteps.erb +26 -0
  66. data/lib/templates/default/tag/html/alpha_table.erb +33 -0
  67. data/lib/templates/default/tag/html/setup.rb +27 -0
  68. data/lib/templates/default/tag/html/tag.erb +35 -0
  69. data/lib/yard-nrser-cucumber.rb +49 -0
  70. data/lib/yard/code_objects/cucumber/base.rb +24 -0
  71. data/lib/yard/code_objects/cucumber/feature.rb +16 -0
  72. data/lib/yard/code_objects/cucumber/namespace_object.rb +55 -0
  73. data/lib/yard/code_objects/cucumber/scenario.rb +25 -0
  74. data/lib/yard/code_objects/cucumber/scenario_outline.rb +68 -0
  75. data/lib/yard/code_objects/cucumber/step.rb +41 -0
  76. data/lib/yard/code_objects/cucumber/tag.rb +31 -0
  77. data/lib/yard/code_objects/step_definition.rb +4 -0
  78. data/lib/yard/code_objects/step_transform.rb +4 -0
  79. data/lib/yard/code_objects/step_transformer.rb +94 -0
  80. data/lib/yard/handlers/constant_transform_handler.rb +98 -0
  81. data/lib/yard/handlers/cucumber/base.rb +21 -0
  82. data/lib/yard/handlers/cucumber/feature_handler.rb +131 -0
  83. data/lib/yard/handlers/legacy/step_definition_handler.rb +45 -0
  84. data/lib/yard/handlers/legacy/step_transform_handler.rb +24 -0
  85. data/lib/yard/handlers/step_definition_handler.rb +86 -0
  86. data/lib/yard/handlers/step_transform_handler.rb +50 -0
  87. data/lib/yard/nrser/cucumber/version.rb +103 -0
  88. data/lib/yard/parser/cucumber/feature.rb +72 -0
  89. data/lib/yard/server/adapter.rb +43 -0
  90. data/lib/yard/server/commands/list_command.rb +31 -0
  91. data/lib/yard/server/router.rb +32 -0
  92. data/lib/yard/templates/helpers/base_helper.rb +26 -0
  93. data/lib/yard/templates/helpers/html_helper.rb +153 -0
  94. data/yard-nrser-cucumber.gemspec +75 -0
  95. metadata +220 -0
@@ -0,0 +1,32 @@
1
+ module YARD
2
+ module Server
3
+
4
+ #
5
+ # The YARD::Server::Router needs the following modification,
6
+ # so that it will provide routing for the features and tags commands
7
+ # to their appropriate definitions
8
+ #
9
+ Router.class_eval do
10
+
11
+ alias_method :core_route_list, :route_list
12
+
13
+ #
14
+ # Provide the full list of features and tags
15
+ #
16
+ def route_list(library, paths)
17
+
18
+ if paths && !paths.empty? && paths.first =~ /^(?:features|tags)$/
19
+ case paths.shift
20
+ when "features"; cmd = Commands::ListFeaturesCommand
21
+ when "tags"; cmd = Commands::ListTagsCommand
22
+ end
23
+ cmd.new(final_options(library, paths)).call(request)
24
+ else
25
+ core_route_list(library,paths)
26
+ end
27
+
28
+ end
29
+
30
+ end
31
+ end
32
+ end
@@ -0,0 +1,26 @@
1
+ module YARD::Templates::Helpers
2
+
3
+ module BaseHelper
4
+
5
+ def format_object_title(object)
6
+ if object.is_a?(YARD::CodeObjects::Cucumber::FeatureTags)
7
+ "Tags"
8
+ elsif object.is_a?(YARD::CodeObjects::Cucumber::StepTransformersObject)
9
+ "Step Definitions and Transforms"
10
+ elsif object.is_a?(YARD::CodeObjects::Cucumber::NamespaceObject)
11
+ "#{format_object_type(object)}#{object.value ? ": #{object.value}" : ''}"
12
+ elsif object.is_a?(YARD::CodeObjects::Cucumber::FeatureDirectory)
13
+ "Feature Directory: #{object.name}"
14
+ else
15
+ case object
16
+ when YARD::CodeObjects::RootObject
17
+ "Top Level Namespace"
18
+ else
19
+ format_object_type(object) + ": " + object.path
20
+ end
21
+ end
22
+ end
23
+
24
+ end
25
+
26
+ end
@@ -0,0 +1,153 @@
1
+ # Namespace
2
+ module YARD
3
+ module Templates
4
+ module Helpers
5
+
6
+ # Monkey into YARD's
7
+ # {https://www.rubydoc.info/gems/yard/YARD/Templates/Helpers/HtmlHelper HtmlHelper}
8
+ # module to add common methods we want available in HTML templates.
9
+ #
10
+ module HtmlHelper
11
+
12
+ # Original HTML-ification method, that is now referred to as `:none` markup.
13
+ # Escapes HTML entities and replaces newlines with `<br/>`.
14
+ #
15
+ # @note 2019.01.10 nrser
16
+ # This method used to be duplicated in `lib/templates/default/`...
17
+ #
18
+ # 1. {file:lib/templates/default/feature/html/setup.rb feature/html/setup.rb}
19
+ # 2. {file:lib/templates/default/featuredirectory/html/setup.rb featuredirectory/html/setup.rb}
20
+ #
21
+ # but de-duplicated it to here after creating this file for
22
+ # {#htmlify_cucumber_text}.
23
+ #
24
+ # @see #htmlify_cucumber_text
25
+ #
26
+ # @param [String] text
27
+ # String to be converted to HTML markup.
28
+ #
29
+ # @return [String]
30
+ # HTML markup.
31
+ #
32
+ def htmlify_with_newlines(text)
33
+ text.split("\n").collect {|c| h(c).gsub(/\s/,'&nbsp;') }.join("<br/>")
34
+ end
35
+
36
+ # Resolve the `markup` value given an argument, as provided to
37
+ # {#htmlify_cucumber_text} or {#htmlify_cucumber_line}. Looks in the config
38
+ # when given `nil`, and defaults to `:none` to preserve old behavior if it
39
+ # finds nothing there either.
40
+ #
41
+ # @param [nil | #to_sym] markup
42
+ # The argument value.
43
+ #
44
+ # @return [Symbol]
45
+ # The value to use.
46
+ #
47
+ def resolve_cucumber_markup(markup = nil)
48
+ if markup.nil?
49
+ markup = YARD::Config.options[ :'yard-cucumber.markup' ] || :none
50
+ end
51
+
52
+ markup = markup.to_sym unless markup.is_a?( Symbol )
53
+
54
+ markup
55
+ end
56
+
57
+ private :resolve_cucumber_markup
58
+
59
+ # Wrapper for HTML-ifying text from Cucumber features and scenarios that takes
60
+ # into account the `yard-cucumber.markup` config value.
61
+ #
62
+ # @param [String] text
63
+ # String to be converted to HTML markup.
64
+ #
65
+ # @param [nil | #to_sym] markup
66
+ # The markup with which to parse the text:
67
+ #
68
+ # 1. `nil` consults the `yard-cucumber.markup` config setting, then
69
+ # proceeds with that value as if it was passed in.
70
+ #
71
+ # If the setting is missing or has a `nil` value, then `:none` is used
72
+ # to maintain the same behavior as before this method was introduced.
73
+ #
74
+ # 2. `:none` uses {#htmlify_with_newlines}, which is what the call sites
75
+ # for this method used to use beforehand.
76
+ #
77
+ # 3. `:default` uses {#htmlify} with no `markup` argument, causing it to
78
+ # use whatever markup is configured in the {#options}.
79
+ #
80
+ # 4. Anything else is passed as the `markup` argument to {#htmlify}.
81
+ #
82
+ # @param [Boolean] strip
83
+ # When `true`, {String#strip} will be called on `text` before HTML-ifying.
84
+ #
85
+ # Texts strings from features and scenarios seem to sometimes have at least
86
+ # leading whitespace that does not seem intended given the `.feature` file.
87
+ #
88
+ # This can trigger code-formatting on the text when processing with
89
+ # Markdown, and I might imagine cause weirdness given other markups as well.
90
+ #
91
+ # *NOTE* To preserve legacy behavior `text` is *never* stripped when
92
+ # `markup` is resolved to `:none`.
93
+ #
94
+ # @return [String]
95
+ # HTML markup.
96
+ #
97
+ def htmlify_cucumber_text(text, markup=nil, strip: true)
98
+ # Resolve the `markup` {Symbol}
99
+ markup = resolve_cucumber_markup markup
100
+
101
+ # Switch off to the appropriate method.
102
+ case markup
103
+ when :none
104
+ # Do what it was before: call {#htmlify_with_newlines}, escapes entities
105
+ # and replaces "\n" with `<br/>` tags.
106
+ htmlify_with_newlines(text)
107
+ when :default
108
+ # Do whatever the rest of YARD is doing.
109
+ htmlify(strip ? text.strip : text)
110
+ else
111
+ htmlify(strip ? text.strip : text, markup)
112
+ end
113
+ end # #htmlify_cucumber_text
114
+
115
+ # Like {#htmlify_cucumber_text} but operates on single lines via {#h} for
116
+ # `:none`.
117
+ #
118
+ # @param [String] text
119
+ # The text to HTML-ify.
120
+ #
121
+ # @param [nil | #to_sym] markup
122
+ # What markup to use; see {#htmlify_cucumber_text} for details.
123
+ #
124
+ # @param [Boolean] strip
125
+ # Should `text` have {String#strip} called on it first when rendering
126
+ # markup?
127
+ #
128
+ # @return [String]
129
+ # HTML.
130
+ #
131
+ def htmlify_cucumber_line(text, markup=nil, strip: true)
132
+ # Resolve the `markup` {Symbol}
133
+ markup = resolve_cucumber_markup markup
134
+
135
+ # Switch off to the appropriate method.
136
+ case markup
137
+ when :none
138
+ # Do what it was before: call {#h}
139
+ h(text)
140
+ when :default
141
+ # Do whatever the rest of YARD is doing.
142
+ htmlify_line(strip ? text.strip : text)
143
+ else
144
+ htmlify_line(strip ? text.strip : text, markup)
145
+ end
146
+ end # #htmlify_cucumber_line
147
+
148
+ end # module HtmlHelper
149
+
150
+ # /Namespace
151
+ end # module YARD
152
+ end # module Templates
153
+ end # module Helpers
@@ -0,0 +1,75 @@
1
+ lib = File.expand_path("../lib", __FILE__)
2
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
+
4
+ require "yard/nrser/cucumber/version"
5
+
6
+ # module CucumberInTheYARD
7
+ # def self.show_version_changes(version)
8
+ # date = ""
9
+ # changes = []
10
+ # grab_changes = false
11
+
12
+ # File.open("#{File.dirname(__FILE__)}/History.txt",'r') do |file|
13
+ # while (line = file.gets) do
14
+
15
+ # if line =~ /^===\s*#{version.gsub('.','\.')}\s*\/\s*(.+)\s*$/
16
+ # grab_changes = true
17
+ # date = $1.strip
18
+ # elsif line =~ /^===\s*.+$/
19
+ # grab_changes = false
20
+ # elsif grab_changes
21
+ # changes = changes << line
22
+ # end
23
+
24
+ # end
25
+ # end
26
+
27
+ # { :date => date, :changes => changes }
28
+ # end
29
+ # end
30
+
31
+ Gem::Specification.new do |spec|
32
+ spec.name = ::YARD::NRSER::Cucumber::NAME
33
+ spec.version = ::YARD::NRSER::Cucumber::VERSION
34
+ spec.authors = ["Neil Souza", "Franklin Webber"]
35
+ spec.description = %{
36
+ This is my fork of https://github.com/burtlo/yard-cucumber with some changes that I would
37
+ like to consider improvements.
38
+
39
+ YARD-Cucumber is a YARD extension that processes Cucumber Features, Scenarios, Steps,
40
+ Step Definitions, Transforms, and Tags and provides a documentation interface that allows you
41
+ easily view and investigate the test suite. This tools hopes to bridge the gap of being able
42
+ to provide your feature descriptions to your Product Owners and Stakeholders. }
43
+ spec.summary = "Cucumber Features in YARD"
44
+ spec.email = 'neil@neilsouza.com'
45
+ spec.homepage = "http://github.com/nrser/yard-nrser-cucumber"
46
+ spec.license = 'MIT'
47
+
48
+ spec.platform = Gem::Platform::RUBY
49
+
50
+ # changes = CucumberInTheYARD.show_version_changes(::CucumberInTheYARD::VERSION)
51
+
52
+ # s.post_install_message = %{
53
+ # (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::)
54
+
55
+ # Thank you for installing yard-cucumber #{::CucumberInTheYARD::VERSION} / #{changes[:date]}.
56
+
57
+ # Changes:
58
+ # #{changes[:changes].collect{|change| " #{change}"}.join("")}
59
+ # (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::)
60
+
61
+ # }
62
+
63
+ spec.add_development_dependency 'rake', '~> 10'
64
+
65
+ spec.add_dependency 'gherkin', '>= 4.0', '< 6.0'
66
+ spec.add_dependency 'cucumber', '>= 2.0', '< 4.0'
67
+ spec.add_dependency 'yard', '~> 0.8', '>= 0.8.1'
68
+
69
+ # Don't think we need this guy..?
70
+ # spec.rubygems_version = "1.3.7"
71
+ spec.files = `git ls-files`.split("\n")
72
+ spec.extra_rdoc_files = ["README.md", "History.txt"]
73
+ spec.rdoc_options = ["--charset=UTF-8"]
74
+ spec.require_path = "lib"
75
+ end
metadata ADDED
@@ -0,0 +1,220 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: yard-nrser-cucumber
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Neil Souza
8
+ - Franklin Webber
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2019-03-11 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rake
16
+ requirement: !ruby/object:Gem::Requirement
17
+ requirements:
18
+ - - "~>"
19
+ - !ruby/object:Gem::Version
20
+ version: '10'
21
+ type: :development
22
+ prerelease: false
23
+ version_requirements: !ruby/object:Gem::Requirement
24
+ requirements:
25
+ - - "~>"
26
+ - !ruby/object:Gem::Version
27
+ version: '10'
28
+ - !ruby/object:Gem::Dependency
29
+ name: gherkin
30
+ requirement: !ruby/object:Gem::Requirement
31
+ requirements:
32
+ - - ">="
33
+ - !ruby/object:Gem::Version
34
+ version: '4.0'
35
+ - - "<"
36
+ - !ruby/object:Gem::Version
37
+ version: '6.0'
38
+ type: :runtime
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ requirements:
42
+ - - ">="
43
+ - !ruby/object:Gem::Version
44
+ version: '4.0'
45
+ - - "<"
46
+ - !ruby/object:Gem::Version
47
+ version: '6.0'
48
+ - !ruby/object:Gem::Dependency
49
+ name: cucumber
50
+ requirement: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '2.0'
55
+ - - "<"
56
+ - !ruby/object:Gem::Version
57
+ version: '4.0'
58
+ type: :runtime
59
+ prerelease: false
60
+ version_requirements: !ruby/object:Gem::Requirement
61
+ requirements:
62
+ - - ">="
63
+ - !ruby/object:Gem::Version
64
+ version: '2.0'
65
+ - - "<"
66
+ - !ruby/object:Gem::Version
67
+ version: '4.0'
68
+ - !ruby/object:Gem::Dependency
69
+ name: yard
70
+ requirement: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - "~>"
73
+ - !ruby/object:Gem::Version
74
+ version: '0.8'
75
+ - - ">="
76
+ - !ruby/object:Gem::Version
77
+ version: 0.8.1
78
+ type: :runtime
79
+ prerelease: false
80
+ version_requirements: !ruby/object:Gem::Requirement
81
+ requirements:
82
+ - - "~>"
83
+ - !ruby/object:Gem::Version
84
+ version: '0.8'
85
+ - - ">="
86
+ - !ruby/object:Gem::Version
87
+ version: 0.8.1
88
+ description: "\n This is my fork of https://github.com/burtlo/yard-cucumber with
89
+ some changes that I would\n like to consider improvements.\n \n YARD-Cucumber
90
+ is a YARD extension that processes Cucumber Features, Scenarios, Steps,\n Step
91
+ Definitions, Transforms, and Tags and provides a documentation interface that allows
92
+ you\n easily view and investigate the test suite. This tools hopes to bridge
93
+ the gap of being able\n to provide your feature descriptions to your Product
94
+ Owners and Stakeholders. "
95
+ email: neil@neilsouza.com
96
+ executables: []
97
+ extensions: []
98
+ extra_rdoc_files:
99
+ - README.md
100
+ - History.txt
101
+ files:
102
+ - ".gitignore"
103
+ - ".rspec"
104
+ - ".yardopts"
105
+ - Gemfile
106
+ - History.txt
107
+ - LICENSE.txt
108
+ - NAME
109
+ - README.md
110
+ - Rakefile
111
+ - VERSION
112
+ - example/README.md
113
+ - example/child_feature/README.md
114
+ - example/child_feature/child.feature
115
+ - example/child_feature/grandchild_feature/grandchild.feature
116
+ - example/empty.feature
117
+ - example/french.feature
118
+ - example/scenario.feature
119
+ - example/scenario_outline.feature
120
+ - example/scenario_outline_multi.feature
121
+ - example/step_definitions/example.step.rb
122
+ - example/step_definitions/first.step.rb
123
+ - example/step_definitions/french_steps.rb
124
+ - example/step_definitions/struct.rb
125
+ - example/step_definitions/support/env.rb
126
+ - example/step_definitions/support/env_support.rb
127
+ - example/step_definitions/support/support.rb
128
+ - example/tags.feature
129
+ - example/transform.feature
130
+ - lib/cucumber/city_builder.rb
131
+ - lib/docserver/default/fulldoc/html/js/cucumber.js
132
+ - lib/docserver/default/layout/html/headers.erb
133
+ - lib/docserver/doc_server/full_list/html/full_list.erb
134
+ - lib/docserver/doc_server/full_list/html/setup.rb
135
+ - lib/templates/default/feature/html/feature.erb
136
+ - lib/templates/default/feature/html/no_steps_defined.erb
137
+ - lib/templates/default/feature/html/outline.erb
138
+ - lib/templates/default/feature/html/pystring.erb
139
+ - lib/templates/default/feature/html/scenario.erb
140
+ - lib/templates/default/feature/html/setup.rb
141
+ - lib/templates/default/feature/html/steps.erb
142
+ - lib/templates/default/feature/html/table.erb
143
+ - lib/templates/default/featuredirectory/html/alpha_table.erb
144
+ - lib/templates/default/featuredirectory/html/directory.erb
145
+ - lib/templates/default/featuredirectory/html/setup.rb
146
+ - lib/templates/default/featuretags/html/namespace.erb
147
+ - lib/templates/default/featuretags/html/setup.rb
148
+ - lib/templates/default/fulldoc/html/css/cucumber.css
149
+ - lib/templates/default/fulldoc/html/directories.erb
150
+ - lib/templates/default/fulldoc/html/full_list_featuredirectories.erb
151
+ - lib/templates/default/fulldoc/html/full_list_features.erb
152
+ - lib/templates/default/fulldoc/html/full_list_stepdefinitions.erb
153
+ - lib/templates/default/fulldoc/html/full_list_steps.erb
154
+ - lib/templates/default/fulldoc/html/full_list_tags.erb
155
+ - lib/templates/default/fulldoc/html/js/cucumber.js
156
+ - lib/templates/default/fulldoc/html/setup.rb
157
+ - lib/templates/default/layout/html/setup.rb
158
+ - lib/templates/default/requirements/html/alpha_table.erb
159
+ - lib/templates/default/requirements/html/requirements.erb
160
+ - lib/templates/default/requirements/html/setup.rb
161
+ - lib/templates/default/steptransformers/html/header.erb
162
+ - lib/templates/default/steptransformers/html/index.erb
163
+ - lib/templates/default/steptransformers/html/setup.rb
164
+ - lib/templates/default/steptransformers/html/transformers.erb
165
+ - lib/templates/default/steptransformers/html/undefinedsteps.erb
166
+ - lib/templates/default/tag/html/alpha_table.erb
167
+ - lib/templates/default/tag/html/setup.rb
168
+ - lib/templates/default/tag/html/tag.erb
169
+ - lib/yard-nrser-cucumber.rb
170
+ - lib/yard/code_objects/cucumber/base.rb
171
+ - lib/yard/code_objects/cucumber/feature.rb
172
+ - lib/yard/code_objects/cucumber/namespace_object.rb
173
+ - lib/yard/code_objects/cucumber/scenario.rb
174
+ - lib/yard/code_objects/cucumber/scenario_outline.rb
175
+ - lib/yard/code_objects/cucumber/step.rb
176
+ - lib/yard/code_objects/cucumber/tag.rb
177
+ - lib/yard/code_objects/step_definition.rb
178
+ - lib/yard/code_objects/step_transform.rb
179
+ - lib/yard/code_objects/step_transformer.rb
180
+ - lib/yard/handlers/constant_transform_handler.rb
181
+ - lib/yard/handlers/cucumber/base.rb
182
+ - lib/yard/handlers/cucumber/feature_handler.rb
183
+ - lib/yard/handlers/legacy/step_definition_handler.rb
184
+ - lib/yard/handlers/legacy/step_transform_handler.rb
185
+ - lib/yard/handlers/step_definition_handler.rb
186
+ - lib/yard/handlers/step_transform_handler.rb
187
+ - lib/yard/nrser/cucumber/version.rb
188
+ - lib/yard/parser/cucumber/feature.rb
189
+ - lib/yard/server/adapter.rb
190
+ - lib/yard/server/commands/list_command.rb
191
+ - lib/yard/server/router.rb
192
+ - lib/yard/templates/helpers/base_helper.rb
193
+ - lib/yard/templates/helpers/html_helper.rb
194
+ - yard-nrser-cucumber.gemspec
195
+ homepage: http://github.com/nrser/yard-nrser-cucumber
196
+ licenses:
197
+ - MIT
198
+ metadata: {}
199
+ post_install_message:
200
+ rdoc_options:
201
+ - "--charset=UTF-8"
202
+ require_paths:
203
+ - lib
204
+ required_ruby_version: !ruby/object:Gem::Requirement
205
+ requirements:
206
+ - - ">="
207
+ - !ruby/object:Gem::Version
208
+ version: '0'
209
+ required_rubygems_version: !ruby/object:Gem::Requirement
210
+ requirements:
211
+ - - ">="
212
+ - !ruby/object:Gem::Version
213
+ version: '0'
214
+ requirements: []
215
+ rubyforge_project:
216
+ rubygems_version: 2.5.2.3
217
+ signing_key:
218
+ specification_version: 4
219
+ summary: Cucumber Features in YARD
220
+ test_files: []