gherkin 2.2.5-x86-mswin32

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 (132) 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 +5 -0
  7. data/History.txt +306 -0
  8. data/LICENSE +20 -0
  9. data/README.rdoc +59 -0
  10. data/Rakefile +16 -0
  11. data/VERSION +1 -0
  12. data/bin/gherkin +5 -0
  13. data/build_native_gems.sh +8 -0
  14. data/cucumber.yml +3 -0
  15. data/features/escaped_pipes.feature +8 -0
  16. data/features/feature_parser.feature +237 -0
  17. data/features/json_formatter.feature +278 -0
  18. data/features/json_parser.feature +318 -0
  19. data/features/native_lexer.feature +19 -0
  20. data/features/parser_with_native_lexer.feature +205 -0
  21. data/features/pretty_formatter.feature +15 -0
  22. data/features/step_definitions/eyeball_steps.rb +3 -0
  23. data/features/step_definitions/gherkin_steps.rb +29 -0
  24. data/features/step_definitions/json_formatter_steps.rb +28 -0
  25. data/features/step_definitions/json_parser_steps.rb +20 -0
  26. data/features/step_definitions/pretty_formatter_steps.rb +82 -0
  27. data/features/steps_parser.feature +46 -0
  28. data/features/support/env.rb +38 -0
  29. data/gherkin.gemspec +59 -0
  30. data/ikvm/.gitignore +3 -0
  31. data/java/.gitignore +2 -0
  32. data/java/src/main/java/gherkin/lexer/i18n/.gitignore +1 -0
  33. data/java/src/main/resources/gherkin/.gitignore +1 -0
  34. data/lib/.gitignore +4 -0
  35. data/lib/gherkin.rb +2 -0
  36. data/lib/gherkin/c_lexer.rb +17 -0
  37. data/lib/gherkin/cli/main.rb +33 -0
  38. data/lib/gherkin/formatter/argument.rb +28 -0
  39. data/lib/gherkin/formatter/colors.rb +119 -0
  40. data/lib/gherkin/formatter/escaping.rb +15 -0
  41. data/lib/gherkin/formatter/filter_formatter.rb +136 -0
  42. data/lib/gherkin/formatter/json_formatter.rb +72 -0
  43. data/lib/gherkin/formatter/line_filter.rb +26 -0
  44. data/lib/gherkin/formatter/model.rb +231 -0
  45. data/lib/gherkin/formatter/monochrome_format.rb +9 -0
  46. data/lib/gherkin/formatter/pretty_formatter.rb +174 -0
  47. data/lib/gherkin/formatter/regexp_filter.rb +21 -0
  48. data/lib/gherkin/formatter/tag_count_formatter.rb +47 -0
  49. data/lib/gherkin/formatter/tag_filter.rb +19 -0
  50. data/lib/gherkin/i18n.rb +180 -0
  51. data/lib/gherkin/i18n.yml +601 -0
  52. data/lib/gherkin/json_parser.rb +88 -0
  53. data/lib/gherkin/lexer/i18n_lexer.rb +47 -0
  54. data/lib/gherkin/listener/event.rb +45 -0
  55. data/lib/gherkin/listener/formatter_listener.rb +113 -0
  56. data/lib/gherkin/native.rb +7 -0
  57. data/lib/gherkin/native/ikvm.rb +55 -0
  58. data/lib/gherkin/native/java.rb +55 -0
  59. data/lib/gherkin/native/null.rb +9 -0
  60. data/lib/gherkin/parser/meta.txt +5 -0
  61. data/lib/gherkin/parser/parser.rb +164 -0
  62. data/lib/gherkin/parser/root.txt +11 -0
  63. data/lib/gherkin/parser/steps.txt +4 -0
  64. data/lib/gherkin/rb_lexer.rb +8 -0
  65. data/lib/gherkin/rb_lexer/.gitignore +1 -0
  66. data/lib/gherkin/rb_lexer/README.rdoc +8 -0
  67. data/lib/gherkin/rubify.rb +24 -0
  68. data/lib/gherkin/tag_expression.rb +62 -0
  69. data/lib/gherkin/tools.rb +8 -0
  70. data/lib/gherkin/tools/files.rb +34 -0
  71. data/lib/gherkin/tools/reformat.rb +20 -0
  72. data/lib/gherkin/tools/stats.rb +20 -0
  73. data/lib/gherkin/tools/stats_listener.rb +60 -0
  74. data/lib/gherkin/version.rb +3 -0
  75. data/ragel/i18n/.gitignore +1 -0
  76. data/ragel/lexer.c.rl.erb +459 -0
  77. data/ragel/lexer.java.rl.erb +224 -0
  78. data/ragel/lexer.rb.rl.erb +179 -0
  79. data/ragel/lexer_common.rl.erb +50 -0
  80. data/spec/gherkin/c_lexer_spec.rb +21 -0
  81. data/spec/gherkin/fixtures/1.feature +8 -0
  82. data/spec/gherkin/fixtures/comments_in_table.feature +9 -0
  83. data/spec/gherkin/fixtures/complex.feature +45 -0
  84. data/spec/gherkin/fixtures/complex.json +143 -0
  85. data/spec/gherkin/fixtures/complex_for_filtering.feature +60 -0
  86. data/spec/gherkin/fixtures/complex_with_tags.feature +61 -0
  87. data/spec/gherkin/fixtures/dos_line_endings.feature +45 -0
  88. data/spec/gherkin/fixtures/hantu_pisang.feature +35 -0
  89. data/spec/gherkin/fixtures/i18n_fr.feature +14 -0
  90. data/spec/gherkin/fixtures/i18n_no.feature +7 -0
  91. data/spec/gherkin/fixtures/i18n_zh-CN.feature +9 -0
  92. data/spec/gherkin/fixtures/scenario_outline_with_tags.feature +13 -0
  93. data/spec/gherkin/fixtures/scenario_without_steps.feature +5 -0
  94. data/spec/gherkin/fixtures/simple_with_comments.feature +7 -0
  95. data/spec/gherkin/fixtures/simple_with_tags.feature +11 -0
  96. data/spec/gherkin/fixtures/with_bom.feature +3 -0
  97. data/spec/gherkin/formatter/argument_spec.rb +28 -0
  98. data/spec/gherkin/formatter/colors_spec.rb +18 -0
  99. data/spec/gherkin/formatter/filter_formatter_spec.rb +165 -0
  100. data/spec/gherkin/formatter/model_spec.rb +15 -0
  101. data/spec/gherkin/formatter/pretty_formatter_spec.rb +140 -0
  102. data/spec/gherkin/formatter/spaces.feature +9 -0
  103. data/spec/gherkin/formatter/tabs.feature +9 -0
  104. data/spec/gherkin/formatter/tag_count_formatter_spec.rb +30 -0
  105. data/spec/gherkin/i18n_spec.rb +149 -0
  106. data/spec/gherkin/java_lexer_spec.rb +20 -0
  107. data/spec/gherkin/json.rb +5 -0
  108. data/spec/gherkin/json_parser_spec.rb +67 -0
  109. data/spec/gherkin/lexer/i18n_lexer_spec.rb +43 -0
  110. data/spec/gherkin/output_stream_string_io.rb +24 -0
  111. data/spec/gherkin/parser/parser_spec.rb +16 -0
  112. data/spec/gherkin/rb_lexer_spec.rb +19 -0
  113. data/spec/gherkin/sexp_recorder.rb +56 -0
  114. data/spec/gherkin/shared/lexer_group.rb +592 -0
  115. data/spec/gherkin/shared/py_string_group.rb +153 -0
  116. data/spec/gherkin/shared/row_group.rb +120 -0
  117. data/spec/gherkin/shared/tags_group.rb +54 -0
  118. data/spec/gherkin/tag_expression_spec.rb +137 -0
  119. data/spec/spec_helper.rb +68 -0
  120. data/tasks/bench.rake +184 -0
  121. data/tasks/bench/feature_builder.rb +49 -0
  122. data/tasks/bench/generated/.gitignore +1 -0
  123. data/tasks/bench/null_listener.rb +4 -0
  124. data/tasks/compile.rake +102 -0
  125. data/tasks/cucumber.rake +18 -0
  126. data/tasks/gems.rake +42 -0
  127. data/tasks/ikvm.rake +54 -0
  128. data/tasks/ragel_task.rb +70 -0
  129. data/tasks/rdoc.rake +9 -0
  130. data/tasks/release.rake +30 -0
  131. data/tasks/rspec.rake +8 -0
  132. metadata +447 -0
