cucumber 0.2.2 → 0.2.3

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 (93) hide show
  1. data/History.txt +21 -1
  2. data/Manifest.txt +49 -47
  3. data/bin/cucumber +1 -1
  4. data/config/hoe.rb +2 -2
  5. data/examples/i18n/Rakefile +6 -8
  6. data/examples/i18n/ar/features/step_definitons/calculator_steps.rb +1 -1
  7. data/examples/i18n/ar/lib/calculator.rb +1 -0
  8. data/examples/i18n/da/features/step_definitons/kalkulator_steps.rb +1 -1
  9. data/examples/i18n/de/features/step_definitons/calculator_steps.rb +1 -1
  10. data/examples/i18n/en/features/step_definitons/calculator_steps.rb +1 -1
  11. data/examples/i18n/es/features/step_definitons/calculador_steps.rb +1 -1
  12. data/examples/i18n/et/features/step_definitions/kalkulaator_steps.rb +1 -1
  13. data/examples/i18n/fi/features/step_definitons/laskin_steps.rb +1 -1
  14. data/examples/i18n/fr/features/step_definitions/calculatrice_steps.rb +1 -1
  15. data/examples/i18n/id/features/step_definitons/calculator_steps.rb +1 -1
  16. data/examples/i18n/it/features/step_definitons/calcolatrice_steps.rb +1 -1
  17. data/examples/i18n/ja/features/step_definitons/calculator_steps.rb +1 -1
  18. data/examples/i18n/ko/features/addition.feature +1 -1
  19. data/examples/i18n/ko/features/step_definitons/calculator_steps.rb +1 -1
  20. data/examples/i18n/lt/features/step_definitons/calculator_steps.rb +1 -1
  21. data/examples/i18n/no/features/support/env.rb +1 -1
  22. data/examples/i18n/pt/features/step_definitions/calculadora_steps.rb +1 -1
  23. data/examples/i18n/ro/features/step_definitons/calculator_steps.rb +1 -1
  24. data/examples/i18n/ru/features/support/env.rb +1 -1
  25. data/examples/i18n/se/features/step_definitons/kalkulator_steps.rb +1 -1
  26. data/examples/i18n/zh-CN/features/step_definitons/calculator_steps.rb +1 -1
  27. data/examples/i18n/zh-TW/features/step_definitons/calculator_steps.rb +1 -1
  28. data/examples/tickets/features/246.feature +4 -0
  29. data/examples/tickets/features/step_definitons/246_steps.rb +3 -0
  30. data/features/cucumber_cli_outlines.feature +1 -1
  31. data/gem_tasks/rspec.rake +3 -2
  32. data/lib/cucumber/ast/outline_table.rb +1 -1
  33. data/lib/cucumber/ast/table.rb +21 -0
  34. data/lib/cucumber/formatter/ansicolor.rb +10 -2
  35. data/lib/cucumber/languages.yml +51 -3
  36. data/lib/cucumber/parser.rb +2 -7
  37. data/lib/cucumber/parser/feature.rb +34 -39
  38. data/lib/cucumber/parser/feature.tt +1 -1
  39. data/lib/cucumber/parser/i18n.tt +4 -0
  40. data/lib/cucumber/step_definition.rb +9 -12
  41. data/lib/cucumber/step_mother.rb +3 -2
  42. data/lib/cucumber/version.rb +1 -1
  43. data/rails_generators/cucumber/templates/env.rb +1 -1
  44. data/rails_generators/cucumber/templates/paths.rb +2 -1
  45. data/rails_generators/cucumber/templates/webrat_steps.rb +8 -0
  46. data/{spec → specs}/cucumber/ast/background_spec.rb +0 -0
  47. data/{spec → specs}/cucumber/ast/feature_factory.rb +0 -0
  48. data/{spec → specs}/cucumber/ast/feature_spec.rb +0 -0
  49. data/{spec → specs}/cucumber/ast/py_string_spec.rb +0 -0
  50. data/{spec → specs}/cucumber/ast/scenario_outline_spec.rb +0 -0
  51. data/{spec → specs}/cucumber/ast/scenario_spec.rb +0 -0
  52. data/{spec → specs}/cucumber/ast/step_collection_spec.rb +0 -0
  53. data/{spec → specs}/cucumber/ast/step_spec.rb +0 -0
  54. data/{spec → specs}/cucumber/ast/table_spec.rb +21 -0
  55. data/{spec → specs}/cucumber/ast/tags_spec.rb +0 -0
  56. data/{spec → specs}/cucumber/broadcaster_spec.rb +0 -0
  57. data/{spec → specs}/cucumber/cli/configuration_spec.rb +0 -0
  58. data/{spec → specs}/cucumber/cli/main_spec.rb +0 -0
  59. data/{spec → specs}/cucumber/core_ext/proc_spec.rb +1 -1
  60. data/{spec → specs}/cucumber/core_ext/string_spec.rb +0 -0
  61. data/{spec → specs}/cucumber/formatter/ansicolor_spec.rb +0 -0
  62. data/{spec → specs}/cucumber/formatter/color_io_spec.rb +0 -0
  63. data/{spec → specs}/cucumber/formatter/html/cucumber.css +0 -0
  64. data/{spec → specs}/cucumber/formatter/html/cucumber.js +0 -0
  65. data/{spec → specs}/cucumber/formatter/html/index.html +0 -0
  66. data/{spec → specs}/cucumber/formatter/html/jquery-1.3.min.js +0 -0
  67. data/{spec → specs}/cucumber/formatter/html/jquery.uitableedit.js +0 -0
  68. data/{spec → specs}/cucumber/formatters/profile_formatter_spec.rb +0 -0
  69. data/{spec → specs}/cucumber/parser/feature_parser_spec.rb +0 -0
  70. data/{spec → specs}/cucumber/parser/table_parser_spec.rb +0 -0
  71. data/{spec → specs}/cucumber/rails/stubs/mini_rails.rb +0 -0
  72. data/{spec → specs}/cucumber/rails/stubs/test_help.rb +0 -0
  73. data/{spec → specs}/cucumber/rails/world_spec.rb +0 -0
  74. data/{spec → specs}/cucumber/sell_cucumbers.feature +0 -0
  75. data/{spec → specs}/cucumber/step_definition_spec.rb +8 -0
  76. data/{spec → specs}/cucumber/step_mother_spec.rb +19 -3
  77. data/{spec → specs}/cucumber/treetop_parser/empty_feature.feature +0 -0
  78. data/{spec → specs}/cucumber/treetop_parser/empty_scenario.feature +0 -0
  79. data/{spec → specs}/cucumber/treetop_parser/empty_scenario_outline.feature +0 -0
  80. data/{spec → specs}/cucumber/treetop_parser/fit_scenario.feature +0 -0
  81. data/{spec → specs}/cucumber/treetop_parser/given_scenario.feature +0 -0
  82. data/{spec → specs}/cucumber/treetop_parser/invalid_scenario_outlines.feature +0 -0
  83. data/{spec → specs}/cucumber/treetop_parser/multiline_steps.feature +0 -0
  84. data/{spec → specs}/cucumber/treetop_parser/multiple_tables.feature +0 -0
  85. data/{spec → specs}/cucumber/treetop_parser/scenario_outline.feature +0 -0
  86. data/{spec → specs}/cucumber/treetop_parser/spaces.feature +0 -0
  87. data/{spec → specs}/cucumber/treetop_parser/test_dos.feature +0 -0
  88. data/{spec → specs}/cucumber/treetop_parser/with_comments.feature +0 -0
  89. data/{spec → specs}/cucumber/treetop_parser/with_tags.feature +0 -0
  90. data/{spec → specs}/cucumber/world/pending_spec.rb +0 -0
  91. data/{spec → specs}/spec.opts +0 -0
  92. data/{spec → specs}/spec_helper.rb +0 -0
  93. metadata +54 -52
