cucumber 0.4.0 → 0.4.1
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.
- data/.gitattributes +1 -0
- data/.gitignore +17 -0
- data/History.txt +27 -0
- data/{License.txt → LICENSE} +0 -0
- data/Manifest.txt +0 -487
- data/README.rdoc +26 -0
- data/Rakefile +54 -7
- data/VERSION.yml +4 -0
- data/bin/cucumber +1 -1
- data/cucumber.gemspec +743 -0
- data/cucumber.yml +3 -1
- data/examples/cs/.gitignore +1 -0
- data/examples/i18n/Rakefile +1 -1
- data/examples/i18n/de/.gitignore +1 -0
- data/examples/i18n/en/.gitignore +1 -0
- data/examples/i18n/fi/.gitignore +1 -0
- data/examples/i18n/hu/.gitignore +1 -0
- data/examples/i18n/id/.gitignore +1 -0
- data/examples/i18n/ja/.gitignore +1 -0
- data/examples/i18n/ko/.gitignore +1 -0
- data/examples/i18n/lt/.gitignore +1 -0
- data/examples/i18n/pl/.gitignore +1 -0
- data/examples/i18n/sk/.gitignore +1 -0
- data/examples/i18n/sr-latn/Rakefile +6 -0
- data/examples/i18n/sr-latn/features/sabiranje.feature +18 -0
- data/examples/i18n/sr-latn/features/step_definitons/calculator_steps.rb +24 -0
- data/examples/i18n/sr-latn/lib/calculator.rb +12 -0
- data/examples/i18n/sr/Rakefile +6 -0
- data/examples/i18n/sr/features/sabiranje.feature +18 -0
- data/examples/i18n/sr/features/step_definitons/calculator_steps.rb +24 -0
- data/examples/i18n/sr/lib/calculator.rb +12 -0
- data/examples/i18n/tr/.gitignore +1 -0
- data/examples/i18n/tr/features/{bo/314/210lme.feature → bolme.feature} +0 -0
- data/examples/i18n/tr/features/step_definitons/{hesap_makinesi_ad/304/261mlar/304/261.rb → hesap_makinesi_adimlari.rb} +0 -0
- data/examples/i18n/zh-TW/.gitignore +1 -0
- data/examples/java/.gitignore +1 -0
- data/examples/java/src/.gitignore +1 -0
- data/examples/java/src/cucumber/demo/.gitignore +1 -0
- data/examples/python/lib/.gitignore +1 -0
- data/examples/ruby2python/lib/.gitignore +1 -0
- data/examples/self_test/.gitignore +1 -0
- data/features/background.feature +0 -3
- data/features/bug_464.feature +16 -0
- data/features/cucumber_cli.feature +4 -6
- data/features/cucumber_cli_diff_disabled.feature +0 -2
- data/features/cucumber_cli_outlines.feature +0 -4
- data/features/drb_server_integration.feature +1 -0
- data/features/exception_in_after_block.feature +0 -2
- data/features/exception_in_after_step_block.feature +0 -2
- data/features/exception_in_before_block.feature +0 -2
- data/features/junit_formatter.feature +0 -1
- data/features/language_help.feature +40 -38
- data/features/listener_debugger_formatter.feature +41 -0
- data/features/post_configuration_hook.feature +1 -1
- data/features/report_called_undefined_steps.feature +0 -1
- data/features/step_definitions/simplest_steps.rb +0 -3
- data/features/support/env.rb +5 -1
- data/features/transform.feature +1 -1
- data/features/usage_and_stepdefs_formatter.feature +1 -3
- data/features/work_in_progress.feature +0 -2
- data/gem_tasks/features.rake +6 -1
- data/gem_tasks/rspec.rake +5 -35
- data/gem_tasks/sdoc.rake +10 -5
- data/lib/autotest/cucumber_mixin.rb +6 -0
- data/lib/cucumber.rb +0 -1
- data/lib/cucumber/ast/step_invocation.rb +3 -0
- data/lib/cucumber/cli/configuration.rb +7 -2
- data/lib/cucumber/cli/options.rb +8 -7
- data/lib/cucumber/core_ext/proc.rb +1 -0
- data/lib/cucumber/formatter/ansicolor.rb +0 -9
- data/lib/cucumber/formatter/console.rb +14 -12
- data/lib/cucumber/formatter/debug.rb +33 -0
- data/lib/cucumber/formatter/pretty.rb +2 -2
- data/lib/cucumber/formatter/rerun.rb +9 -6
- data/lib/cucumber/language_support/language_methods.rb +2 -2
- data/lib/cucumber/languages.yml +37 -1
- data/lib/cucumber/platform.rb +3 -1
- data/lib/cucumber/py_support/py_language.py +1 -1
- data/lib/cucumber/py_support/py_language.rb +2 -2
- data/lib/cucumber/rb_support/rb_language.rb +6 -7
- data/lib/cucumber/rb_support/rb_step_definition.rb +0 -1
- data/lib/cucumber/rb_support/rb_world.rb +1 -2
- data/lib/cucumber/step_match.rb +10 -7
- data/lib/cucumber/step_mother.rb +6 -3
- data/rails_generators/cucumber/cucumber_generator.rb +49 -6
- data/spec/cucumber/cli/options_spec.rb +1 -1
- data/spec/cucumber/formatter/console_spec.rb +20 -0
- data/spec/cucumber/step_match_spec.rb +10 -5
- metadata +258 -43
- data/README.txt +0 -4
- data/config/hoe.rb +0 -84
- data/config/requirements.rb +0 -15
- data/gem_tasks/deployment.rake +0 -11
- data/gem_tasks/gemspec.rake +0 -10
- data/lib/cucumber/language_support/step_definition_methods.rb +0 -23
- data/lib/cucumber/version.rb +0 -10
@@ -4,8 +4,8 @@ require 'cucumber/step_definition_light'
|
|
4
4
|
module Cucumber
|
5
5
|
module LanguageSupport
|
6
6
|
module LanguageMethods
|
7
|
-
def create_step_match(step_definition, step_name,
|
8
|
-
StepMatch.new(step_definition, step_name,
|
7
|
+
def create_step_match(step_definition, step_name, name_to_report, step_arguments)
|
8
|
+
StepMatch.new(step_definition, step_name, name_to_report, step_arguments)
|
9
9
|
end
|
10
10
|
|
11
11
|
def before(scenario)
|
data/lib/cucumber/languages.yml
CHANGED
@@ -324,7 +324,7 @@
|
|
324
324
|
when: もし
|
325
325
|
then: ならば
|
326
326
|
and: かつ
|
327
|
-
but:
|
327
|
+
but: しかし|但し|ただし
|
328
328
|
space_after_keyword: false
|
329
329
|
"ko":
|
330
330
|
name: Korean
|
@@ -435,8 +435,11 @@
|
|
435
435
|
name: Romanian
|
436
436
|
native: română
|
437
437
|
encoding: UTF-8
|
438
|
+
background: Conditii
|
438
439
|
feature: Functionalitate
|
439
440
|
scenario: Scenariu
|
441
|
+
scenario_outline: Scenariul de sablon
|
442
|
+
examples: Exemplele
|
440
443
|
given: Daca
|
441
444
|
when: Cand
|
442
445
|
then: Atunci
|
@@ -447,8 +450,11 @@
|
|
447
450
|
name: Romanian (diacritical)
|
448
451
|
native: română (diacritical)
|
449
452
|
encoding: UTF-8
|
453
|
+
background: Condiţii
|
450
454
|
feature: Funcționalitate
|
451
455
|
scenario: Scenariu
|
456
|
+
scenario_outline: Scenariul de şablon
|
457
|
+
examples: Exemplele
|
452
458
|
given: Dacă
|
453
459
|
when: Când
|
454
460
|
then: Atunci
|
@@ -500,6 +506,36 @@
|
|
500
506
|
and: A
|
501
507
|
but: Ale
|
502
508
|
space_after_keyword: true
|
509
|
+
"sr-Latn":
|
510
|
+
name: Serbian_latin
|
511
|
+
native: Srpski_latinica
|
512
|
+
encoding: UTF-8
|
513
|
+
feature: Funkcionalnost|Mogućnost|Mogucnost|Osobina
|
514
|
+
background: Kontekst|Osnova|Pozadina
|
515
|
+
scenario: Scenario|Primer
|
516
|
+
scenario_outline: Struktura scenarija|Skica|Koncept
|
517
|
+
examples: Primeri|Scenariji
|
518
|
+
given: Zadato|Zadate|Zatati
|
519
|
+
when: Kada|Kad
|
520
|
+
then: Onda
|
521
|
+
and: I
|
522
|
+
but: Ali
|
523
|
+
space_after_keyword: true
|
524
|
+
"sr":
|
525
|
+
name: Serbian
|
526
|
+
native: Српски
|
527
|
+
encoding: UTF-8
|
528
|
+
feature: Функционалност|Могућност|Особина
|
529
|
+
background: Контекст|Основа|Позадина
|
530
|
+
scenario: Сценарио|Пример
|
531
|
+
scenario_outline: Структура сценарија|Скица|Концепт
|
532
|
+
examples: Примери|Сценарији
|
533
|
+
given: Задато|Задате|Задати
|
534
|
+
when: Када|Кад
|
535
|
+
then: Онда
|
536
|
+
and: И
|
537
|
+
but: Али
|
538
|
+
space_after_keyword: true
|
503
539
|
"tr":
|
504
540
|
name: Turkish
|
505
541
|
native: Türkçe
|
data/lib/cucumber/platform.rb
CHANGED
@@ -4,12 +4,14 @@ require 'rbconfig'
|
|
4
4
|
require 'yaml'
|
5
5
|
|
6
6
|
module Cucumber
|
7
|
+
version = YAML.load_file(File.dirname(__FILE__) + '/../../VERSION.yml')
|
8
|
+
VERSION = "#{version[:major]}.#{version[:minor]}.#{version[:patch]}"
|
7
9
|
LANGUAGE_FILE = File.expand_path(File.dirname(__FILE__) + '/languages.yml')
|
8
10
|
LANGUAGES = YAML.load_file(LANGUAGE_FILE)
|
9
11
|
BINARY = File.expand_path(File.dirname(__FILE__) + '/../../bin/cucumber')
|
10
12
|
LIBDIR = File.expand_path(File.dirname(__FILE__) + '/../../lib')
|
11
13
|
JRUBY = defined?(JRUBY_VERSION)
|
12
|
-
IRONRUBY = Config::CONFIG['sitedir'] =~ /IronRuby/
|
14
|
+
IRONRUBY = Config::CONFIG['sitedir'] =~ /IronRuby/i
|
13
15
|
WINDOWS = Config::CONFIG['host_os'] =~ /mswin|mingw/
|
14
16
|
WINDOWS_MRI = WINDOWS && !JRUBY && !IRONRUBY
|
15
17
|
RAILS = defined?(Rails)
|
@@ -43,8 +43,8 @@ module Cucumber
|
|
43
43
|
@step_def_files.each{|f| import(f)}
|
44
44
|
end
|
45
45
|
|
46
|
-
def step_matches(step_name,
|
47
|
-
@delegate.step_matches(step_name,
|
46
|
+
def step_matches(step_name, name_to_report)
|
47
|
+
@delegate.step_matches(step_name, name_to_report)
|
48
48
|
end
|
49
49
|
|
50
50
|
private
|
@@ -3,7 +3,6 @@ require 'cucumber/rb_support/rb_world'
|
|
3
3
|
require 'cucumber/rb_support/rb_step_definition'
|
4
4
|
require 'cucumber/rb_support/rb_hook'
|
5
5
|
require 'cucumber/rb_support/rb_transform'
|
6
|
-
require 'cucumber/rb_support/regexp_argument_matcher'
|
7
6
|
|
8
7
|
module Cucumber
|
9
8
|
module RbSupport
|
@@ -57,16 +56,16 @@ module Cucumber
|
|
57
56
|
end
|
58
57
|
end
|
59
58
|
|
60
|
-
def step_matches(
|
59
|
+
def step_matches(name_to_match, name_to_format)
|
61
60
|
@step_definitions.map do |step_definition|
|
62
|
-
step_definition.
|
61
|
+
if(arguments = step_definition.arguments_from(name_to_match))
|
62
|
+
StepMatch.new(step_definition, name_to_match, name_to_format, arguments)
|
63
|
+
else
|
64
|
+
nil
|
65
|
+
end
|
63
66
|
end.compact
|
64
67
|
end
|
65
68
|
|
66
|
-
def arguments_from(regexp, step_name)
|
67
|
-
@regexp_argument_matcher.arguments_from(regexp, step_name)
|
68
|
-
end
|
69
|
-
|
70
69
|
def snippet_text(step_keyword, step_name, multiline_arg_class)
|
71
70
|
escaped = Regexp.escape(step_name).gsub('\ ', ' ').gsub('/', '\/')
|
72
71
|
escaped = escaped.gsub(PARAM_PATTERN, ESCAPED_PARAM_PATTERN)
|
@@ -20,8 +20,7 @@ module Cucumber
|
|
20
20
|
# the same i18n as RbDsl.
|
21
21
|
def __cucumber_invoke(name, multiline_argument=nil) #:nodoc:
|
22
22
|
begin
|
23
|
-
|
24
|
-
step_match.invoke(multiline_argument)
|
23
|
+
@__cucumber_step_mother.invoke(name, multiline_argument)
|
25
24
|
rescue Exception => e
|
26
25
|
e.nested! if Undefined === e
|
27
26
|
raise e
|
data/lib/cucumber/step_match.rb
CHANGED
@@ -2,8 +2,11 @@ module Cucumber
|
|
2
2
|
class StepMatch #:nodoc:
|
3
3
|
attr_reader :step_definition
|
4
4
|
|
5
|
-
|
6
|
-
|
5
|
+
# Creates a new StepMatch. The +name_to_report+ argument is what's reported, unless it's is,
|
6
|
+
# in which case +name_to_report+ is used instead.
|
7
|
+
#
|
8
|
+
def initialize(step_definition, name_to_match, name_to_report, step_arguments)
|
9
|
+
@step_definition, @name_to_match, @name_to_report, @step_arguments = step_definition, name_to_match, name_to_report, step_arguments
|
7
10
|
end
|
8
11
|
|
9
12
|
def args
|
@@ -11,7 +14,7 @@ module Cucumber
|
|
11
14
|
end
|
12
15
|
|
13
16
|
def name
|
14
|
-
@
|
17
|
+
@name_to_report
|
15
18
|
end
|
16
19
|
|
17
20
|
def invoke(multiline_arg)
|
@@ -36,19 +39,19 @@ module Cucumber
|
|
36
39
|
# lambda { |param| "[#{param}]" }
|
37
40
|
#
|
38
41
|
def format_args(format = lambda{|a| a}, &proc)
|
39
|
-
@
|
42
|
+
@name_to_report || replace_arguments(@name_to_match, @step_arguments, format, &proc)
|
40
43
|
end
|
41
|
-
|
44
|
+
|
42
45
|
def file_colon_line
|
43
46
|
@step_definition.file_colon_line
|
44
47
|
end
|
45
48
|
|
46
49
|
def backtrace_line
|
47
|
-
@step_definition.
|
50
|
+
"#{file_colon_line}:in `#{@step_definition.regexp_source}'"
|
48
51
|
end
|
49
52
|
|
50
53
|
def text_length
|
51
|
-
@step_definition.
|
54
|
+
@step_definition.regexp_source.jlength
|
52
55
|
end
|
53
56
|
|
54
57
|
def replace_arguments(string, step_arguments, format, &proc)
|
data/lib/cucumber/step_mother.rb
CHANGED
@@ -2,7 +2,6 @@ require 'cucumber/constantize'
|
|
2
2
|
require 'cucumber/core_ext/instance_exec'
|
3
3
|
require 'cucumber/parser/natural_language'
|
4
4
|
require 'cucumber/language_support/language_methods'
|
5
|
-
require 'cucumber/language_support/step_definition_methods'
|
6
5
|
require 'cucumber/formatter/duration'
|
7
6
|
|
8
7
|
module Cucumber
|
@@ -140,9 +139,13 @@ module Cucumber
|
|
140
139
|
end
|
141
140
|
end
|
142
141
|
|
143
|
-
def
|
142
|
+
def invoke(step_name, multiline_argument=nil)
|
143
|
+
step_match(step_name).invoke(multiline_argument)
|
144
|
+
end
|
145
|
+
|
146
|
+
def step_match(step_name, name_to_report=nil) #:nodoc:
|
144
147
|
matches = @programming_languages.map do |programming_language|
|
145
|
-
programming_language.step_matches(step_name,
|
148
|
+
programming_language.step_matches(step_name, name_to_report)
|
146
149
|
end.flatten
|
147
150
|
raise Undefined.new(step_name) if matches.empty?
|
148
151
|
matches = best_matches(step_name, matches) if matches.size > 1 && options[:guess]
|
@@ -1,5 +1,5 @@
|
|
1
1
|
require 'rbconfig'
|
2
|
-
require 'cucumber/
|
2
|
+
require 'cucumber/platform'
|
3
3
|
|
4
4
|
# This generator bootstraps a Rails project for use with Cucumber
|
5
5
|
class CucumberGenerator < Rails::Generator::Base
|
@@ -13,7 +13,7 @@ class CucumberGenerator < Rails::Generator::Base
|
|
13
13
|
m.directory 'features/step_definitions'
|
14
14
|
m.template 'webrat_steps.rb', 'features/step_definitions/webrat_steps.rb'
|
15
15
|
m.template'cucumber_environment.rb', 'config/environments/cucumber.rb',
|
16
|
-
:assigns => { :cucumber_version => ::Cucumber::VERSION
|
16
|
+
:assigns => { :cucumber_version => ::Cucumber::VERSION }
|
17
17
|
|
18
18
|
m.gsub_file 'config/database.yml', /test:.*\n/, "test: &TEST\n"
|
19
19
|
m.gsub_file 'config/database.yml', /\z/, "\ncucumber:\n <<: *TEST"
|
@@ -37,27 +37,70 @@ class CucumberGenerator < Rails::Generator::Base
|
|
37
37
|
end
|
38
38
|
|
39
39
|
def framework
|
40
|
-
options[:framework]
|
40
|
+
options[:framework] ||= detect_default_framework!
|
41
41
|
end
|
42
|
-
|
42
|
+
|
43
43
|
def spork?
|
44
44
|
options[:spork]
|
45
45
|
end
|
46
46
|
|
47
47
|
protected
|
48
48
|
|
49
|
+
def detect_default_framework!
|
50
|
+
require 'rubygems'
|
51
|
+
rspec! || testunit!
|
52
|
+
raise "I don't know what test framework you want. Use --rspec or --testunit, or gem install rspec or test-unit." unless @default_framework
|
53
|
+
@default_framework
|
54
|
+
end
|
55
|
+
|
56
|
+
def rspec!
|
57
|
+
begin
|
58
|
+
require 'spec'
|
59
|
+
@default_framework = :rspec
|
60
|
+
rescue LoadError
|
61
|
+
false
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
def testunit!
|
66
|
+
begin
|
67
|
+
require 'test/unit'
|
68
|
+
@default_framework = :testunit
|
69
|
+
rescue LoadError
|
70
|
+
false
|
71
|
+
end
|
72
|
+
end
|
73
|
+
|
49
74
|
def banner
|
50
75
|
"Usage: #{$0} cucumber"
|
51
76
|
end
|
52
77
|
|
78
|
+
def after_generate
|
79
|
+
if @default_framework
|
80
|
+
puts <<-WARNING
|
81
|
+
|
82
|
+
(::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::)
|
83
|
+
|
84
|
+
(::) T E S T F R A M E W O R K A L E R T (::)
|
85
|
+
|
86
|
+
You didn't explicitly generate with --rspec or --testunit, so I looked at
|
87
|
+
your gems and saw that you had #{@default_framework} installed, so I went with that.
|
88
|
+
If you want something else, be specific about it. Otherwise, relax.
|
89
|
+
|
90
|
+
(::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::)
|
91
|
+
|
92
|
+
WARNING
|
93
|
+
end
|
94
|
+
end
|
95
|
+
|
53
96
|
def add_options!(opt)
|
54
97
|
opt.separator ''
|
55
98
|
opt.separator 'Options:'
|
56
|
-
opt.on('--rspec',
|
99
|
+
opt.on('--rspec', "Setup cucumber for use with RSpec") do |value|
|
57
100
|
options[:framework] = :rspec
|
58
101
|
end
|
59
102
|
|
60
|
-
opt.on('--testunit',
|
103
|
+
opt.on('--testunit', "Setup cucumber for use with test/unit") do |value|
|
61
104
|
options[:framework] = :testunit
|
62
105
|
end
|
63
106
|
|
@@ -255,7 +255,7 @@ module Cli
|
|
255
255
|
context '--version' do
|
256
256
|
it "displays Cucumber's version" do
|
257
257
|
after_parsing('--version') do
|
258
|
-
output_stream.string.should =~ /#{VERSION
|
258
|
+
output_stream.string.should =~ /#{Cucumber::VERSION}/
|
259
259
|
end
|
260
260
|
end
|
261
261
|
it "exits the program" do
|
@@ -0,0 +1,20 @@
|
|
1
|
+
require File.dirname(__FILE__) + '/../../spec_helper'
|
2
|
+
require 'cucumber/formatter/console'
|
3
|
+
|
4
|
+
module Cucumber
|
5
|
+
module Formatter
|
6
|
+
describe Console do
|
7
|
+
include Console
|
8
|
+
|
9
|
+
before(:each) do
|
10
|
+
@io = mock('console output')
|
11
|
+
end
|
12
|
+
|
13
|
+
it "should not raise an error when there are no tags" do
|
14
|
+
@tag_occurrences = nil
|
15
|
+
|
16
|
+
lambda{print_tag_limit_warnings(:tag_names => {'@wip', 2})}.should_not raise_error
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
@@ -12,28 +12,33 @@ module Cucumber
|
|
12
12
|
RbSupport::RbStepDefinition.new(@rb_language, regexp, lambda{})
|
13
13
|
end
|
14
14
|
|
15
|
+
def step_match(regexp, name)
|
16
|
+
stepdef = stepdef(regexp)
|
17
|
+
StepMatch.new(stepdef, name, nil, stepdef.arguments_from(name))
|
18
|
+
end
|
19
|
+
|
15
20
|
it "should format groups with format string" do
|
16
|
-
m =
|
21
|
+
m = step_match(/I (\w+) (\d+) (\w+) this (\w+)/, "I ate 1 egg this morning")
|
17
22
|
m.format_args("<span>%s</span>").should == "I <span>ate</span> <span>1</span> <span>egg</span> this <span>morning</span>"
|
18
23
|
end
|
19
24
|
|
20
25
|
it "should format groups with format string when there are dupes" do
|
21
|
-
m =
|
26
|
+
m = step_match(/I (\w+) (\d+) (\w+) this (\w+)/, "I bob 1 bo this bobs")
|
22
27
|
m.format_args("<span>%s</span>").should == "I <span>bob</span> <span>1</span> <span>bo</span> this <span>bobs</span>"
|
23
28
|
end
|
24
29
|
|
25
30
|
it "should format groups with block" do
|
26
|
-
m =
|
31
|
+
m = step_match(/I (\w+) (\d+) (\w+) this (\w+)/, "I ate 1 egg this morning")
|
27
32
|
m.format_args(&lambda{|m| "<span>#{m}</span>"}).should == "I <span>ate</span> <span>1</span> <span>egg</span> this <span>morning</span>"
|
28
33
|
end
|
29
34
|
|
30
35
|
it "should format groups with proc object" do
|
31
|
-
m =
|
36
|
+
m = step_match(/I (\w+) (\d+) (\w+) this (\w+)/, "I ate 1 egg this morning")
|
32
37
|
m.format_args(lambda{|m| "<span>#{m}</span>"}).should == "I <span>ate</span> <span>1</span> <span>egg</span> this <span>morning</span>"
|
33
38
|
end
|
34
39
|
|
35
40
|
it "should format groups even when first group is optional and not matched" do
|
36
|
-
m =
|
41
|
+
m = step_match(/should( not)? be flashed '([^']*?)'$/, "I should be flashed 'Login failed.'")
|
37
42
|
m.format_args("<span>%s</span>").should == "I should be flashed '<span>Login failed.</span>'"
|
38
43
|
end
|
39
44
|
end
|
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.4.
|
4
|
+
version: 0.4.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- "Aslak Helles\xC3\xB8y"
|
@@ -9,8 +9,8 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-10-
|
13
|
-
default_executable:
|
12
|
+
date: 2009-10-14 00:00:00 +02:00
|
13
|
+
default_executable: cucumber
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: term-ansicolor
|
@@ -18,9 +18,9 @@ dependencies:
|
|
18
18
|
version_requirement:
|
19
19
|
version_requirements: !ruby/object:Gem::Requirement
|
20
20
|
requirements:
|
21
|
-
- - "
|
21
|
+
- - "="
|
22
22
|
- !ruby/object:Gem::Version
|
23
|
-
version: 1.0.
|
23
|
+
version: 1.0.4
|
24
24
|
version:
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
26
|
name: treetop
|
@@ -28,7 +28,7 @@ dependencies:
|
|
28
28
|
version_requirement:
|
29
29
|
version_requirements: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- - "
|
31
|
+
- - "="
|
32
32
|
- !ruby/object:Gem::Version
|
33
33
|
version: 1.4.2
|
34
34
|
version:
|
@@ -38,53 +38,92 @@ dependencies:
|
|
38
38
|
version_requirement:
|
39
39
|
version_requirements: !ruby/object:Gem::Requirement
|
40
40
|
requirements:
|
41
|
-
- - "
|
41
|
+
- - "="
|
42
42
|
- !ruby/object:Gem::Version
|
43
43
|
version: 0.2.9
|
44
44
|
version:
|
45
|
+
- !ruby/object:Gem::Dependency
|
46
|
+
name: builder
|
47
|
+
type: :runtime
|
48
|
+
version_requirement:
|
49
|
+
version_requirements: !ruby/object:Gem::Requirement
|
50
|
+
requirements:
|
51
|
+
- - "="
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: 2.1.2
|
54
|
+
version:
|
45
55
|
- !ruby/object:Gem::Dependency
|
46
56
|
name: diff-lcs
|
47
57
|
type: :runtime
|
48
58
|
version_requirement:
|
49
59
|
version_requirements: !ruby/object:Gem::Requirement
|
50
60
|
requirements:
|
51
|
-
- - "
|
61
|
+
- - "="
|
52
62
|
- !ruby/object:Gem::Version
|
53
63
|
version: 1.1.2
|
54
64
|
version:
|
55
65
|
- !ruby/object:Gem::Dependency
|
56
|
-
name:
|
57
|
-
type: :
|
66
|
+
name: nokogiri
|
67
|
+
type: :development
|
58
68
|
version_requirement:
|
59
69
|
version_requirements: !ruby/object:Gem::Requirement
|
60
70
|
requirements:
|
61
|
-
- - "
|
71
|
+
- - "="
|
62
72
|
- !ruby/object:Gem::Version
|
63
|
-
version:
|
73
|
+
version: 1.3.3
|
74
|
+
version:
|
75
|
+
- !ruby/object:Gem::Dependency
|
76
|
+
name: prawn
|
77
|
+
type: :development
|
78
|
+
version_requirement:
|
79
|
+
version_requirements: !ruby/object:Gem::Requirement
|
80
|
+
requirements:
|
81
|
+
- - "="
|
82
|
+
- !ruby/object:Gem::Version
|
83
|
+
version: 0.5.1
|
84
|
+
version:
|
85
|
+
- !ruby/object:Gem::Dependency
|
86
|
+
name: rspec
|
87
|
+
type: :development
|
88
|
+
version_requirement:
|
89
|
+
version_requirements: !ruby/object:Gem::Requirement
|
90
|
+
requirements:
|
91
|
+
- - "="
|
92
|
+
- !ruby/object:Gem::Version
|
93
|
+
version: 1.2.9
|
64
94
|
version:
|
65
|
-
|
66
|
-
|
67
|
-
|
95
|
+
- !ruby/object:Gem::Dependency
|
96
|
+
name: spork
|
97
|
+
type: :development
|
98
|
+
version_requirement:
|
99
|
+
version_requirements: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - "="
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: 0.7.2
|
104
|
+
version:
|
105
|
+
description: A BDD tool written in Ruby
|
106
|
+
email: cukes@googlegroups.com
|
68
107
|
executables:
|
69
108
|
- cucumber
|
70
109
|
extensions: []
|
71
110
|
|
72
111
|
extra_rdoc_files:
|
73
|
-
-
|
74
|
-
-
|
75
|
-
- Manifest.txt
|
76
|
-
- README.txt
|
77
|
-
- examples/self_test/list-of-features.txt
|
112
|
+
- LICENSE
|
113
|
+
- README.rdoc
|
78
114
|
files:
|
115
|
+
- .gitattributes
|
116
|
+
- .gitignore
|
79
117
|
- History.txt
|
80
|
-
-
|
118
|
+
- LICENSE
|
81
119
|
- Manifest.txt
|
82
|
-
- README.
|
120
|
+
- README.rdoc
|
83
121
|
- Rakefile
|
122
|
+
- VERSION.yml
|
84
123
|
- bin/cucumber
|
85
|
-
-
|
86
|
-
- config/requirements.rb
|
124
|
+
- cucumber.gemspec
|
87
125
|
- cucumber.yml
|
126
|
+
- examples/cs/.gitignore
|
88
127
|
- examples/cs/README.textile
|
89
128
|
- examples/cs/Rakefile
|
90
129
|
- examples/cs/compile.bat
|
@@ -115,6 +154,7 @@ files:
|
|
115
154
|
- examples/i18n/da/features/step_definitons/kalkulator_steps.rb
|
116
155
|
- examples/i18n/da/features/summering.feature
|
117
156
|
- examples/i18n/da/lib/kalkulator.rb
|
157
|
+
- examples/i18n/de/.gitignore
|
118
158
|
- examples/i18n/de/Rakefile
|
119
159
|
- examples/i18n/de/features/addition.feature
|
120
160
|
- examples/i18n/de/features/division.feature
|
@@ -126,6 +166,7 @@ files:
|
|
126
166
|
- examples/i18n/en-lol/features/support/env.rb
|
127
167
|
- examples/i18n/en-lol/lib/basket.rb
|
128
168
|
- examples/i18n/en-lol/lib/belly.rb
|
169
|
+
- examples/i18n/en/.gitignore
|
129
170
|
- examples/i18n/en/Rakefile
|
130
171
|
- examples/i18n/en/features/addition.feature
|
131
172
|
- examples/i18n/en/features/division.feature
|
@@ -140,6 +181,7 @@ files:
|
|
140
181
|
- examples/i18n/et/features/liitmine.feature
|
141
182
|
- examples/i18n/et/features/step_definitions/kalkulaator_steps.rb
|
142
183
|
- examples/i18n/et/lib/kalkulaator.rb
|
184
|
+
- examples/i18n/fi/.gitignore
|
143
185
|
- examples/i18n/fi/Rakefile
|
144
186
|
- examples/i18n/fi/features/jakolasku.feature
|
145
187
|
- examples/i18n/fi/features/step_definitons/laskin_steps.rb
|
@@ -154,11 +196,13 @@ files:
|
|
154
196
|
- examples/i18n/he/features/division.feature
|
155
197
|
- examples/i18n/he/features/step_definitons/calculator_steps.rb
|
156
198
|
- examples/i18n/he/lib/calculator.rb
|
199
|
+
- examples/i18n/hu/.gitignore
|
157
200
|
- examples/i18n/hu/Rakefile
|
158
201
|
- examples/i18n/hu/features/addition.feature
|
159
202
|
- examples/i18n/hu/features/division.feature
|
160
203
|
- examples/i18n/hu/features/step_definitons/calculator_steps.rb
|
161
204
|
- examples/i18n/hu/lib/calculator.rb
|
205
|
+
- examples/i18n/id/.gitignore
|
162
206
|
- examples/i18n/id/Rakefile
|
163
207
|
- examples/i18n/id/features/addition.feature
|
164
208
|
- examples/i18n/id/features/division.feature
|
@@ -168,16 +212,19 @@ files:
|
|
168
212
|
- examples/i18n/it/features/somma.feature
|
169
213
|
- examples/i18n/it/features/step_definitons/calcolatrice_steps.rb
|
170
214
|
- examples/i18n/it/lib/calcolatrice.rb
|
215
|
+
- examples/i18n/ja/.gitignore
|
171
216
|
- examples/i18n/ja/Rakefile
|
172
217
|
- examples/i18n/ja/features/addition.feature
|
173
218
|
- examples/i18n/ja/features/division.feature
|
174
219
|
- examples/i18n/ja/features/step_definitons/calculator_steps.rb
|
175
220
|
- examples/i18n/ja/lib/calculator.rb
|
221
|
+
- examples/i18n/ko/.gitignore
|
176
222
|
- examples/i18n/ko/Rakefile
|
177
223
|
- examples/i18n/ko/features/addition.feature
|
178
224
|
- examples/i18n/ko/features/division.feature
|
179
225
|
- examples/i18n/ko/features/step_definitons/calculator_steps.rb
|
180
226
|
- examples/i18n/ko/lib/calculator.rb
|
227
|
+
- examples/i18n/lt/.gitignore
|
181
228
|
- examples/i18n/lt/Rakefile
|
182
229
|
- examples/i18n/lt/features/addition.feature
|
183
230
|
- examples/i18n/lt/features/division.feature
|
@@ -193,6 +240,7 @@ files:
|
|
193
240
|
- examples/i18n/no/features/summering.feature
|
194
241
|
- examples/i18n/no/features/support/env.rb
|
195
242
|
- examples/i18n/no/lib/kalkulator.rb
|
243
|
+
- examples/i18n/pl/.gitignore
|
196
244
|
- examples/i18n/pl/Rakefile
|
197
245
|
- examples/i18n/pl/features/addition.feature
|
198
246
|
- examples/i18n/pl/features/division.feature
|
@@ -220,14 +268,24 @@ files:
|
|
220
268
|
- examples/i18n/se/features/step_definitons/kalkulator_steps.rb
|
221
269
|
- examples/i18n/se/features/summering.feature
|
222
270
|
- examples/i18n/se/lib/kalkulator.rb
|
271
|
+
- examples/i18n/sk/.gitignore
|
223
272
|
- examples/i18n/sk/Rakefile
|
224
273
|
- examples/i18n/sk/features/addition.feature
|
225
274
|
- examples/i18n/sk/features/division.feature
|
226
275
|
- examples/i18n/sk/features/step_definitons/calculator_steps.rb
|
227
276
|
- examples/i18n/sk/lib/calculator.rb
|
277
|
+
- examples/i18n/sr-latn/Rakefile
|
278
|
+
- examples/i18n/sr-latn/features/sabiranje.feature
|
279
|
+
- examples/i18n/sr-latn/features/step_definitons/calculator_steps.rb
|
280
|
+
- examples/i18n/sr-latn/lib/calculator.rb
|
281
|
+
- examples/i18n/sr/Rakefile
|
282
|
+
- examples/i18n/sr/features/sabiranje.feature
|
283
|
+
- examples/i18n/sr/features/step_definitons/calculator_steps.rb
|
284
|
+
- examples/i18n/sr/lib/calculator.rb
|
285
|
+
- examples/i18n/tr/.gitignore
|
228
286
|
- examples/i18n/tr/Rakefile
|
229
|
-
-
|
230
|
-
-
|
287
|
+
- examples/i18n/tr/features/bolme.feature
|
288
|
+
- examples/i18n/tr/features/step_definitons/hesap_makinesi_adimlari.rb
|
231
289
|
- examples/i18n/tr/features/toplama.feature
|
232
290
|
- examples/i18n/tr/lib/hesap_makinesi.rb
|
233
291
|
- examples/i18n/uz/Rakefile
|
@@ -242,17 +300,21 @@ files:
|
|
242
300
|
- examples/i18n/zh-CN/features/addition.feature
|
243
301
|
- examples/i18n/zh-CN/features/step_definitons/calculator_steps.rb
|
244
302
|
- examples/i18n/zh-CN/lib/calculator.rb
|
303
|
+
- examples/i18n/zh-TW/.gitignore
|
245
304
|
- examples/i18n/zh-TW/Rakefile
|
246
305
|
- examples/i18n/zh-TW/features/addition.feature
|
247
306
|
- examples/i18n/zh-TW/features/division.feature
|
248
307
|
- examples/i18n/zh-TW/features/step_definitons/calculator_steps.rb
|
249
308
|
- examples/i18n/zh-TW/lib/calculator.rb
|
309
|
+
- examples/java/.gitignore
|
250
310
|
- examples/java/README.textile
|
251
311
|
- examples/java/build.xml
|
252
312
|
- examples/java/features/hello.feature
|
253
313
|
- examples/java/features/step_definitons/hello_steps.rb
|
254
314
|
- examples/java/features/step_definitons/tree_steps.rb
|
255
315
|
- examples/java/features/tree.feature
|
316
|
+
- examples/java/src/.gitignore
|
317
|
+
- examples/java/src/cucumber/demo/.gitignore
|
256
318
|
- examples/java/src/cucumber/demo/Hello.java
|
257
319
|
- examples/junit/features/one_passing_one_failing.feature
|
258
320
|
- examples/junit/features/pending.feature
|
@@ -260,6 +322,7 @@ files:
|
|
260
322
|
- examples/pure_java/README.textile
|
261
323
|
- examples/python/features/fibonacci.feature
|
262
324
|
- examples/python/features/step_definitions/fib_steps.py
|
325
|
+
- examples/python/lib/.gitignore
|
263
326
|
- examples/python/lib/fib.py
|
264
327
|
- examples/ramaze/README.textile
|
265
328
|
- examples/ramaze/Rakefile
|
@@ -272,6 +335,7 @@ files:
|
|
272
335
|
- examples/ruby2python/features/fibonacci.feature
|
273
336
|
- examples/ruby2python/features/step_definitions/fib_steps.rb
|
274
337
|
- examples/ruby2python/features/support/env.rb
|
338
|
+
- examples/ruby2python/lib/.gitignore
|
275
339
|
- examples/ruby2python/lib/fib.py
|
276
340
|
- examples/selenium/Rakefile
|
277
341
|
- examples/selenium/features/search.feature
|
@@ -282,6 +346,7 @@ files:
|
|
282
346
|
- examples/selenium_webrat/features/search.feature
|
283
347
|
- examples/selenium_webrat/features/step_definitons/search_steps.rb
|
284
348
|
- examples/selenium_webrat/features/support/env.rb
|
349
|
+
- examples/self_test/.gitignore
|
285
350
|
- examples/self_test/README.textile
|
286
351
|
- examples/self_test/Rakefile
|
287
352
|
- examples/self_test/features/background/background_tagged_before_on_outline.feature
|
@@ -360,6 +425,7 @@ files:
|
|
360
425
|
- examples/webrat/features/support/env.rb
|
361
426
|
- features/background.feature
|
362
427
|
- features/bug_371.feature
|
428
|
+
- features/bug_464.feature
|
363
429
|
- features/bug_475.feature
|
364
430
|
- features/cucumber_cli.feature
|
365
431
|
- features/cucumber_cli_diff_disabled.feature
|
@@ -377,6 +443,7 @@ files:
|
|
377
443
|
- features/junit_formatter.feature
|
378
444
|
- features/language_from_header.feature
|
379
445
|
- features/language_help.feature
|
446
|
+
- features/listener_debugger_formatter.feature
|
380
447
|
- features/multiline_names.feature
|
381
448
|
- features/negative_tagged_hooks.feature
|
382
449
|
- features/post_configuration_hook.feature
|
@@ -397,12 +464,10 @@ files:
|
|
397
464
|
- features/usage_and_stepdefs_formatter.feature
|
398
465
|
- features/work_in_progress.feature
|
399
466
|
- gem_tasks/contributors.rake
|
400
|
-
- gem_tasks/deployment.rake
|
401
467
|
- gem_tasks/environment.rake
|
402
468
|
- gem_tasks/features.rake
|
403
469
|
- gem_tasks/fix_cr_lf.rake
|
404
470
|
- gem_tasks/flog.rake
|
405
|
-
- gem_tasks/gemspec.rake
|
406
471
|
- gem_tasks/rspec.rake
|
407
472
|
- gem_tasks/sass.rake
|
408
473
|
- gem_tasks/sdoc.rake
|
@@ -450,6 +515,7 @@ files:
|
|
450
515
|
- lib/cucumber/formatter/console.rb
|
451
516
|
- lib/cucumber/formatter/cucumber.css
|
452
517
|
- lib/cucumber/formatter/cucumber.sass
|
518
|
+
- lib/cucumber/formatter/debug.rb
|
453
519
|
- lib/cucumber/formatter/duration.rb
|
454
520
|
- lib/cucumber/formatter/html.rb
|
455
521
|
- lib/cucumber/formatter/junit.rb
|
@@ -465,7 +531,6 @@ files:
|
|
465
531
|
- lib/cucumber/formatter/usage.rb
|
466
532
|
- lib/cucumber/language_support.rb
|
467
533
|
- lib/cucumber/language_support/language_methods.rb
|
468
|
-
- lib/cucumber/language_support/step_definition_methods.rb
|
469
534
|
- lib/cucumber/languages.yml
|
470
535
|
- lib/cucumber/parser.rb
|
471
536
|
- lib/cucumber/parser/feature.rb
|
@@ -497,7 +562,6 @@ files:
|
|
497
562
|
- lib/cucumber/step_definition_light.rb
|
498
563
|
- lib/cucumber/step_match.rb
|
499
564
|
- lib/cucumber/step_mother.rb
|
500
|
-
- lib/cucumber/version.rb
|
501
565
|
- lib/cucumber/webrat/element_locator.rb
|
502
566
|
- lib/cucumber/webrat/table_locator.rb
|
503
567
|
- rails_generators/cucumber/USAGE
|
@@ -535,6 +599,7 @@ files:
|
|
535
599
|
- spec/cucumber/core_ext/proc_spec.rb
|
536
600
|
- spec/cucumber/formatter/ansicolor_spec.rb
|
537
601
|
- spec/cucumber/formatter/color_io_spec.rb
|
602
|
+
- spec/cucumber/formatter/console_spec.rb
|
538
603
|
- spec/cucumber/formatter/duration_spec.rb
|
539
604
|
- spec/cucumber/formatter/html_spec.rb
|
540
605
|
- spec/cucumber/formatter/junit_spec.rb
|
@@ -567,16 +632,20 @@ has_rdoc: true
|
|
567
632
|
homepage: http://cukes.info
|
568
633
|
licenses: []
|
569
634
|
|
570
|
-
post_install_message:
|
571
|
-
|
572
|
-
|
573
|
-
|
574
|
-
|
575
|
-
|
576
|
-
|
635
|
+
post_install_message: |+
|
636
|
+
|
637
|
+
(::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::)
|
638
|
+
|
639
|
+
(::) U P G R A D I N G (::)
|
640
|
+
|
641
|
+
Thank you for installing cucumber-0.4.1
|
642
|
+
Please be sure to read http://wiki.github.com/aslakhellesoy/cucumber/upgrading
|
643
|
+
for important information about this release.
|
644
|
+
|
645
|
+
(::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::)
|
646
|
+
|
577
647
|
rdoc_options:
|
578
|
-
- --
|
579
|
-
- README.txt
|
648
|
+
- --charset=UTF-8
|
580
649
|
require_paths:
|
581
650
|
- lib
|
582
651
|
required_ruby_version: !ruby/object:Gem::Requirement
|
@@ -593,10 +662,156 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
593
662
|
version:
|
594
663
|
requirements: []
|
595
664
|
|
596
|
-
rubyforge_project:
|
665
|
+
rubyforge_project: cucumber
|
597
666
|
rubygems_version: 1.3.5
|
598
667
|
signing_key:
|
599
668
|
specification_version: 3
|
600
|
-
summary:
|
601
|
-
test_files:
|
602
|
-
|
669
|
+
summary: Behaviour Driven Development with elegance and joy
|
670
|
+
test_files:
|
671
|
+
- spec/cucumber/ast/background_spec.rb
|
672
|
+
- spec/cucumber/ast/feature_element_spec.rb
|
673
|
+
- spec/cucumber/ast/feature_factory.rb
|
674
|
+
- spec/cucumber/ast/feature_spec.rb
|
675
|
+
- spec/cucumber/ast/outline_table_spec.rb
|
676
|
+
- spec/cucumber/ast/py_string_spec.rb
|
677
|
+
- spec/cucumber/ast/scenario_outline_spec.rb
|
678
|
+
- spec/cucumber/ast/scenario_spec.rb
|
679
|
+
- spec/cucumber/ast/step_collection_spec.rb
|
680
|
+
- spec/cucumber/ast/step_spec.rb
|
681
|
+
- spec/cucumber/ast/table_spec.rb
|
682
|
+
- spec/cucumber/ast/tree_walker_spec.rb
|
683
|
+
- spec/cucumber/broadcaster_spec.rb
|
684
|
+
- spec/cucumber/cli/configuration_spec.rb
|
685
|
+
- spec/cucumber/cli/drb_client_spec.rb
|
686
|
+
- spec/cucumber/cli/main_spec.rb
|
687
|
+
- spec/cucumber/cli/options_spec.rb
|
688
|
+
- spec/cucumber/cli/profile_loader_spec.rb
|
689
|
+
- spec/cucumber/core_ext/proc_spec.rb
|
690
|
+
- spec/cucumber/formatter/ansicolor_spec.rb
|
691
|
+
- spec/cucumber/formatter/color_io_spec.rb
|
692
|
+
- spec/cucumber/formatter/console_spec.rb
|
693
|
+
- spec/cucumber/formatter/duration_spec.rb
|
694
|
+
- spec/cucumber/formatter/html_spec.rb
|
695
|
+
- spec/cucumber/formatter/junit_spec.rb
|
696
|
+
- spec/cucumber/formatter/progress_spec.rb
|
697
|
+
- spec/cucumber/formatter/spec_helper.rb
|
698
|
+
- spec/cucumber/parser/feature_parser_spec.rb
|
699
|
+
- spec/cucumber/parser/table_parser_spec.rb
|
700
|
+
- spec/cucumber/rb_support/rb_step_definition_spec.rb
|
701
|
+
- spec/cucumber/rb_support/regexp_argument_matcher_spec.rb
|
702
|
+
- spec/cucumber/step_match_spec.rb
|
703
|
+
- spec/cucumber/step_mother_spec.rb
|
704
|
+
- spec/cucumber/world/pending_spec.rb
|
705
|
+
- spec/spec_helper.rb
|
706
|
+
- examples/cs/features/step_definitons/calculator_steps.rb
|
707
|
+
- examples/i18n/ar/features/step_definitons/calculator_steps.rb
|
708
|
+
- examples/i18n/ar/lib/calculator.rb
|
709
|
+
- examples/i18n/bg/features/step_definitons/calculator_steps.rb
|
710
|
+
- examples/i18n/bg/features/support/env.rb
|
711
|
+
- examples/i18n/bg/features/support/world.rb
|
712
|
+
- examples/i18n/bg/lib/calculator.rb
|
713
|
+
- examples/i18n/cat/features/step_definitons/calculator_steps.rb
|
714
|
+
- examples/i18n/cat/lib/calculadora.rb
|
715
|
+
- examples/i18n/da/features/step_definitons/kalkulator_steps.rb
|
716
|
+
- examples/i18n/da/lib/kalkulator.rb
|
717
|
+
- examples/i18n/de/features/step_definitons/calculator_steps.rb
|
718
|
+
- examples/i18n/de/lib/calculator.rb
|
719
|
+
- examples/i18n/en/features/step_definitons/calculator_steps.rb
|
720
|
+
- examples/i18n/en/lib/calculator.rb
|
721
|
+
- examples/i18n/en-lol/features/step_definitions/cucumbrz_steps.rb
|
722
|
+
- examples/i18n/en-lol/features/support/env.rb
|
723
|
+
- examples/i18n/en-lol/lib/basket.rb
|
724
|
+
- examples/i18n/en-lol/lib/belly.rb
|
725
|
+
- examples/i18n/es/features/step_definitons/calculador_steps.rb
|
726
|
+
- examples/i18n/es/lib/calculador.rb
|
727
|
+
- examples/i18n/et/features/step_definitions/kalkulaator_steps.rb
|
728
|
+
- examples/i18n/et/lib/kalkulaator.rb
|
729
|
+
- examples/i18n/fi/features/step_definitons/laskin_steps.rb
|
730
|
+
- examples/i18n/fi/lib/laskin.rb
|
731
|
+
- examples/i18n/fr/features/step_definitions/calculatrice_steps.rb
|
732
|
+
- examples/i18n/fr/lib/calculatrice.rb
|
733
|
+
- examples/i18n/he/features/step_definitons/calculator_steps.rb
|
734
|
+
- examples/i18n/he/lib/calculator.rb
|
735
|
+
- examples/i18n/hu/features/step_definitons/calculator_steps.rb
|
736
|
+
- examples/i18n/hu/lib/calculator.rb
|
737
|
+
- examples/i18n/id/features/step_definitons/calculator_steps.rb
|
738
|
+
- examples/i18n/id/lib/calculator.rb
|
739
|
+
- examples/i18n/it/features/step_definitons/calcolatrice_steps.rb
|
740
|
+
- examples/i18n/it/lib/calcolatrice.rb
|
741
|
+
- examples/i18n/ja/features/step_definitons/calculator_steps.rb
|
742
|
+
- examples/i18n/ja/lib/calculator.rb
|
743
|
+
- examples/i18n/ko/features/step_definitons/calculator_steps.rb
|
744
|
+
- examples/i18n/ko/lib/calculator.rb
|
745
|
+
- examples/i18n/lt/features/step_definitons/calculator_steps.rb
|
746
|
+
- examples/i18n/lt/lib/calculator.rb
|
747
|
+
- examples/i18n/lv/features/step_definitons/calculator_steps.rb
|
748
|
+
- examples/i18n/lv/lib/calculator.rb
|
749
|
+
- examples/i18n/no/features/step_definitons/kalkulator_steps.rb
|
750
|
+
- examples/i18n/no/features/support/env.rb
|
751
|
+
- examples/i18n/no/lib/kalkulator.rb
|
752
|
+
- examples/i18n/pl/features/step_definitons/calculator_steps.rb
|
753
|
+
- examples/i18n/pl/features/support/env.rb
|
754
|
+
- examples/i18n/pl/lib/calculator.rb
|
755
|
+
- examples/i18n/pt/features/step_definitions/calculadora_steps.rb
|
756
|
+
- examples/i18n/pt/features/support/env.rb
|
757
|
+
- examples/i18n/pt/lib/calculadora.rb
|
758
|
+
- examples/i18n/ro/features/step_definitons/calculator_steps.rb
|
759
|
+
- examples/i18n/ro/lib/calculator.rb
|
760
|
+
- examples/i18n/ru/features/step_definitons/calculator_steps.rb
|
761
|
+
- examples/i18n/ru/features/support/env.rb
|
762
|
+
- examples/i18n/ru/features/support/world.rb
|
763
|
+
- examples/i18n/ru/lib/calculator.rb
|
764
|
+
- examples/i18n/se/features/step_definitons/kalkulator_steps.rb
|
765
|
+
- examples/i18n/se/lib/kalkulator.rb
|
766
|
+
- examples/i18n/sk/features/step_definitons/calculator_steps.rb
|
767
|
+
- examples/i18n/sk/lib/calculator.rb
|
768
|
+
- examples/i18n/sr/features/step_definitons/calculator_steps.rb
|
769
|
+
- examples/i18n/sr/lib/calculator.rb
|
770
|
+
- examples/i18n/sr-latn/features/step_definitons/calculator_steps.rb
|
771
|
+
- examples/i18n/sr-latn/lib/calculator.rb
|
772
|
+
- examples/i18n/tr/features/step_definitons/hesap_makinesi_adimlari.rb
|
773
|
+
- examples/i18n/tr/lib/hesap_makinesi.rb
|
774
|
+
- examples/i18n/uz/features/step_definitons/calculator_steps.rb
|
775
|
+
- examples/i18n/uz/features/support/env.rb
|
776
|
+
- examples/i18n/uz/features/support/world.rb
|
777
|
+
- examples/i18n/uz/lib/calculator.rb
|
778
|
+
- examples/i18n/zh-CN/features/step_definitons/calculator_steps.rb
|
779
|
+
- examples/i18n/zh-CN/lib/calculator.rb
|
780
|
+
- examples/i18n/zh-TW/features/step_definitons/calculator_steps.rb
|
781
|
+
- examples/i18n/zh-TW/lib/calculator.rb
|
782
|
+
- examples/java/features/step_definitons/hello_steps.rb
|
783
|
+
- examples/java/features/step_definitons/tree_steps.rb
|
784
|
+
- examples/junit/features/step_definitions/steps.rb
|
785
|
+
- examples/ramaze/app.rb
|
786
|
+
- examples/ramaze/features/step_definitions/add_steps.rb
|
787
|
+
- examples/ramaze/features/support/env.rb
|
788
|
+
- examples/ruby2python/features/step_definitions/fib_steps.rb
|
789
|
+
- examples/ruby2python/features/support/env.rb
|
790
|
+
- examples/selenium/features/step_definitons/search_steps.rb
|
791
|
+
- examples/selenium/features/support/env.rb
|
792
|
+
- examples/selenium_webrat/features/step_definitons/search_steps.rb
|
793
|
+
- examples/selenium_webrat/features/support/env.rb
|
794
|
+
- examples/self_test/features/step_definitions/sample_steps.rb
|
795
|
+
- examples/self_test/features/support/env.rb
|
796
|
+
- examples/self_test/tmp/features/step_definitions/steps.rb
|
797
|
+
- examples/sinatra/app.rb
|
798
|
+
- examples/sinatra/features/step_definitions/add_steps.rb
|
799
|
+
- examples/sinatra/features/support/env.rb
|
800
|
+
- examples/steps_library/features/step_definitions/steps_lib1.rb
|
801
|
+
- examples/steps_library/features/step_definitions/steps_lib2.rb
|
802
|
+
- examples/test_unit/features/step_definitions/test_unit_steps.rb
|
803
|
+
- examples/tickets/features/229/tagged_hooks.rb
|
804
|
+
- examples/tickets/features/270/back.steps.rb
|
805
|
+
- examples/tickets/features/272/hooks_steps.rb
|
806
|
+
- examples/tickets/features/279/py_string_indent.steps.rb
|
807
|
+
- examples/tickets/features/301/filter_background_tagged_hooks_steps.rb
|
808
|
+
- examples/tickets/features/lib/eatting_machine.rb
|
809
|
+
- examples/tickets/features/lib/pantry.rb
|
810
|
+
- examples/tickets/features/step_definitons/246_steps.rb
|
811
|
+
- examples/tickets/features/step_definitons/248_steps.rb
|
812
|
+
- examples/tickets/features/step_definitons/scenario_outline_steps.rb
|
813
|
+
- examples/tickets/features/step_definitons/tickets_steps.rb
|
814
|
+
- examples/watir/features/step_definitons/search_steps.rb
|
815
|
+
- examples/watir/features/support/env.rb
|
816
|
+
- examples/webrat/features/step_definitions/kvasir_steps.rb
|
817
|
+
- examples/webrat/features/support/env.rb
|