benhamill-gherkin 2.3.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (170) hide show
  1. data/.gitattributes +2 -0
  2. data/.gitignore +11 -0
  3. data/.mailmap +2 -0
  4. data/.rspec +1 -0
  5. data/.rvmrc +1 -0
  6. data/Gemfile +7 -0
  7. data/History.txt +363 -0
  8. data/LICENSE +20 -0
  9. data/README.rdoc +149 -0
  10. data/Rakefile +19 -0
  11. data/VERSION +1 -0
  12. data/build_native_gems.sh +8 -0
  13. data/cucumber.yml +3 -0
  14. data/features/escaped_pipes.feature +8 -0
  15. data/features/feature_parser.feature +237 -0
  16. data/features/json_formatter.feature +377 -0
  17. data/features/json_parser.feature +318 -0
  18. data/features/native_lexer.feature +19 -0
  19. data/features/parser_with_native_lexer.feature +205 -0
  20. data/features/pretty_formatter.feature +15 -0
  21. data/features/step_definitions/eyeball_steps.rb +3 -0
  22. data/features/step_definitions/gherkin_steps.rb +29 -0
  23. data/features/step_definitions/json_formatter_steps.rb +28 -0
  24. data/features/step_definitions/json_parser_steps.rb +20 -0
  25. data/features/step_definitions/pretty_formatter_steps.rb +84 -0
  26. data/features/steps_parser.feature +46 -0
  27. data/features/support/env.rb +38 -0
  28. data/gherkin.gemspec +61 -0
  29. data/ikvm/.gitignore +3 -0
  30. data/java/.gitignore +5 -0
  31. data/java/src/main/java/gherkin/lexer/i18n/.gitignore +1 -0
  32. data/java/src/main/resources/gherkin/.gitignore +1 -0
  33. data/js/lib/gherkin/lexer/i18n/ar.js +1094 -0
  34. data/js/lib/gherkin/lexer/i18n/bg.js +1308 -0
  35. data/js/lib/gherkin/lexer/i18n/ca.js +1236 -0
  36. data/js/lib/gherkin/lexer/i18n/cs.js +1090 -0
  37. data/js/lib/gherkin/lexer/i18n/cy_gb.js +958 -0
  38. data/js/lib/gherkin/lexer/i18n/da.js +974 -0
  39. data/js/lib/gherkin/lexer/i18n/de.js +1082 -0
  40. data/js/lib/gherkin/lexer/i18n/en.js +965 -0
  41. data/js/lib/gherkin/lexer/i18n/en_au.js +902 -0
  42. data/js/lib/gherkin/lexer/i18n/en_lol.js +859 -0
  43. data/js/lib/gherkin/lexer/i18n/en_pirate.js +1136 -0
  44. data/js/lib/gherkin/lexer/i18n/en_scouse.js +1289 -0
  45. data/js/lib/gherkin/lexer/i18n/en_tx.js +942 -0
  46. data/js/lib/gherkin/lexer/i18n/eo.js +916 -0
  47. data/js/lib/gherkin/lexer/i18n/es.js +1049 -0
  48. data/js/lib/gherkin/lexer/i18n/et.js +915 -0
  49. data/js/lib/gherkin/lexer/i18n/fi.js +894 -0
  50. data/js/lib/gherkin/lexer/i18n/fr.js +1116 -0
  51. data/js/lib/gherkin/lexer/i18n/he.js +1044 -0
  52. data/js/lib/gherkin/lexer/i18n/hr.js +994 -0
  53. data/js/lib/gherkin/lexer/i18n/hu.js +1043 -0
  54. data/js/lib/gherkin/lexer/i18n/id.js +884 -0
  55. data/js/lib/gherkin/lexer/i18n/it.js +1007 -0
  56. data/js/lib/gherkin/lexer/i18n/ja.js +1344 -0
  57. data/js/lib/gherkin/lexer/i18n/ko.js +1028 -0
  58. data/js/lib/gherkin/lexer/i18n/lt.js +972 -0
  59. data/js/lib/gherkin/lexer/i18n/lu.js +1057 -0
  60. data/js/lib/gherkin/lexer/i18n/lv.js +1092 -0
  61. data/js/lib/gherkin/lexer/i18n/nl.js +1036 -0
  62. data/js/lib/gherkin/lexer/i18n/no.js +986 -0
  63. data/js/lib/gherkin/lexer/i18n/pl.js +1140 -0
  64. data/js/lib/gherkin/lexer/i18n/pt.js +1000 -0
  65. data/js/lib/gherkin/lexer/i18n/ro.js +1089 -0
  66. data/js/lib/gherkin/lexer/i18n/ru.js +1560 -0
  67. data/js/lib/gherkin/lexer/i18n/sk.js +972 -0
  68. data/js/lib/gherkin/lexer/i18n/sr_cyrl.js +1728 -0
  69. data/js/lib/gherkin/lexer/i18n/sr_latn.js +1220 -0
  70. data/js/lib/gherkin/lexer/i18n/sv.js +997 -0
  71. data/js/lib/gherkin/lexer/i18n/tr.js +1014 -0
  72. data/js/lib/gherkin/lexer/i18n/uk.js +1572 -0
  73. data/js/lib/gherkin/lexer/i18n/uz.js +1302 -0
  74. data/js/lib/gherkin/lexer/i18n/vi.js +1124 -0
  75. data/js/lib/gherkin/lexer/i18n/zh_cn.js +902 -0
  76. data/js/lib/gherkin/lexer/i18n/zh_tw.js +940 -0
  77. data/lib/.gitignore +4 -0
  78. data/lib/gherkin.rb +2 -0
  79. data/lib/gherkin/c_lexer.rb +17 -0
  80. data/lib/gherkin/formatter/ansi_escapes.rb +95 -0
  81. data/lib/gherkin/formatter/argument.rb +16 -0
  82. data/lib/gherkin/formatter/escaping.rb +15 -0
  83. data/lib/gherkin/formatter/filter_formatter.rb +136 -0
  84. data/lib/gherkin/formatter/hashable.rb +19 -0
  85. data/lib/gherkin/formatter/json_formatter.rb +102 -0
  86. data/lib/gherkin/formatter/line_filter.rb +26 -0
  87. data/lib/gherkin/formatter/model.rb +236 -0
  88. data/lib/gherkin/formatter/pretty_formatter.rb +243 -0
  89. data/lib/gherkin/formatter/regexp_filter.rb +21 -0
  90. data/lib/gherkin/formatter/step_printer.rb +17 -0
  91. data/lib/gherkin/formatter/tag_count_formatter.rb +47 -0
  92. data/lib/gherkin/formatter/tag_filter.rb +19 -0
  93. data/lib/gherkin/i18n.rb +175 -0
  94. data/lib/gherkin/i18n.yml +588 -0
  95. data/lib/gherkin/json_parser.rb +137 -0
  96. data/lib/gherkin/lexer/i18n_lexer.rb +47 -0
  97. data/lib/gherkin/listener/event.rb +45 -0
  98. data/lib/gherkin/listener/formatter_listener.rb +113 -0
  99. data/lib/gherkin/native.rb +7 -0
  100. data/lib/gherkin/native/ikvm.rb +55 -0
  101. data/lib/gherkin/native/java.rb +55 -0
  102. data/lib/gherkin/native/null.rb +9 -0
  103. data/lib/gherkin/parser/meta.txt +5 -0
  104. data/lib/gherkin/parser/parser.rb +164 -0
  105. data/lib/gherkin/parser/root.txt +11 -0
  106. data/lib/gherkin/parser/steps.txt +4 -0
  107. data/lib/gherkin/rb_lexer.rb +8 -0
  108. data/lib/gherkin/rb_lexer/.gitignore +1 -0
  109. data/lib/gherkin/rb_lexer/README.rdoc +8 -0
  110. data/lib/gherkin/rubify.rb +24 -0
  111. data/lib/gherkin/tag_expression.rb +62 -0
  112. data/lib/gherkin/version.rb +3 -0
  113. data/ragel/i18n/.gitignore +1 -0
  114. data/ragel/lexer.c.rl.erb +439 -0
  115. data/ragel/lexer.java.rl.erb +208 -0
  116. data/ragel/lexer.rb.rl.erb +167 -0
  117. data/ragel/lexer_common.rl.erb +50 -0
  118. data/spec/gherkin/c_lexer_spec.rb +21 -0
  119. data/spec/gherkin/fixtures/1.feature +8 -0
  120. data/spec/gherkin/fixtures/comments_in_table.feature +9 -0
  121. data/spec/gherkin/fixtures/complex.feature +45 -0
  122. data/spec/gherkin/fixtures/complex.json +143 -0
  123. data/spec/gherkin/fixtures/complex_for_filtering.feature +60 -0
  124. data/spec/gherkin/fixtures/complex_with_tags.feature +61 -0
  125. data/spec/gherkin/fixtures/dos_line_endings.feature +45 -0
  126. data/spec/gherkin/fixtures/hantu_pisang.feature +35 -0
  127. data/spec/gherkin/fixtures/i18n_fr.feature +14 -0
  128. data/spec/gherkin/fixtures/i18n_no.feature +7 -0
  129. data/spec/gherkin/fixtures/i18n_zh-CN.feature +9 -0
  130. data/spec/gherkin/fixtures/scenario_outline_with_tags.feature +13 -0
  131. data/spec/gherkin/fixtures/scenario_without_steps.feature +5 -0
  132. data/spec/gherkin/fixtures/simple_with_comments.feature +7 -0
  133. data/spec/gherkin/fixtures/simple_with_tags.feature +11 -0
  134. data/spec/gherkin/fixtures/with_bom.feature +3 -0
  135. data/spec/gherkin/formatter/ansi_escapes_spec.rb +19 -0
  136. data/spec/gherkin/formatter/filter_formatter_spec.rb +165 -0
  137. data/spec/gherkin/formatter/model_spec.rb +28 -0
  138. data/spec/gherkin/formatter/pretty_formatter_spec.rb +158 -0
  139. data/spec/gherkin/formatter/spaces.feature +9 -0
  140. data/spec/gherkin/formatter/step_printer_spec.rb +55 -0
  141. data/spec/gherkin/formatter/tabs.feature +9 -0
  142. data/spec/gherkin/formatter/tag_count_formatter_spec.rb +30 -0
  143. data/spec/gherkin/i18n_spec.rb +152 -0
  144. data/spec/gherkin/java_lexer_spec.rb +20 -0
  145. data/spec/gherkin/java_libs.rb +20 -0
  146. data/spec/gherkin/json_parser_spec.rb +113 -0
  147. data/spec/gherkin/lexer/i18n_lexer_spec.rb +43 -0
  148. data/spec/gherkin/output_stream_string_io.rb +20 -0
  149. data/spec/gherkin/parser/parser_spec.rb +16 -0
  150. data/spec/gherkin/rb_lexer_spec.rb +19 -0
  151. data/spec/gherkin/sexp_recorder.rb +56 -0
  152. data/spec/gherkin/shared/lexer_group.rb +593 -0
  153. data/spec/gherkin/shared/py_string_group.rb +153 -0
  154. data/spec/gherkin/shared/row_group.rb +125 -0
  155. data/spec/gherkin/shared/tags_group.rb +54 -0
  156. data/spec/gherkin/tag_expression_spec.rb +137 -0
  157. data/spec/spec_helper.rb +69 -0
  158. data/tasks/bench.rake +184 -0
  159. data/tasks/bench/feature_builder.rb +49 -0
  160. data/tasks/bench/generated/.gitignore +1 -0
  161. data/tasks/bench/null_listener.rb +4 -0
  162. data/tasks/compile.rake +102 -0
  163. data/tasks/cucumber.rake +20 -0
  164. data/tasks/gems.rake +35 -0
  165. data/tasks/ikvm.rake +79 -0
  166. data/tasks/ragel_task.rb +70 -0
  167. data/tasks/rdoc.rake +9 -0
  168. data/tasks/release.rake +30 -0
  169. data/tasks/rspec.rake +8 -0
  170. metadata +609 -0