@@ -22,6 +22,10 @@ module Cucumber
22
22
  (<%= keywords('but') %>)
23
23
  end
24
24
 
25
+ rule keyword_space
26
+ <%= keywords('space_after_keyword', true) ? 'space+' : 'space*' %>
27
+ end
28
+
25
29
  rule examples_keyword
26
30
  (<%= keywords('examples') %>) ':'?
27
31
  end
@@ -56,23 +56,20 @@ module Cucumber
56
56
  # end
57
57
  #
58
58
  class StepDefinition
59
+ PARAM_PATTERN = /"([^\"]*)"/
60
+ ESCAPED_PARAM_PATTERN = '"([^\\"]*)"'
61
+
59
62
  def self.snippet_text(step_keyword, step_name)
60
63
  escaped = Regexp.escape(step_name).gsub('\ ', ' ').gsub('/', '\/')
61
- param_pattern = /"([^\"]*)"/
64
+ escaped = escaped.gsub(PARAM_PATTERN, ESCAPED_PARAM_PATTERN)
62
65
 
63
- match = escaped.match(param_pattern)
64
- if match
65
- n = 0
66
- block_args = match.captures.map do |a|
67
- n += 1
68
- "arg#{n}"
69
- end
70
- block_arg_string = " |#{block_args.join(", ")}|"
71
- else
72
- block_arg_string = ""
66
+ n = 0
67
+ block_args = escaped.scan(ESCAPED_PARAM_PATTERN).map do |a|
68
+ n += 1
69
+ "arg#{n}"
73
70
  end