@@ -0,0 +1,54 @@
1
+ require File.dirname(__FILE__) + '/../spec/gherkin/json'
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
+ task :dependent_dlls do
24
+ mkdir_p 'release' unless File.directory?('release')
25
+ sh("mono /usr/local/ikvm/bin/ikvmc.exe -target:library #{JSON_SIMPLE_JAR} -out:release/json-simple.dll")
26
+ end
27
+
28
+ desc 'Make a .NET .exe'
29
+ task :exe => ['lib/gherkin.jar', :dependent_dlls] do
30
+ sh("mono /usr/local/ikvm/bin/ikvmc.exe -target:exe lib/gherkin.jar -out:release/gherkin-#{Gherkin::VERSION}.exe -reference:release/json-simple.dll")
31
+ end
32
+
33
+ desc 'Make a .NET .dll'
34
+ task :dll => ['lib/gherkin.jar', :dependent_dlls] do
35
+ mkdir_p 'release' unless File.directory?('release')
36
+ sh("mono /usr/local/ikvm/bin/ikvmc.exe -target:library lib/gherkin.jar -out:release/gherkin-#{Gherkin::VERSION}.dll -reference:release/json-simple.dll")
37
+ cp "release/gherkin-#{Gherkin::VERSION}.dll", 'lib/gherkin.dll'
38
+ end
39
+
40
+ desc 'Copy the IKVM .dll files over to the pkg dir'
41
+ task :copy_ikvm_dlls do
42
+ Dir['/usr/local/ikvm/bin/{IKVM.OpenJDK.Core,IKVM.OpenJDK.Text,IKVM.OpenJDK.Security,IKVM.Runtime}.dll'].each do |dll|
43
+ cp dll, 'release'
44
+ cp dll, 'lib'
45
+ end
46
+ end
47
+ end
48
+
49
+ task :ikvm => ['ikvm:copy_ikvm_dlls', 'ikvm:exe', 'ikvm:dll'] do
50
+ puts "************** Pretty printing some features with .NET. **************"
51
+ sh "mono release/gherkin-#{Gherkin::VERSION}.exe features"
52
+ puts "************** DONE Pretty printing some features with .NET. All OK. **************"
53
+ end
54
+
@@ -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
@@ -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
@@ -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,447 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: gherkin
3
+ version: !ruby/object:Gem::Version
4
+ prerelease: false
5
+ segments:
6
+ - 2
7
+ - 2
8
+ - 5
9
+ version: 2.2.5
10
+ platform: x86-mswin32
11
+ authors:
12
+ - Mike Sassak
13
+ - Gregory Hnatiuk
14
+ - "Aslak Helles\xC3\xB8y"
15
+ autorequire:
16
+ bindir: bin
17
+ cert_chain: []
18
+
19
+ date: 2010-10-01 00:00:00 +02:00
20
+ default_executable: gherkin
21
+ dependencies:
22
+ - !ruby/object:Gem::Dependency
23
+ name: trollop
24
+ prerelease: false
25
+ requirement: &id001 !ruby/object:Gem::Requirement
26
+ none: false
27
+ requirements:
28
+ - - ~>
29
+ - !ruby/object:Gem::Version
30
+ segments:
31
+ - 1
32
+ - 16
33
+ - 2
34
+ version: 1.16.2
35
+ type: :runtime
36
+ version_requirements: *id001
37
+ - !ruby/object:Gem::Dependency
38
+ name: json
39
+ prerelease: false
40
+ requirement: &id002 !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ~>
44
+ - !ruby/object:Gem::Version
45
+ segments:
46
+ - 1
47
+ - 4
48
+ - 6
49
+ version: 1.4.6
50
+ type: :runtime
51
+ version_requirements: *id002
52
+ - !ruby/object:Gem::Dependency
53
+ name: term-ansicolor
54
+ prerelease: false
55
+ requirement: &id003 !ruby/object:Gem::Requirement
56
+ none: false
57
+ requirements:
58
+ - - ~>
59
+ - !ruby/object:Gem::Version
60
+ segments:
61
+ - 1
62
+ - 0
63
+ - 5
64
+ version: 1.0.5
65
+ type: :runtime
66
+ version_requirements: *id003
67
+ - !ruby/object:Gem::Dependency
68
+ name: rake
69
+ prerelease: false
70
+ requirement: &id004 !ruby/object:Gem::Requirement
71
+ none: false
72
+ requirements:
73
+ - - ~>
74
+ - !ruby/object:Gem::Version
75
+ segments:
76
+ - 0
77
+ - 8
78
+ - 7
79
+ version: 0.8.7
80
+ type: :development
81
+ version_requirements: *id004
82
+ - !ruby/object:Gem::Dependency
83
+ name: awesome_print
84
+ prerelease: false
85
+ requirement: &id005 !ruby/object:Gem::Requirement
86
+ none: false
87
+ requirements:
88
+ - - ~>
89
+ - !ruby/object:Gem::Version
90
+ segments:
91
+ - 0
92
+ - 2
93
+ - 1
94
+ version: 0.2.1
95
+ type: :development
96
+ version_requirements: *id005
97
+ - !ruby/object:Gem::Dependency
98
+ name: rspec
99
+ prerelease: false
100
+ requirement: &id006 !ruby/object:Gem::Requirement
101
+ none: false
102
+ requirements:
103
+ - - ~>
104
+ - !ruby/object:Gem::Version
105
+ segments:
106
+ - 2
107
+ - 0
108
+ - 0
109
+ - beta
110
+ - 22
111
+ version: 2.0.0.beta.22
112
+ type: :development
113
+ version_requirements: *id006
114
+ - !ruby/object:Gem::Dependency
115
+ name: cucumber
116
+ prerelease: false
117
+ requirement: &id007 !ruby/object:Gem::Requirement
118
+ none: false
119
+ requirements:
120
+ - - ~>
121
+ - !ruby/object:Gem::Version
122
+ segments:
123
+ - 0
124
+ - 9
125
+ - 0
126
+ version: 0.9.0
127
+ type: :development
128
+ version_requirements: *id007
129
+ description: A fast Gherkin lexer/parser based on the Ragel State Machine Compiler.
130
+ email: cukes@googlegroups.com
131
+ executables:
132
+ - gherkin
133
+ extensions: []
134
+
135
+ extra_rdoc_files:
136
+ - LICENSE
137
+ - README.rdoc
138
+ - History.txt
139
+ files:
140
+ - .gitattributes
141
+ - .gitignore
142
+ - .mailmap
143
+ - .rspec
144
+ - .rvmrc
145
+ - Gemfile
146
+ - History.txt
147
+ - LICENSE
148
+ - README.rdoc
149
+ - Rakefile
150
+ - VERSION
151
+ - bin/gherkin
152
+ - build_native_gems.sh
153
+ - cucumber.yml
154
+ - features/escaped_pipes.feature
155
+ - features/feature_parser.feature
156
+ - features/json_formatter.feature
157
+ - features/json_parser.feature
158
+ - features/native_lexer.feature
159
+ - features/parser_with_native_lexer.feature
160
+ - features/pretty_formatter.feature
161
+ - features/step_definitions/eyeball_steps.rb
162
+ - features/step_definitions/gherkin_steps.rb
163
+ - features/step_definitions/json_formatter_steps.rb
164
+ - features/step_definitions/json_parser_steps.rb
165
+ - features/step_definitions/pretty_formatter_steps.rb
166
+ - features/steps_parser.feature
167
+ - features/support/env.rb
168
+ - gherkin.gemspec
169
+ - ikvm/.gitignore
170
+ - java/.gitignore
171
+ - java/src/main/java/gherkin/lexer/i18n/.gitignore
172
+ - java/src/main/resources/gherkin/.gitignore
173
+ - lib/.gitignore
174
+ - lib/gherkin.rb
175
+ - lib/gherkin/c_lexer.rb
176
+ - lib/gherkin/cli/main.rb
177
+ - lib/gherkin/formatter/argument.rb
178
+ - lib/gherkin/formatter/colors.rb
179
+ - lib/gherkin/formatter/escaping.rb
180
+ - lib/gherkin/formatter/filter_formatter.rb
181
+ - lib/gherkin/formatter/json_formatter.rb
182
+ - lib/gherkin/formatter/line_filter.rb
183
+ - lib/gherkin/formatter/model.rb
184
+ - lib/gherkin/formatter/monochrome_format.rb
185
+ - lib/gherkin/formatter/pretty_formatter.rb
186
+ - lib/gherkin/formatter/regexp_filter.rb
187
+ - lib/gherkin/formatter/tag_count_formatter.rb
188
+ - lib/gherkin/formatter/tag_filter.rb
189
+ - lib/gherkin/i18n.rb
190
+ - lib/gherkin/i18n.yml
191
+ - lib/gherkin/json_parser.rb
192
+ - lib/gherkin/lexer/i18n_lexer.rb
193
+ - lib/gherkin/listener/event.rb
194
+ - lib/gherkin/listener/formatter_listener.rb
195
+ - lib/gherkin/native.rb
196
+ - lib/gherkin/native/ikvm.rb
197
+ - lib/gherkin/native/java.rb
198
+ - lib/gherkin/native/null.rb
199
+ - lib/gherkin/parser/meta.txt
200
+ - lib/gherkin/parser/parser.rb
201
+ - lib/gherkin/parser/root.txt
202
+ - lib/gherkin/parser/steps.txt
203
+ - lib/gherkin/rb_lexer.rb
204
+ - lib/gherkin/rb_lexer/.gitignore
205
+ - lib/gherkin/rb_lexer/README.rdoc
206
+ - lib/gherkin/rubify.rb
207
+ - lib/gherkin/tag_expression.rb
208
+ - lib/gherkin/tools.rb
209
+ - lib/gherkin/tools/files.rb
210
+ - lib/gherkin/tools/reformat.rb
211
+ - lib/gherkin/tools/stats.rb
212
+ - lib/gherkin/tools/stats_listener.rb
213
+ - lib/gherkin/version.rb
214
+ - ragel/i18n/.gitignore
215
+ - ragel/lexer.c.rl.erb
216
+ - ragel/lexer.java.rl.erb
217
+ - ragel/lexer.rb.rl.erb
218
+ - ragel/lexer_common.rl.erb
219
+ - spec/gherkin/c_lexer_spec.rb
220
+ - spec/gherkin/fixtures/1.feature
221
+ - spec/gherkin/fixtures/comments_in_table.feature
222
+ - spec/gherkin/fixtures/complex.feature
223
+ - spec/gherkin/fixtures/complex.json
224
+ - spec/gherkin/fixtures/complex_for_filtering.feature
225
+ - spec/gherkin/fixtures/complex_with_tags.feature
226
+ - spec/gherkin/fixtures/dos_line_endings.feature
227
+ - spec/gherkin/fixtures/hantu_pisang.feature
228
+ - spec/gherkin/fixtures/i18n_fr.feature
229
+ - spec/gherkin/fixtures/i18n_no.feature
230
+ - spec/gherkin/fixtures/i18n_zh-CN.feature
231
+ - spec/gherkin/fixtures/scenario_outline_with_tags.feature
232
+ - spec/gherkin/fixtures/scenario_without_steps.feature
233
+ - spec/gherkin/fixtures/simple_with_comments.feature
234
+ - spec/gherkin/fixtures/simple_with_tags.feature
235
+ - spec/gherkin/fixtures/with_bom.feature
236
+ - spec/gherkin/formatter/argument_spec.rb
237
+ - spec/gherkin/formatter/colors_spec.rb
238
+ - spec/gherkin/formatter/filter_formatter_spec.rb
239
+ - spec/gherkin/formatter/model_spec.rb
240
+ - spec/gherkin/formatter/pretty_formatter_spec.rb
241
+ - spec/gherkin/formatter/spaces.feature
242
+ - spec/gherkin/formatter/tabs.feature
243
+ - spec/gherkin/formatter/tag_count_formatter_spec.rb
244
+ - spec/gherkin/i18n_spec.rb
245
+ - spec/gherkin/java_lexer_spec.rb
246
+ - spec/gherkin/json.rb
247
+ - spec/gherkin/json_parser_spec.rb
248
+ - spec/gherkin/lexer/i18n_lexer_spec.rb
249
+ - spec/gherkin/output_stream_string_io.rb
250
+ - spec/gherkin/parser/parser_spec.rb
251
+ - spec/gherkin/rb_lexer_spec.rb
252
+ - spec/gherkin/sexp_recorder.rb
253
+ - spec/gherkin/shared/lexer_group.rb
254
+ - spec/gherkin/shared/py_string_group.rb
255
+ - spec/gherkin/shared/row_group.rb
256
+ - spec/gherkin/shared/tags_group.rb
257
+ - spec/gherkin/tag_expression_spec.rb
258
+ - spec/spec_helper.rb
259
+ - tasks/bench.rake
260
+ - tasks/bench/feature_builder.rb
261
+ - tasks/bench/generated/.gitignore
262
+ - tasks/bench/null_listener.rb
263
+ - tasks/compile.rake
264
+ - tasks/cucumber.rake
265
+ - tasks/gems.rake
266
+ - tasks/ikvm.rake
267
+ - tasks/ragel_task.rb
268
+ - tasks/rdoc.rake
269
+ - tasks/release.rake
270
+ - tasks/rspec.rake
271
+ - lib/1.8/gherkin_lexer_ar.so
272
+ - lib/1.8/gherkin_lexer_bg.so
273
+ - lib/1.8/gherkin_lexer_ca.so
274
+ - lib/1.8/gherkin_lexer_cs.so
275
+ - lib/1.8/gherkin_lexer_cy_gb.so
276
+ - lib/1.8/gherkin_lexer_da.so
277
+ - lib/1.8/gherkin_lexer_de.so
278
+ - lib/1.8/gherkin_lexer_en.so
279
+ - lib/1.8/gherkin_lexer_en_au.so
280
+ - lib/1.8/gherkin_lexer_en_lol.so
281
+ - lib/1.8/gherkin_lexer_en_pirate.so
282
+ - lib/1.8/gherkin_lexer_en_scouse.so
283
+ - lib/1.8/gherkin_lexer_en_tx.so
284
+ - lib/1.8/gherkin_lexer_eo.so
285
+ - lib/1.8/gherkin_lexer_es.so
286
+ - lib/1.8/gherkin_lexer_et.so
287
+ - lib/1.8/gherkin_lexer_fi.so
288
+ - lib/1.8/gherkin_lexer_fr.so
289
+ - lib/1.8/gherkin_lexer_he.so
290
+ - lib/1.8/gherkin_lexer_hr.so
291
+ - lib/1.8/gherkin_lexer_hu.so
292
+ - lib/1.8/gherkin_lexer_id.so
293
+ - lib/1.8/gherkin_lexer_it.so
294
+ - lib/1.8/gherkin_lexer_ja.so
295
+ - lib/1.8/gherkin_lexer_ko.so
296
+ - lib/1.8/gherkin_lexer_lt.so
297
+ - lib/1.8/gherkin_lexer_lu.so
298
+ - lib/1.8/gherkin_lexer_lv.so
299
+ - lib/1.8/gherkin_lexer_nl.so
300
+ - lib/1.8/gherkin_lexer_no.so
301
+ - lib/1.8/gherkin_lexer_pl.so
302
+ - lib/1.8/gherkin_lexer_pt.so
303
+ - lib/1.8/gherkin_lexer_ro.so
304
+ - lib/1.8/gherkin_lexer_ro_ro.so
305
+ - lib/1.8/gherkin_lexer_ru.so
306
+ - lib/1.8/gherkin_lexer_sk.so
307
+ - lib/1.8/gherkin_lexer_sr_cyrl.so
308
+ - lib/1.8/gherkin_lexer_sr_latn.so
309
+ - lib/1.8/gherkin_lexer_sv.so
310
+ - lib/1.8/gherkin_lexer_tr.so
311
+ - lib/1.8/gherkin_lexer_uk.so
312
+ - lib/1.8/gherkin_lexer_uz.so
313
+ - lib/1.8/gherkin_lexer_vi.so
314
+ - lib/1.8/gherkin_lexer_zh_cn.so
315
+ - lib/1.8/gherkin_lexer_zh_tw.so
316
+ - lib/1.9/gherkin_lexer_ar.so
317
+ - lib/1.9/gherkin_lexer_bg.so
318
+ - lib/1.9/gherkin_lexer_ca.so
319
+ - lib/1.9/gherkin_lexer_cs.so
320
+ - lib/1.9/gherkin_lexer_cy_gb.so
321
+ - lib/1.9/gherkin_lexer_da.so
322
+ - lib/1.9/gherkin_lexer_de.so
323
+ - lib/1.9/gherkin_lexer_en.so
324
+ - lib/1.9/gherkin_lexer_en_au.so
325
+ - lib/1.9/gherkin_lexer_en_lol.so
326
+ - lib/1.9/gherkin_lexer_en_pirate.so
327
+ - lib/1.9/gherkin_lexer_en_scouse.so
328
+ - lib/1.9/gherkin_lexer_en_tx.so
329
+ - lib/1.9/gherkin_lexer_eo.so
330
+ - lib/1.9/gherkin_lexer_es.so
331
+ - lib/1.9/gherkin_lexer_et.so
332
+ - lib/1.9/gherkin_lexer_fi.so
333
+ - lib/1.9/gherkin_lexer_fr.so
334
+ - lib/1.9/gherkin_lexer_he.so
335
+ - lib/1.9/gherkin_lexer_hr.so
336
+ - lib/1.9/gherkin_lexer_hu.so
337
+ - lib/1.9/gherkin_lexer_id.so
338
+ - lib/1.9/gherkin_lexer_it.so
339
+ - lib/1.9/gherkin_lexer_ja.so
340
+ - lib/1.9/gherkin_lexer_ko.so
341
+ - lib/1.9/gherkin_lexer_lt.so
342
+ - lib/1.9/gherkin_lexer_lu.so
343
+ - lib/1.9/gherkin_lexer_lv.so
344
+ - lib/1.9/gherkin_lexer_nl.so
345
+ - lib/1.9/gherkin_lexer_no.so
346
+ - lib/1.9/gherkin_lexer_pl.so
347
+ - lib/1.9/gherkin_lexer_pt.so
348
+ - lib/1.9/gherkin_lexer_ro.so
349
+ - lib/1.9/gherkin_lexer_ro_ro.so
350
+ - lib/1.9/gherkin_lexer_ru.so
351
+ - lib/1.9/gherkin_lexer_sk.so
352
+ - lib/1.9/gherkin_lexer_sr_cyrl.so
353
+ - lib/1.9/gherkin_lexer_sr_latn.so
354
+ - lib/1.9/gherkin_lexer_sv.so
355
+ - lib/1.9/gherkin_lexer_tr.so
356
+ - lib/1.9/gherkin_lexer_uk.so
357
+ - lib/1.9/gherkin_lexer_uz.so
358
+ - lib/1.9/gherkin_lexer_vi.so
359
+ - lib/1.9/gherkin_lexer_zh_cn.so
360
+ - lib/1.9/gherkin_lexer_zh_tw.so
361
+ has_rdoc: true
362
+ homepage: http://github.com/aslakhellesoy/gherkin
363
+ licenses: []
364
+
365
+ post_install_message:
366
+ rdoc_options:
367
+ - --charset=UTF-8
368
+ require_paths:
369
+ - lib
370
+ required_ruby_version: !ruby/object:Gem::Requirement
371
+ none: false
372
+ requirements:
373
+ - - ">="
374
+ - !ruby/object:Gem::Version
375
+ segments:
376
+ - 0
377
+ version: "0"
378
+ required_rubygems_version: !ruby/object:Gem::Requirement
379
+ none: false
380
+ requirements:
381
+ - - ">="
382
+ - !ruby/object:Gem::Version
383
+ segments:
384
+ - 0
385
+ version: "0"
386
+ requirements: []
387
+
388
+ rubyforge_project:
389
+ rubygems_version: 1.3.7
390
+ signing_key:
391
+ specification_version: 3
392
+ summary: gherkin-2.2.5
393
+ test_files:
394
+ - features/escaped_pipes.feature
395
+ - features/feature_parser.feature
396
+ - features/json_formatter.feature
397
+ - features/json_parser.feature
398
+ - features/native_lexer.feature
399
+ - features/parser_with_native_lexer.feature
400
+ - features/pretty_formatter.feature
401
+ - features/step_definitions/eyeball_steps.rb
402
+ - features/step_definitions/gherkin_steps.rb
403
+ - features/step_definitions/json_formatter_steps.rb
404
+ - features/step_definitions/json_parser_steps.rb
405
+ - features/step_definitions/pretty_formatter_steps.rb
406
+ - features/steps_parser.feature
407
+ - features/support/env.rb
408
+ - spec/gherkin/c_lexer_spec.rb
409
+ - spec/gherkin/fixtures/1.feature
410
+ - spec/gherkin/fixtures/comments_in_table.feature
411
+ - spec/gherkin/fixtures/complex.feature
412
+ - spec/gherkin/fixtures/complex.json
413
+ - spec/gherkin/fixtures/complex_for_filtering.feature
414
+ - spec/gherkin/fixtures/complex_with_tags.feature
415
+ - spec/gherkin/fixtures/dos_line_endings.feature
416
+ - spec/gherkin/fixtures/hantu_pisang.feature
417
+ - spec/gherkin/fixtures/i18n_fr.feature
418
+ - spec/gherkin/fixtures/i18n_no.feature
419
+ - spec/gherkin/fixtures/i18n_zh-CN.feature
420
+ - spec/gherkin/fixtures/scenario_outline_with_tags.feature
421
+ - spec/gherkin/fixtures/scenario_without_steps.feature
422
+ - spec/gherkin/fixtures/simple_with_comments.feature
423
+ - spec/gherkin/fixtures/simple_with_tags.feature
424
+ - spec/gherkin/fixtures/with_bom.feature
425
+ - spec/gherkin/formatter/argument_spec.rb
426
+ - spec/gherkin/formatter/colors_spec.rb
427
+ - spec/gherkin/formatter/filter_formatter_spec.rb
428
+ - spec/gherkin/formatter/model_spec.rb
429
+ - spec/gherkin/formatter/pretty_formatter_spec.rb
430
+ - spec/gherkin/formatter/spaces.feature
431
+ - spec/gherkin/formatter/tabs.feature
432
+ - spec/gherkin/formatter/tag_count_formatter_spec.rb
433
+ - spec/gherkin/i18n_spec.rb
434
+ - spec/gherkin/java_lexer_spec.rb
435
+ - spec/gherkin/json.rb
436
+ - spec/gherkin/json_parser_spec.rb
437
+ - spec/gherkin/lexer/i18n_lexer_spec.rb
438
+ - spec/gherkin/output_stream_string_io.rb
439
+ - spec/gherkin/parser/parser_spec.rb
440
+ - spec/gherkin/rb_lexer_spec.rb
441
+ - spec/gherkin/sexp_recorder.rb
442
+ - spec/gherkin/shared/lexer_group.rb
443
+ - spec/gherkin/shared/py_string_group.rb
444
+ - spec/gherkin/shared/row_group.rb
445
+ - spec/gherkin/shared/tags_group.rb
446
+ - spec/gherkin/tag_expression_spec.rb
447
+ - spec/spec_helper.rb