data/tasks/ikvm.rake ADDED
@@ -0,0 +1,79 @@
1
+ require File.dirname(__FILE__) + '/../spec/gherkin/java_libs'
2
+ # To test out the pure Java main program on .NET, execute:
3
+ #
4
+ # rake ikvm
5
+ #
6
+ # Just print dots:
7
+ #
8
+ # [mono] pkg/gherkin.exe features
9
+ #
10
+ # Pretty print all to STDOUT:
11
+ #
12
+ # [mono] pkg/gherkin.exe features pretty
13
+ #
14
+ # To test out the pure C# main program on .NET, execute:
15
+ #
16
+ # rake ikvm (you need this to generate all the .dll files needed for the next step)
17
+ #
18
+ # Then build ikvm/Gherkin.sln. Then:
19
+ #
20
+ # [mono] mono ikvm/Gherkin/bin/Debug/Gherkin.exe features/steps_parser.feature
21
+ #
22
+ namespace :ikvm do
23
+ def mono(args)
24
+ if(`which mono`.strip =~ /mono/)
25
+ sh("mono #{args}")
26
+ else
27
+ raise "[ERROR] You must install Mono and IKVM build gherkin for .NET. See README.rdoc"
28
+ end
29
+ end
30
+
31
+ def ikvmc(args)
32
+ begin
33
+ mono("/usr/local/ikvm/bin/ikvmc.exe #{args}")
34
+ rescue => e
35
+ if e.message =~ /Cannot open assembly/
36
+ e.message << "\n\n[ERROR] You must install Mono and IKVM build gherkin for .NET. See README.rdoc"
37
+ end
38
+ raise e
39
+ end
40
+ end
41
+
42
+ def references
43
+ JAVA_LIBS.keys.map{|name| "-reference:release/#{name}.dll"}.join(' ')
44
+ end
45
+
46
+ task :dependent_dlls do
47
+ mkdir_p 'release' unless File.directory?('release')
48
+ JAVA_LIBS.each do |name, jar|
49
+ ikvmc("-target:library #{jar} -out:release/#{name}.dll")
50
+ end
51
+ end
52
+
53
+ desc 'Make a .NET .exe'
54
+ task :exe => ['lib/gherkin.jar', :dependent_dlls] do
55
+ ikvmc("-target:exe lib/gherkin.jar -out:release/gherkin-#{Gherkin::VERSION}.exe #{references}")
56
+ end
57
+
58
+ desc 'Make a .NET .dll'
59
+ task :dll => ['lib/gherkin.jar', :dependent_dlls] do
60
+ mkdir_p 'release' unless File.directory?('release')
61
+ ikvmc("-target:library lib/gherkin.jar -out:release/gherkin-#{Gherkin::VERSION}.dll #{references}")
62
+ cp "release/gherkin-#{Gherkin::VERSION}.dll", 'lib/gherkin.dll'
63
+ end
64
+
65
+ desc 'Copy the IKVM .dll files over to the pkg dir'
66
+ task :copy_ikvm_dlls do
67
+ Dir['/usr/local/ikvm/bin/{IKVM.OpenJDK.Core,IKVM.OpenJDK.Text,IKVM.OpenJDK.Security,IKVM.Runtime}.dll'].each do |dll|
68
+ cp dll, 'release'
69
+ cp dll, 'lib'
70
+ end
71
+ end
72
+ end
73
+
74
+ task :ikvm => ['ikvm:copy_ikvm_dlls', 'ikvm:exe', 'ikvm:dll'] do
75
+ puts "************** Pretty printing some features with .NET. **************"
76
+ mono "release/gherkin-#{Gherkin::VERSION}.exe features"
77
+ puts "************** DONE Pretty printing some features with .NET. All OK. **************"
78
+ end
79
+
@@ -0,0 +1,70 @@
1
+ require 'yaml'
2
+ require 'erb'
3
+
4
+ class RagelTask
5
+ RL_OUTPUT_DIR = File.dirname(__FILE__) + "/../ragel/i18n"
6
+
7
+ def initialize(lang, i18n)
8
+ @lang = lang
9
+ @i18n = i18n
10
+ define_tasks
11
+ end
12
+
13
+ def define_tasks
14
+ file target => [lang_ragel, common_ragel] do
15
+ mkdir_p(File.dirname(target)) unless File.directory?(File.dirname(target))
16
+ sh "ragel #{flags} #{lang_ragel} -o #{target}"
17
+ end
18
+
19
+ file lang_ragel => lang_erb do
20
+ write(ERB.new(IO.read(lang_erb)).result(binding), lang_ragel)
21
+ end
22
+
23
+ file common_ragel => common_erb do
24
+ write(ERB.new(IO.read(common_erb)).result(binding), common_ragel)
25
+ end
26
+ end
27
+
28
+ def target
29
+ {
30
+ 'c' => "ext/gherkin_lexer_#{@i18n.underscored_iso_code}/gherkin_lexer_#{@i18n.underscored_iso_code}.c",
31
+ 'java' => "java/src/main/java/gherkin/lexer/i18n/#{@i18n.underscored_iso_code.upcase}.java",
32
+ 'rb' => "lib/gherkin/rb_lexer/#{@i18n.underscored_iso_code}.rb"
33
+ }[@lang]
34
+ end
35
+
36
+ def common_ragel
37
+ RL_OUTPUT_DIR + "/lexer_common.#{@i18n.underscored_iso_code}.rl"
38
+ end
39
+
40
+ def common_erb
41
+ File.dirname(__FILE__) + '/../ragel/lexer_common.rl.erb'
42
+ end
43
+
44
+ def lang_ragel
45
+ RL_OUTPUT_DIR + "/#{@i18n.underscored_iso_code}.#{@lang}.rl"
46
+ end
47
+
48
+ def lang_erb
49
+ File.dirname(__FILE__) + "/../ragel/lexer.#{@lang}.rl.erb"
50
+ end
51
+
52
+ def flags
53
+ {
54
+ 'c' => '-C',
55
+ 'java' => '-J',
56
+ 'rb' => '-R'
57
+ }[@lang]
58
+ end
59
+
60
+ def write(content, filename)
61
+ mkdir_p(File.dirname(filename)) unless File.directory?(File.dirname(filename))
62
+ File.open(filename, "wb") do |file|
63
+ file.write(content)
64
+ end
65
+ end
66
+
67
+ def ragel_list(keywords)
68
+ "(#{keywords.map{|keyword| %{"#{keyword}"}}.join(' | ')})"
69
+ end
70
+ end
data/tasks/rdoc.rake ADDED
@@ -0,0 +1,9 @@
1
+ require 'rake/rdoctask'
2
+
3
+ Rake::RDocTask.new do |rdoc|
4
+ rdoc.rdoc_dir = 'rdoc'
5
+ rdoc.title = "Gherkin #{Gherkin::VERSION}"
6
+ rdoc.rdoc_files.include('README.rdoc')
7
+ rdoc.rdoc_files.include('lib/**/*.rb')
8
+ rdoc.rdoc_files.exclude('lib/gherkin/lexer')
9
+ end
@@ -0,0 +1,30 @@
1
+ namespace :release do
2
+ desc 'Upload all packages and tag git'
3
+ task :ALL => ['gems:sanity', :push_dll, :push_jar, :push_native_gems, :release]
4
+
5
+ desc 'Push all gems to rubygems.org (gemcutter)'
6
+ task :push_native_gems do
7
+ Dir.chdir('release') do
8
+ Dir['*.gem'].each do |gem_file|
9
+ sh("gem push #{gem_file}")
10
+ end
11
+ end
12
+ end
13
+
14
+ desc 'Push dll to Github'
15
+ task :push_dll => :ikvm do
16
+ Dir.chdir('release') do
17
+ # No known way to do scripted uploads. github/upload or aslakhellesoy's fork of github-gem no longer work
18
+ puts "Manually upload gherkin-#{Gherkin::VERSION}.dll to http://github.com/aslakhellesoy/gherkin/downloads"
19
+ puts "Then press enter"
20
+ STDIN.gets
21
+ end
22
+ end
23
+
24
+ desc 'Push jar to cukes.info Maven repo'
25
+ task :push_jar do
26
+ Dir.chdir('java') do
27
+ sh("mvn -Dmaven.wagon.provider.http=httpclient deploy")
28
+ end
29
+ end
30
+ end
data/tasks/rspec.rake ADDED
@@ -0,0 +1,8 @@
1
+ require 'rspec/core/rake_task'
2
+
3
+ RSpec::Core::RakeTask.new(:spec)
4
+
5
+ RSpec::Core::RakeTask.new(:rcov) do |t|
6
+ t.rcov = true
7
+ t.rcov_opts = %w{--exclude osx\/objc,gems\/,spec\/}
8
+ end
metadata ADDED
@@ -0,0 +1,609 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: benhamill-gherkin
3
+ version: !ruby/object:Gem::Version
4
+ hash: 9
5
+ prerelease:
6
+ segments:
7
+ - 2
8
+ - 3
9
+ - 5
10
+ version: 2.3.5
11
+ platform: ruby
12
+ authors:
13
+ - Mike Sassak
14
+ - Gregory Hnatiuk
15
+ - "Aslak Helles\xC3\xB8y"
16
+ autorequire:
17
+ bindir: bin
18
+ cert_chain: []
19
+
20
+ date: 2011-04-16 00:00:00 -05:00
21
+ default_executable: gherkin
22
+ dependencies:
23
+ - !ruby/object:Gem::Dependency
24
+ name: rake-compiler
25
+ prerelease: false
26
+ requirement: &id001 !ruby/object:Gem::Requirement
27
+ none: false
28
+ requirements:
29
+ - - ~>
30
+ - !ruby/object:Gem::Version
31
+ hash: 9
32
+ segments:
33
+ - 0
34
+ - 7
35
+ - 5
36
+ version: 0.7.5
37
+ type: :development
38
+ version_requirements: *id001
39
+ - !ruby/object:Gem::Dependency
40
+ name: json
41
+ prerelease: false
42
+ requirement: &id002 !ruby/object:Gem::Requirement
43
+ none: false
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ hash: 11
48
+ segments:
49
+ - 1
50
+ - 4
51
+ - 6
52
+ version: 1.4.6
53
+ type: :runtime
54
+ version_requirements: *id002
55
+ - !ruby/object:Gem::Dependency
56
+ name: cucumber
57
+ prerelease: false
58
+ requirement: &id003 !ruby/object:Gem::Requirement
59
+ none: false
60
+ requirements:
61
+ - - ">="
62
+ - !ruby/object:Gem::Version
63
+ hash: 55
64
+ segments:
65
+ - 0
66
+ - 10
67
+ - 0
68
+ version: 0.10.0
69
+ type: :development
70
+ version_requirements: *id003
71
+ - !ruby/object:Gem::Dependency
72
+ name: rake
73
+ prerelease: false
74
+ requirement: &id004 !ruby/object:Gem::Requirement
75
+ none: false
76
+ requirements:
77
+ - - ">="
78
+ - !ruby/object:Gem::Version
79
+ hash: 49
80
+ segments:
81
+ - 0
82
+ - 8
83
+ - 7
84
+ version: 0.8.7
85
+ type: :development
86
+ version_requirements: *id004
87
+ - !ruby/object:Gem::Dependency
88
+ name: bundler
89
+ prerelease: false
90
+ requirement: &id005 !ruby/object:Gem::Requirement
91
+ none: false
92
+ requirements:
93
+ - - ">="
94
+ - !ruby/object:Gem::Version
95
+ hash: 3
96
+ segments:
97
+ - 1
98
+ - 0
99
+ - 10
100
+ version: 1.0.10
101
+ type: :development
102
+ version_requirements: *id005
103
+ - !ruby/object:Gem::Dependency
104
+ name: rspec
105
+ prerelease: false
106
+ requirement: &id006 !ruby/object:Gem::Requirement
107
+ none: false
108
+ requirements:
109
+ - - ">="
110
+ - !ruby/object:Gem::Version
111
+ hash: 27
112
+ segments:
113
+ - 2
114
+ - 5
115
+ - 0
116
+ version: 2.5.0
117
+ type: :development
118
+ version_requirements: *id006
119
+ - !ruby/object:Gem::Dependency
120
+ name: awesome_print
121
+ prerelease: false
122
+ requirement: &id007 !ruby/object:Gem::Requirement
123
+ none: false
124
+ requirements:
125
+ - - ">="
126
+ - !ruby/object:Gem::Version
127
+ hash: 13
128
+ segments:
129
+ - 0
130
+ - 3
131
+ version: "0.3"
132
+ type: :development
133
+ version_requirements: *id007
134
+ - !ruby/object:Gem::Dependency
135
+ name: term-ansicolor
136
+ prerelease: false
137
+ requirement: &id008 !ruby/object:Gem::Requirement
138
+ none: false
139
+ requirements:
140
+ - - ">="
141
+ - !ruby/object:Gem::Version
142
+ hash: 29
143
+ segments:
144
+ - 1
145
+ - 0
146
+ - 5
147
+ version: 1.0.5
148
+ type: :development
149
+ version_requirements: *id008
150
+ - !ruby/object:Gem::Dependency
151
+ name: builder
152
+ prerelease: false
153
+ requirement: &id009 !ruby/object:Gem::Requirement
154
+ none: false
155
+ requirements:
156
+ - - ">="
157
+ - !ruby/object:Gem::Version
158
+ hash: 7
159
+ segments:
160
+ - 3
161
+ - 0
162
+ - 0
163
+ version: 3.0.0
164
+ type: :development
165
+ version_requirements: *id009
166
+ description: A fast Gherkin lexer/parser based on the Ragel State Machine Compiler.
167
+ email: cukes@googlegroups.com
168
+ executables: []
169
+
170
+ extensions:
171
+ - ext/gherkin_lexer_et/extconf.rb
172
+ - ext/gherkin_lexer_sv/extconf.rb
173
+ - ext/gherkin_lexer_ar/extconf.rb
174
+ - ext/gherkin_lexer_fr/extconf.rb
175
+ - ext/gherkin_lexer_cs/extconf.rb
176
+ - ext/gherkin_lexer_en_lol/extconf.rb
177
+ - ext/gherkin_lexer_eo/extconf.rb
178
+ - ext/gherkin_lexer_zh_tw/extconf.rb
179
+ - ext/gherkin_lexer_pt/extconf.rb
180
+ - ext/gherkin_lexer_bg/extconf.rb
181
+ - ext/gherkin_lexer_en/extconf.rb
182
+ - ext/gherkin_lexer_en_tx/extconf.rb
183
+ - ext/gherkin_lexer_hu/extconf.rb
184
+ - ext/gherkin_lexer_sr_latn/extconf.rb
185
+ - ext/gherkin_lexer_it/extconf.rb
186
+ - ext/gherkin_lexer_da/extconf.rb
187
+ - ext/gherkin_lexer_sr_cyrl/extconf.rb
188
+ - ext/gherkin_lexer_zh_cn/extconf.rb
189
+ - ext/gherkin_lexer_lu/extconf.rb
190
+ - ext/gherkin_lexer_en_au/extconf.rb
191
+ - ext/gherkin_lexer_pl/extconf.rb
192
+ - ext/gherkin_lexer_ca/extconf.rb
193
+ - ext/gherkin_lexer_cy_gb/extconf.rb
194
+ - ext/gherkin_lexer_uk/extconf.rb
195
+ - ext/gherkin_lexer_ro/extconf.rb
196
+ - ext/gherkin_lexer_uz/extconf.rb
197
+ - ext/gherkin_lexer_he/extconf.rb
198
+ - ext/gherkin_lexer_id/extconf.rb
199
+ - ext/gherkin_lexer_lt/extconf.rb
200
+ - ext/gherkin_lexer_en_pirate/extconf.rb
201
+ - ext/gherkin_lexer_ja/extconf.rb
202
+ - ext/gherkin_lexer_fi/extconf.rb
203
+ - ext/gherkin_lexer_vi/extconf.rb
204
+ - ext/gherkin_lexer_tr/extconf.rb
205
+ - ext/gherkin_lexer_no/extconf.rb
206
+ - ext/gherkin_lexer_ko/extconf.rb
207
+ - ext/gherkin_lexer_hr/extconf.rb
208
+ - ext/gherkin_lexer_ru/extconf.rb
209
+ - ext/gherkin_lexer_lv/extconf.rb
210
+ - ext/gherkin_lexer_de/extconf.rb
211
+ - ext/gherkin_lexer_es/extconf.rb
212
+ - ext/gherkin_lexer_nl/extconf.rb
213
+ - ext/gherkin_lexer_sk/extconf.rb
214
+ - ext/gherkin_lexer_en_scouse/extconf.rb
215
+ extra_rdoc_files:
216
+ - LICENSE
217
+ - README.rdoc
218
+ - History.txt
219
+ files:
220
+ - .gitattributes
221
+ - .gitignore
222
+ - .mailmap
223
+ - .rspec
224
+ - .rvmrc
225
+ - Gemfile
226
+ - History.txt
227
+ - LICENSE
228
+ - README.rdoc
229
+ - Rakefile
230
+ - VERSION
231
+ - build_native_gems.sh
232
+ - cucumber.yml
233
+ - features/escaped_pipes.feature
234
+ - features/feature_parser.feature
235
+ - features/json_formatter.feature
236
+ - features/json_parser.feature
237
+ - features/native_lexer.feature
238
+ - features/parser_with_native_lexer.feature
239
+ - features/pretty_formatter.feature
240
+ - features/step_definitions/eyeball_steps.rb
241
+ - features/step_definitions/gherkin_steps.rb
242
+ - features/step_definitions/json_formatter_steps.rb
243
+ - features/step_definitions/json_parser_steps.rb
244
+ - features/step_definitions/pretty_formatter_steps.rb
245
+ - features/steps_parser.feature
246
+ - features/support/env.rb
247
+ - gherkin.gemspec
248
+ - ikvm/.gitignore
249
+ - java/.gitignore
250
+ - java/src/main/java/gherkin/lexer/i18n/.gitignore
251
+ - java/src/main/resources/gherkin/.gitignore
252
+ - js/lib/gherkin/lexer/i18n/ar.js
253
+ - js/lib/gherkin/lexer/i18n/bg.js
254
+ - js/lib/gherkin/lexer/i18n/ca.js
255
+ - js/lib/gherkin/lexer/i18n/cs.js
256
+ - js/lib/gherkin/lexer/i18n/cy_gb.js
257
+ - js/lib/gherkin/lexer/i18n/da.js
258
+ - js/lib/gherkin/lexer/i18n/de.js
259
+ - js/lib/gherkin/lexer/i18n/en.js
260
+ - js/lib/gherkin/lexer/i18n/en_au.js
261
+ - js/lib/gherkin/lexer/i18n/en_lol.js
262
+ - js/lib/gherkin/lexer/i18n/en_pirate.js
263
+ - js/lib/gherkin/lexer/i18n/en_scouse.js
264
+ - js/lib/gherkin/lexer/i18n/en_tx.js
265
+ - js/lib/gherkin/lexer/i18n/eo.js
266
+ - js/lib/gherkin/lexer/i18n/es.js
267
+ - js/lib/gherkin/lexer/i18n/et.js
268
+ - js/lib/gherkin/lexer/i18n/fi.js
269
+ - js/lib/gherkin/lexer/i18n/fr.js
270
+ - js/lib/gherkin/lexer/i18n/he.js
271
+ - js/lib/gherkin/lexer/i18n/hr.js
272
+ - js/lib/gherkin/lexer/i18n/hu.js
273
+ - js/lib/gherkin/lexer/i18n/id.js
274
+ - js/lib/gherkin/lexer/i18n/it.js
275
+ - js/lib/gherkin/lexer/i18n/ja.js
276
+ - js/lib/gherkin/lexer/i18n/ko.js
277
+ - js/lib/gherkin/lexer/i18n/lt.js
278
+ - js/lib/gherkin/lexer/i18n/lu.js
279
+ - js/lib/gherkin/lexer/i18n/lv.js
280
+ - js/lib/gherkin/lexer/i18n/nl.js
281
+ - js/lib/gherkin/lexer/i18n/no.js
282
+ - js/lib/gherkin/lexer/i18n/pl.js
283
+ - js/lib/gherkin/lexer/i18n/pt.js
284
+ - js/lib/gherkin/lexer/i18n/ro.js
285
+ - js/lib/gherkin/lexer/i18n/ru.js
286
+ - js/lib/gherkin/lexer/i18n/sk.js
287
+ - js/lib/gherkin/lexer/i18n/sr_cyrl.js
288
+ - js/lib/gherkin/lexer/i18n/sr_latn.js
289
+ - js/lib/gherkin/lexer/i18n/sv.js
290
+ - js/lib/gherkin/lexer/i18n/tr.js
291
+ - js/lib/gherkin/lexer/i18n/uk.js
292
+ - js/lib/gherkin/lexer/i18n/uz.js
293
+ - js/lib/gherkin/lexer/i18n/vi.js
294
+ - js/lib/gherkin/lexer/i18n/zh_cn.js
295
+ - js/lib/gherkin/lexer/i18n/zh_tw.js
296
+ - lib/.gitignore
297
+ - lib/gherkin.rb
298
+ - lib/gherkin/c_lexer.rb
299
+ - lib/gherkin/formatter/ansi_escapes.rb
300
+ - lib/gherkin/formatter/argument.rb
301
+ - lib/gherkin/formatter/escaping.rb
302
+ - lib/gherkin/formatter/filter_formatter.rb
303
+ - lib/gherkin/formatter/hashable.rb
304
+ - lib/gherkin/formatter/json_formatter.rb
305
+ - lib/gherkin/formatter/line_filter.rb
306
+ - lib/gherkin/formatter/model.rb
307
+ - lib/gherkin/formatter/pretty_formatter.rb
308
+ - lib/gherkin/formatter/regexp_filter.rb
309
+ - lib/gherkin/formatter/step_printer.rb
310
+ - lib/gherkin/formatter/tag_count_formatter.rb
311
+ - lib/gherkin/formatter/tag_filter.rb
312
+ - lib/gherkin/i18n.rb
313
+ - lib/gherkin/i18n.yml
314
+ - lib/gherkin/json_parser.rb
315
+ - lib/gherkin/lexer/i18n_lexer.rb
316
+ - lib/gherkin/listener/event.rb
317
+ - lib/gherkin/listener/formatter_listener.rb
318
+ - lib/gherkin/native.rb
319
+ - lib/gherkin/native/ikvm.rb
320
+ - lib/gherkin/native/java.rb
321
+ - lib/gherkin/native/null.rb
322
+ - lib/gherkin/parser/meta.txt
323
+ - lib/gherkin/parser/parser.rb
324
+ - lib/gherkin/parser/root.txt
325
+ - lib/gherkin/parser/steps.txt
326
+ - lib/gherkin/rb_lexer.rb
327
+ - lib/gherkin/rb_lexer/.gitignore
328
+ - lib/gherkin/rb_lexer/README.rdoc
329
+ - lib/gherkin/rubify.rb
330
+ - lib/gherkin/tag_expression.rb
331
+ - lib/gherkin/version.rb
332
+ - ragel/i18n/.gitignore
333
+ - ragel/lexer.c.rl.erb
334
+ - ragel/lexer.java.rl.erb
335
+ - ragel/lexer.rb.rl.erb
336
+ - ragel/lexer_common.rl.erb
337
+ - spec/gherkin/c_lexer_spec.rb
338
+ - spec/gherkin/fixtures/1.feature
339
+ - spec/gherkin/fixtures/comments_in_table.feature
340
+ - spec/gherkin/fixtures/complex.feature
341
+ - spec/gherkin/fixtures/complex.json
342
+ - spec/gherkin/fixtures/complex_for_filtering.feature
343
+ - spec/gherkin/fixtures/complex_with_tags.feature
344
+ - spec/gherkin/fixtures/dos_line_endings.feature
345
+ - spec/gherkin/fixtures/hantu_pisang.feature
346
+ - spec/gherkin/fixtures/i18n_fr.feature
347
+ - spec/gherkin/fixtures/i18n_no.feature
348
+ - spec/gherkin/fixtures/i18n_zh-CN.feature
349
+ - spec/gherkin/fixtures/scenario_outline_with_tags.feature
350
+ - spec/gherkin/fixtures/scenario_without_steps.feature
351
+ - spec/gherkin/fixtures/simple_with_comments.feature
352
+ - spec/gherkin/fixtures/simple_with_tags.feature
353
+ - spec/gherkin/fixtures/with_bom.feature
354
+ - spec/gherkin/formatter/ansi_escapes_spec.rb
355
+ - spec/gherkin/formatter/filter_formatter_spec.rb
356
+ - spec/gherkin/formatter/model_spec.rb
357
+ - spec/gherkin/formatter/pretty_formatter_spec.rb
358
+ - spec/gherkin/formatter/spaces.feature
359
+ - spec/gherkin/formatter/step_printer_spec.rb
360
+ - spec/gherkin/formatter/tabs.feature
361
+ - spec/gherkin/formatter/tag_count_formatter_spec.rb
362
+ - spec/gherkin/i18n_spec.rb
363
+ - spec/gherkin/java_lexer_spec.rb
364
+ - spec/gherkin/java_libs.rb
365
+ - spec/gherkin/json_parser_spec.rb
366
+ - spec/gherkin/lexer/i18n_lexer_spec.rb
367
+ - spec/gherkin/output_stream_string_io.rb
368
+ - spec/gherkin/parser/parser_spec.rb
369
+ - spec/gherkin/rb_lexer_spec.rb
370
+ - spec/gherkin/sexp_recorder.rb
371
+ - spec/gherkin/shared/lexer_group.rb
372
+ - spec/gherkin/shared/py_string_group.rb
373
+ - spec/gherkin/shared/row_group.rb
374
+ - spec/gherkin/shared/tags_group.rb
375
+ - spec/gherkin/tag_expression_spec.rb
376
+ - spec/spec_helper.rb
377
+ - tasks/bench.rake
378
+ - tasks/bench/feature_builder.rb
379
+ - tasks/bench/generated/.gitignore
380
+ - tasks/bench/null_listener.rb
381
+ - tasks/compile.rake
382
+ - tasks/cucumber.rake
383
+ - tasks/gems.rake
384
+ - tasks/ikvm.rake
385
+ - tasks/ragel_task.rb
386
+ - tasks/rdoc.rake
387
+ - tasks/release.rake
388
+ - tasks/rspec.rake
389
+ - lib/gherkin/rb_lexer/en.rb
390
+ - lib/gherkin/rb_lexer/zh_tw.rb
391
+ - lib/gherkin/rb_lexer/lt.rb
392
+ - lib/gherkin/rb_lexer/lu.rb
393
+ - lib/gherkin/rb_lexer/sr_latn.rb
394
+ - lib/gherkin/rb_lexer/fi.rb
395
+ - lib/gherkin/rb_lexer/en_pirate.rb
396
+ - lib/gherkin/rb_lexer/lv.rb
397
+ - lib/gherkin/rb_lexer/en_lol.rb
398
+ - lib/gherkin/rb_lexer/cy_gb.rb
399
+ - lib/gherkin/rb_lexer/hr.rb
400
+ - lib/gherkin/rb_lexer/he.rb
401
+ - lib/gherkin/rb_lexer/en_tx.rb
402
+ - lib/gherkin/rb_lexer/tr.rb
403
+ - lib/gherkin/rb_lexer/hu.rb
404
+ - lib/gherkin/rb_lexer/no.rb
405
+ - lib/gherkin/rb_lexer/ca.rb
406
+ - lib/gherkin/rb_lexer/sk.rb
407
+ - lib/gherkin/rb_lexer/sr_cyrl.rb
408
+ - lib/gherkin/rb_lexer/zh_cn.rb
409
+ - lib/gherkin/rb_lexer/bg.rb
410
+ - lib/gherkin/rb_lexer/nl.rb
411
+ - lib/gherkin/rb_lexer/es.rb
412
+ - lib/gherkin/rb_lexer/da.rb
413
+ - lib/gherkin/rb_lexer/pl.rb
414
+ - lib/gherkin/rb_lexer/pt.rb
415
+ - lib/gherkin/rb_lexer/ro.rb
416
+ - lib/gherkin/rb_lexer/ko.rb
417
+ - lib/gherkin/rb_lexer/de.rb
418
+ - lib/gherkin/rb_lexer/it.rb
419
+ - lib/gherkin/rb_lexer/ru.rb
420
+ - lib/gherkin/rb_lexer/uk.rb
421
+ - lib/gherkin/rb_lexer/et.rb
422
+ - lib/gherkin/rb_lexer/ja.rb
423
+ - lib/gherkin/rb_lexer/fr.rb
424
+ - lib/gherkin/rb_lexer/ar.rb
425
+ - lib/gherkin/rb_lexer/uz.rb
426
+ - lib/gherkin/rb_lexer/en_scouse.rb
427
+ - lib/gherkin/rb_lexer/en_au.rb
428
+ - lib/gherkin/rb_lexer/vi.rb
429
+ - lib/gherkin/rb_lexer/eo.rb
430
+ - lib/gherkin/rb_lexer/id.rb
431
+ - lib/gherkin/rb_lexer/cs.rb
432
+ - lib/gherkin/rb_lexer/sv.rb
433
+ - ext/gherkin_lexer_et/gherkin_lexer_et.c
434
+ - ext/gherkin_lexer_sv/gherkin_lexer_sv.c
435
+ - ext/gherkin_lexer_ar/gherkin_lexer_ar.c
436
+ - ext/gherkin_lexer_fr/gherkin_lexer_fr.c
437
+ - ext/gherkin_lexer_cs/gherkin_lexer_cs.c
438
+ - ext/gherkin_lexer_en_lol/gherkin_lexer_en_lol.c
439
+ - ext/gherkin_lexer_eo/gherkin_lexer_eo.c
440
+ - ext/gherkin_lexer_zh_tw/gherkin_lexer_zh_tw.c
441
+ - ext/gherkin_lexer_pt/gherkin_lexer_pt.c
442
+ - ext/gherkin_lexer_bg/gherkin_lexer_bg.c
443
+ - ext/gherkin_lexer_en/gherkin_lexer_en.c
444
+ - ext/gherkin_lexer_en_tx/gherkin_lexer_en_tx.c
445
+ - ext/gherkin_lexer_hu/gherkin_lexer_hu.c
446
+ - ext/gherkin_lexer_sr_latn/gherkin_lexer_sr_latn.c
447
+ - ext/gherkin_lexer_it/gherkin_lexer_it.c
448
+ - ext/gherkin_lexer_da/gherkin_lexer_da.c
449
+ - ext/gherkin_lexer_sr_cyrl/gherkin_lexer_sr_cyrl.c
450
+ - ext/gherkin_lexer_zh_cn/gherkin_lexer_zh_cn.c
451
+ - ext/gherkin_lexer_lu/gherkin_lexer_lu.c
452
+ - ext/gherkin_lexer_en_au/gherkin_lexer_en_au.c
453
+ - ext/gherkin_lexer_pl/gherkin_lexer_pl.c
454
+ - ext/gherkin_lexer_ca/gherkin_lexer_ca.c
455
+ - ext/gherkin_lexer_cy_gb/gherkin_lexer_cy_gb.c
456
+ - ext/gherkin_lexer_uk/gherkin_lexer_uk.c
457
+ - ext/gherkin_lexer_ro/gherkin_lexer_ro.c
458
+ - ext/gherkin_lexer_uz/gherkin_lexer_uz.c
459
+ - ext/gherkin_lexer_he/gherkin_lexer_he.c
460
+ - ext/gherkin_lexer_id/gherkin_lexer_id.c
461
+ - ext/gherkin_lexer_lt/gherkin_lexer_lt.c
462
+ - ext/gherkin_lexer_en_pirate/gherkin_lexer_en_pirate.c
463
+ - ext/gherkin_lexer_ja/gherkin_lexer_ja.c
464
+ - ext/gherkin_lexer_fi/gherkin_lexer_fi.c
465
+ - ext/gherkin_lexer_vi/gherkin_lexer_vi.c
466
+ - ext/gherkin_lexer_tr/gherkin_lexer_tr.c
467
+ - ext/gherkin_lexer_no/gherkin_lexer_no.c
468
+ - ext/gherkin_lexer_ko/gherkin_lexer_ko.c
469
+ - ext/gherkin_lexer_hr/gherkin_lexer_hr.c
470
+ - ext/gherkin_lexer_ru/gherkin_lexer_ru.c
471
+ - ext/gherkin_lexer_lv/gherkin_lexer_lv.c
472
+ - ext/gherkin_lexer_de/gherkin_lexer_de.c
473
+ - ext/gherkin_lexer_es/gherkin_lexer_es.c
474
+ - ext/gherkin_lexer_nl/gherkin_lexer_nl.c
475
+ - ext/gherkin_lexer_sk/gherkin_lexer_sk.c
476
+ - ext/gherkin_lexer_en_scouse/gherkin_lexer_en_scouse.c
477
+ - ext/gherkin_lexer_et/extconf.rb
478
+ - ext/gherkin_lexer_sv/extconf.rb
479
+ - ext/gherkin_lexer_ar/extconf.rb
480
+ - ext/gherkin_lexer_fr/extconf.rb
481
+ - ext/gherkin_lexer_cs/extconf.rb
482
+ - ext/gherkin_lexer_en_lol/extconf.rb
483
+ - ext/gherkin_lexer_eo/extconf.rb
484
+ - ext/gherkin_lexer_zh_tw/extconf.rb
485
+ - ext/gherkin_lexer_pt/extconf.rb
486
+ - ext/gherkin_lexer_bg/extconf.rb
487
+ - ext/gherkin_lexer_en/extconf.rb
488
+ - ext/gherkin_lexer_en_tx/extconf.rb
489
+ - ext/gherkin_lexer_hu/extconf.rb
490
+ - ext/gherkin_lexer_sr_latn/extconf.rb
491
+ - ext/gherkin_lexer_it/extconf.rb
492
+ - ext/gherkin_lexer_da/extconf.rb
493
+ - ext/gherkin_lexer_sr_cyrl/extconf.rb
494
+ - ext/gherkin_lexer_zh_cn/extconf.rb
495
+ - ext/gherkin_lexer_lu/extconf.rb
496
+ - ext/gherkin_lexer_en_au/extconf.rb
497
+ - ext/gherkin_lexer_pl/extconf.rb
498
+ - ext/gherkin_lexer_ca/extconf.rb
499
+ - ext/gherkin_lexer_cy_gb/extconf.rb
500
+ - ext/gherkin_lexer_uk/extconf.rb
501
+ - ext/gherkin_lexer_ro/extconf.rb
502
+ - ext/gherkin_lexer_uz/extconf.rb
503
+ - ext/gherkin_lexer_he/extconf.rb
504
+ - ext/gherkin_lexer_id/extconf.rb
505
+ - ext/gherkin_lexer_lt/extconf.rb
506
+ - ext/gherkin_lexer_en_pirate/extconf.rb
507
+ - ext/gherkin_lexer_ja/extconf.rb
508
+ - ext/gherkin_lexer_fi/extconf.rb
509
+ - ext/gherkin_lexer_vi/extconf.rb
510
+ - ext/gherkin_lexer_tr/extconf.rb
511
+ - ext/gherkin_lexer_no/extconf.rb
512
+ - ext/gherkin_lexer_ko/extconf.rb
513
+ - ext/gherkin_lexer_hr/extconf.rb
514
+ - ext/gherkin_lexer_ru/extconf.rb
515
+ - ext/gherkin_lexer_lv/extconf.rb
516
+ - ext/gherkin_lexer_de/extconf.rb
517
+ - ext/gherkin_lexer_es/extconf.rb
518
+ - ext/gherkin_lexer_nl/extconf.rb
519
+ - ext/gherkin_lexer_sk/extconf.rb
520
+ - ext/gherkin_lexer_en_scouse/extconf.rb
521
+ has_rdoc: true
522
+ homepage: http://github.com/aslakhellesoy/gherkin
523
+ licenses: []
524
+
525
+ post_install_message:
526
+ rdoc_options:
527
+ - --charset=UTF-8
528
+ require_paths:
529
+ - lib
530
+ required_ruby_version: !ruby/object:Gem::Requirement
531
+ none: false
532
+ requirements:
533
+ - - ">="
534
+ - !ruby/object:Gem::Version
535
+ hash: 3
536
+ segments:
537
+ - 0
538
+ version: "0"
539
+ required_rubygems_version: !ruby/object:Gem::Requirement
540
+ none: false
541
+ requirements:
542
+ - - ">="
543
+ - !ruby/object:Gem::Version
544
+ hash: 3
545
+ segments:
546
+ - 0
547
+ version: "0"
548
+ requirements: []
549
+
550
+ rubyforge_project:
551
+ rubygems_version: 1.4.2
552
+ signing_key:
553
+ specification_version: 3
554
+ summary: gherkin-2.3.5
555
+ test_files:
556
+ - features/escaped_pipes.feature
557
+ - features/feature_parser.feature
558
+ - features/json_formatter.feature
559
+ - features/json_parser.feature
560
+ - features/native_lexer.feature
561
+ - features/parser_with_native_lexer.feature
562
+ - features/pretty_formatter.feature
563
+ - features/step_definitions/eyeball_steps.rb
564
+ - features/step_definitions/gherkin_steps.rb
565
+ - features/step_definitions/json_formatter_steps.rb
566
+ - features/step_definitions/json_parser_steps.rb
567
+ - features/step_definitions/pretty_formatter_steps.rb
568
+ - features/steps_parser.feature
569
+ - features/support/env.rb
570
+ - spec/gherkin/c_lexer_spec.rb
571
+ - spec/gherkin/fixtures/1.feature
572
+ - spec/gherkin/fixtures/comments_in_table.feature
573
+ - spec/gherkin/fixtures/complex.feature
574
+ - spec/gherkin/fixtures/complex.json
575
+ - spec/gherkin/fixtures/complex_for_filtering.feature
576
+ - spec/gherkin/fixtures/complex_with_tags.feature
577
+ - spec/gherkin/fixtures/dos_line_endings.feature
578
+ - spec/gherkin/fixtures/hantu_pisang.feature
579
+ - spec/gherkin/fixtures/i18n_fr.feature
580
+ - spec/gherkin/fixtures/i18n_no.feature
581
+ - spec/gherkin/fixtures/i18n_zh-CN.feature
582
+ - spec/gherkin/fixtures/scenario_outline_with_tags.feature
583
+ - spec/gherkin/fixtures/scenario_without_steps.feature
584
+ - spec/gherkin/fixtures/simple_with_comments.feature
585
+ - spec/gherkin/fixtures/simple_with_tags.feature
586
+ - spec/gherkin/fixtures/with_bom.feature
587
+ - spec/gherkin/formatter/ansi_escapes_spec.rb
588
+ - spec/gherkin/formatter/filter_formatter_spec.rb
589
+ - spec/gherkin/formatter/model_spec.rb
590
+ - spec/gherkin/formatter/pretty_formatter_spec.rb
591
+ - spec/gherkin/formatter/spaces.feature
592
+ - spec/gherkin/formatter/step_printer_spec.rb
593
+ - spec/gherkin/formatter/tabs.feature
594
+ - spec/gherkin/formatter/tag_count_formatter_spec.rb
595
+ - spec/gherkin/i18n_spec.rb
596
+ - spec/gherkin/java_lexer_spec.rb
597
+ - spec/gherkin/java_libs.rb
598
+ - spec/gherkin/json_parser_spec.rb
599
+ - spec/gherkin/lexer/i18n_lexer_spec.rb
600
+ - spec/gherkin/output_stream_string_io.rb
601
+ - spec/gherkin/parser/parser_spec.rb
602
+ - spec/gherkin/rb_lexer_spec.rb
603
+ - spec/gherkin/sexp_recorder.rb
604
+ - spec/gherkin/shared/lexer_group.rb
605
+ - spec/gherkin/shared/py_string_group.rb
606
+ - spec/gherkin/shared/row_group.rb
607
+ - spec/gherkin/shared/tags_group.rb
608
+ - spec/gherkin/tag_expression_spec.rb
609
+ - spec/spec_helper.rb