71
+ block_arg_string = block_args.empty? ? "" : " |#{block_args.join(", ")}|"
74
72
 
75
- escaped = escaped.gsub(param_pattern, '"([^\\"]*)"')
76
73
  "#{step_keyword} /^#{escaped}$/ do#{block_arg_string}\n pending\nend"
77
74
  end
78
75
 
@@ -26,10 +26,11 @@ module Cucumber
26
26
 
27
27
  # Raised when a step matches 2 or more StepDefinition
28
28
  class Ambiguous < StandardError
29
- def initialize(step_name, step_definitions)
29
+ def initialize(step_name, step_definitions, used_guess)
30
30
  message = "Ambiguous match of \"#{step_name}\":\n\n"
31
31
  message << step_definitions.map{|sd| sd.backtrace_line}.join("\n")
32
32
  message << "\n\n"
33
+ message << "You can run again with --guess to make Cucumber be more smart about it\n" unless used_guess
33
34
  super(message)
34
35
  end
35
36
  end
@@ -118,7 +119,7 @@ module Cucumber
118
119
  matches = step_definitions.map { |d| d.step_match(step_name, formatted_step_name) }.compact
119
120
  raise Undefined.new(step_name) if matches.empty?
120
121
  matches = best_matches(step_name, matches) if matches.size > 1 && options[:guess]
121
- raise Ambiguous.new(step_name, matches) if matches.size > 1
122
+ raise Ambiguous.new(step_name, matches, options[:guess]) if matches.size > 1
122
123
  matches[0]
123
124
  end
124
125
 
@@ -2,7 +2,7 @@ module Cucumber #:nodoc:
2
2
  class VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 2
5
- TINY = 2
5
+ TINY = 3
6
6
  PATCH = nil # Set to nil for official release
7
7
 
8
8
  STRING = [MAJOR, MINOR, TINY, PATCH].compact.join('.')
@@ -2,7 +2,7 @@
2
2
  ENV["RAILS_ENV"] ||= "test"
3
3
  require File.expand_path(File.dirname(__FILE__) + '/../../config/environment')
4
4
  require 'cucumber/rails/world'
5
- require 'cucumber/formatters/unicode' # Comment out this line if you don't want Cucumber Unicode support
5
+ require 'cucumber/formatter/unicode' # Comment out this line if you don't want Cucumber Unicode support
6
6
  Cucumber::Rails.use_transactional_fixtures
7
7
  Cucumber::Rails.bypass_rescue # Comment out this line if you want Rails own error handling
8
8
  # (e.g. rescue_action_in_public / rescue_responses / rescue_from)
@@ -8,7 +8,8 @@ module NavigationHelpers
8
8
  # Add more page name => path mappings here
9
9
 
10
10
  else
11
- raise "Can't find mapping from \"#{page_name}\" to a path."
11
+ raise "Can't find mapping from \"#{page_name}\" to a path.\n" +
12
+ "Now, go and add a mapping in features/support/paths.rb"
12
13
  end
13
14
  end
14
15
  end
@@ -113,3 +113,11 @@ Then /^the "([^\"]*)" checkbox should be checked$/ do |label|
113
113
  assert field_labeled(label).checked?
114
114
  <% end -%>
115
115
  end
116
+
117
+ Then /^I should be on (.+)$/ do |page_name|
118
+ <% if framework == :rspec -%>
119
+ URI.parse(current_url).path.should == path_to(page_name)
120
+ <% else -%>
121
+ assert_equal path_to(page_name), URI.parse(current_url).path
122
+ <% end -%>
123
+ end
@@ -69,6 +69,27 @@ module Cucumber
69
69
  @table.transpose.hashes[0].should == {'one' => '1111', 'two' => '22222'}
70
70
  end
71
71
  end
72
+
73
+ describe ".rows_hash" do
74
+
75
+ it "should return a hash of the rows" do
76
+ table = Table.new([
77
+ %w{one 1111},
78
+ %w{two 22222}
79
+ ])
80
+ table.rows_hash.should == {'one' => '1111', 'two' => '22222'}
81
+ end
82
+
83
+ it "should fail if the table doesn't have two columns" do
84
+ faulty_table = Table.new([
85
+ %w{one 1111 abc},
86
+ %w{two 22222 def}
87
+ ])
88
+ lambda {
89
+ faulty_table.rows_hash
90
+ }.should raise_error('The table must have exactly 2 columns')
91
+ end
92
+ end
72
93
 
73
94
  it "should allow renaming columns" do
74
95
  table2 = @table.map_headers('one' => :three)
@@ -32,6 +32,6 @@ describe Proc do
32
32
 
33
33
  it "should remove extraneous path info for file" do
34
34
  proc = lambda {|a,b|}
35
- proc.file_colon_line.should == "spec/cucumber/core_ext/proc_spec.rb:34"
35
+ proc.file_colon_line.should == "specs/cucumber/core_ext/proc_spec.rb:34"
36
36
  end
37
37
  end
@@ -82,6 +82,14 @@ module Cucumber
82
82
  })
83
83
  end
84
84
 
85
+ it "should recognise several quoted words in name and make according regexp and args" do
86
+ StepDefinition.snippet_text('Given', 'A "first" and "second" arg').should == unindented(%{
87
+ Given /^A "([^\\"]*)" and "([^\\"]*)" arg$/ do |arg1, arg2|
88
+ pending
89
+ end
90
+ })
91
+ end
92
+
85
93
  it "should not use quote group when there are no quotes" do
86
94
  StepDefinition.snippet_text('Given', 'A first arg').should == unindented(%{
87
95
  Given /^A first arg$/ do
@@ -19,7 +19,7 @@ module Cucumber
19
19
  format.should == "it [snows] in [april]"
20
20
  end
21
21
 
22
- it "should raise Ambiguous error when multiple step definitions match" do
22
+ it "should raise Ambiguous error with guess hint when multiple step definitions match" do
23
23
  @step_mother.Given(/Three (.*) mice/) {|disability|}
24
24
  @step_mother.Given(/Three blind (.*)/) {|animal|}
25
25
 
@@ -27,8 +27,24 @@ module Cucumber
27
27
  @step_mother.step_match("Three blind mice")
28
28
  end.should raise_error(Ambiguous, %{Ambiguous match of "Three blind mice":
29
29
 
30
- spec/cucumber/step_mother_spec.rb:23:in `/Three (.*) mice/'
31
- spec/cucumber/step_mother_spec.rb:24:in `/Three blind (.*)/'
30
+ specs/cucumber/step_mother_spec.rb:23:in `/Three (.*) mice/'
31
+ specs/cucumber/step_mother_spec.rb:24:in `/Three blind (.*)/'
32
+
33
+ You can run again with --guess to make Cucumber be more smart about it
34
+ })
35
+ end
36
+
37
+ it "should not show --guess hint when --guess is used" do
38
+ @step_mother.options = {:guess => true}
39
+ @step_mother.Given(/Three (.*) mice/) {|disability|}
40
+ @step_mother.Given(/Three cute (.*)/) {|animal|}
41
+
42
+ lambda do
43
+ @step_mother.step_match("Three cute mice")
44
+ end.should raise_error(Ambiguous, %{Ambiguous match of "Three cute mice":
45
+
46
+ specs/cucumber/step_mother_spec.rb:39:in `/Three (.*) mice/'
47
+ specs/cucumber/step_mother_spec.rb:40:in `/Three cute (.*)/'
32
48
 
33
49
  })
34
50
  end
File without changes
File without changes
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cucumber
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - "Aslak Helles\xC3\xB8y"
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-03-25 00:00:00 +01:00
12
+ date: 2009-03-30 00:00:00 +02:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -30,7 +30,7 @@ dependencies:
30
30
  requirements:
31
31
  - - ">="
32
32
  - !ruby/object:Gem::Version
33
- version: 1.2.4
33
+ version: 1.2.5
34
34
  version:
35
35
  - !ruby/object:Gem::Dependency
36
36
  name: polyglot
@@ -40,7 +40,7 @@ dependencies:
40
40
  requirements:
41
41
  - - ">="
42
42
  - !ruby/object:Gem::Version
43
- version: 0.2.4
43
+ version: 0.2.5
44
44
  version:
45
45
  - !ruby/object:Gem::Dependency
46
46
  name: diff-lcs
@@ -70,7 +70,7 @@ dependencies:
70
70
  requirements:
71
71
  - - ">="
72
72
  - !ruby/object:Gem::Version
73
- version: 1.8.3
73
+ version: 1.11.0
74
74
  version:
75
75
  description: Executable Feature scenarios
76
76
  email:
@@ -257,10 +257,12 @@ files:
257
257
  - examples/tickets/features/180.feature
258
258
  - examples/tickets/features/236.feature
259
259
  - examples/tickets/features/241.feature
260
+ - examples/tickets/features/246.feature
260
261
  - examples/tickets/features/248.feature
261
262
  - examples/tickets/features/lib/eatting_machine.rb
262
263
  - examples/tickets/features/lib/pantry.rb
263
264
  - examples/tickets/features/scenario_outline.feature
265
+ - examples/tickets/features/step_definitons/246_steps.rb
264
266
  - examples/tickets/features/step_definitons/248_steps.rb
265
267
  - examples/tickets/features/step_definitons/scenario_outline_steps.rb
266
268
  - examples/tickets/features/step_definitons/tickets_steps.rb
@@ -363,53 +365,53 @@ files:
363
365
  - rails_generators/feature/feature_generator.rb
364
366
  - rails_generators/feature/templates/feature.erb
365
367
  - rails_generators/feature/templates/steps.erb
366
- - spec/cucumber/ast/background_spec.rb
367
- - spec/cucumber/ast/feature_factory.rb
368
- - spec/cucumber/ast/feature_spec.rb
369
- - spec/cucumber/ast/py_string_spec.rb
370
- - spec/cucumber/ast/scenario_outline_spec.rb
371
- - spec/cucumber/ast/scenario_spec.rb
372
- - spec/cucumber/ast/step_collection_spec.rb
373
- - spec/cucumber/ast/step_spec.rb
374
- - spec/cucumber/ast/table_spec.rb
375
- - spec/cucumber/ast/tags_spec.rb
376
- - spec/cucumber/broadcaster_spec.rb
377
- - spec/cucumber/cli/configuration_spec.rb
378
- - spec/cucumber/cli/main_spec.rb
379
- - spec/cucumber/core_ext/proc_spec.rb
380
- - spec/cucumber/core_ext/string_spec.rb
381
- - spec/cucumber/formatter/ansicolor_spec.rb
382
- - spec/cucumber/formatter/color_io_spec.rb
383
- - spec/cucumber/formatter/html/cucumber.css
384
- - spec/cucumber/formatter/html/cucumber.js
385
- - spec/cucumber/formatter/html/index.html
386
- - spec/cucumber/formatter/html/jquery-1.3.min.js
387
- - spec/cucumber/formatter/html/jquery.uitableedit.js
388
- - spec/cucumber/formatters/profile_formatter_spec.rb
389
- - spec/cucumber/parser/feature_parser_spec.rb
390
- - spec/cucumber/parser/table_parser_spec.rb
391
- - spec/cucumber/rails/stubs/mini_rails.rb
392
- - spec/cucumber/rails/stubs/test_help.rb
393
- - spec/cucumber/rails/world_spec.rb
394
- - spec/cucumber/sell_cucumbers.feature
395
- - spec/cucumber/step_definition_spec.rb
396
- - spec/cucumber/step_mother_spec.rb
397
- - spec/cucumber/treetop_parser/empty_feature.feature
398
- - spec/cucumber/treetop_parser/empty_scenario.feature
399
- - spec/cucumber/treetop_parser/empty_scenario_outline.feature
400
- - spec/cucumber/treetop_parser/fit_scenario.feature
401
- - spec/cucumber/treetop_parser/given_scenario.feature
402
- - spec/cucumber/treetop_parser/invalid_scenario_outlines.feature
403
- - spec/cucumber/treetop_parser/multiline_steps.feature
404
- - spec/cucumber/treetop_parser/multiple_tables.feature
405
- - spec/cucumber/treetop_parser/scenario_outline.feature
406
- - spec/cucumber/treetop_parser/spaces.feature
407
- - spec/cucumber/treetop_parser/test_dos.feature
408
- - spec/cucumber/treetop_parser/with_comments.feature
409
- - spec/cucumber/treetop_parser/with_tags.feature
410
- - spec/cucumber/world/pending_spec.rb
411
- - spec/spec.opts
412
- - spec/spec_helper.rb
368
+ - specs/cucumber/ast/background_spec.rb
369
+ - specs/cucumber/ast/feature_factory.rb
370
+ - specs/cucumber/ast/feature_spec.rb
371
+ - specs/cucumber/ast/py_string_spec.rb
372
+ - specs/cucumber/ast/scenario_outline_spec.rb
373
+ - specs/cucumber/ast/scenario_spec.rb
374
+ - specs/cucumber/ast/step_collection_spec.rb
375
+ - specs/cucumber/ast/step_spec.rb
376
+ - specs/cucumber/ast/table_spec.rb
377
+ - specs/cucumber/ast/tags_spec.rb
378
+ - specs/cucumber/broadcaster_spec.rb
379
+ - specs/cucumber/cli/configuration_spec.rb
380
+ - specs/cucumber/cli/main_spec.rb
381
+ - specs/cucumber/core_ext/proc_spec.rb
382
+ - specs/cucumber/core_ext/string_spec.rb
383
+ - specs/cucumber/formatter/ansicolor_spec.rb
384
+ - specs/cucumber/formatter/color_io_spec.rb
385
+ - specs/cucumber/formatter/html/cucumber.css
386
+ - specs/cucumber/formatter/html/cucumber.js
387
+ - specs/cucumber/formatter/html/index.html
388
+ - specs/cucumber/formatter/html/jquery-1.3.min.js
389
+ - specs/cucumber/formatter/html/jquery.uitableedit.js
390
+ - specs/cucumber/formatters/profile_formatter_spec.rb
391
+ - specs/cucumber/parser/feature_parser_spec.rb
392
+ - specs/cucumber/parser/table_parser_spec.rb
393
+ - specs/cucumber/rails/stubs/mini_rails.rb
394
+ - specs/cucumber/rails/stubs/test_help.rb
395
+ - specs/cucumber/rails/world_spec.rb
396
+ - specs/cucumber/sell_cucumbers.feature
397
+ - specs/cucumber/step_definition_spec.rb
398
+ - specs/cucumber/step_mother_spec.rb
399
+ - specs/cucumber/treetop_parser/empty_feature.feature
400
+ - specs/cucumber/treetop_parser/empty_scenario.feature
401
+ - specs/cucumber/treetop_parser/empty_scenario_outline.feature
402
+ - specs/cucumber/treetop_parser/fit_scenario.feature
403
+ - specs/cucumber/treetop_parser/given_scenario.feature
404
+ - specs/cucumber/treetop_parser/invalid_scenario_outlines.feature
405
+ - specs/cucumber/treetop_parser/multiline_steps.feature
406
+ - specs/cucumber/treetop_parser/multiple_tables.feature
407
+ - specs/cucumber/treetop_parser/scenario_outline.feature
408
+ - specs/cucumber/treetop_parser/spaces.feature
409
+ - specs/cucumber/treetop_parser/test_dos.feature
410
+ - specs/cucumber/treetop_parser/with_comments.feature
411
+ - specs/cucumber/treetop_parser/with_tags.feature
412
+ - specs/cucumber/world/pending_spec.rb
413
+ - specs/spec.opts
414
+ - specs/spec_helper.rb
413
415
  has_rdoc: true
414
416
  homepage: http://cukes.info
415
417
  post_install_message: