cucumber 0.4.0 → 0.4.1
Sign up to get free protection for your applications and to get access to all the features.
- 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
data/README.rdoc
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
= Cucumber
|
2
|
+
|
3
|
+
The main website is at http://cukes.info/
|
4
|
+
The documentation is at http://github.com/aslakhellesoy/cucumber/wikis/home/
|
5
|
+
|
6
|
+
== Note on Patches/Pull Requests
|
7
|
+
|
8
|
+
* Fork the project.
|
9
|
+
* Make your feature addition or bug fix.
|
10
|
+
* Add tests for it. This is important so I don't break it in a
|
11
|
+
future version unintentionally.
|
12
|
+
* Commit, do not mess with Rakefile, version, or history.
|
13
|
+
(if you want to have your own version, that is fine but
|
14
|
+
bump version in a commit by itself I can ignore when I pull)
|
15
|
+
* Send me a pull request. Bonus points for topic branches.
|
16
|
+
|
17
|
+
== Running tests
|
18
|
+
|
19
|
+
rake
|
20
|
+
|
21
|
+
If you get errors about missing gems - just install them.
|
22
|
+
|
23
|
+
== Copyright
|
24
|
+
|
25
|
+
Copyright (c) 2008,2009 Aslak Hellesøy. See LICENSE for details.
|
26
|
+
|
data/Rakefile
CHANGED
@@ -1,13 +1,60 @@
|
|
1
|
-
|
2
|
-
require '
|
3
|
-
|
1
|
+
require 'rubygems'
|
2
|
+
require 'rake'
|
3
|
+
$:.unshift(File.dirname(__FILE__) + '/lib')
|
4
|
+
require 'cucumber/platform'
|
5
|
+
|
6
|
+
begin
|
7
|
+
require 'jeweler'
|
8
|
+
Jeweler::Tasks.new do |gem|
|
9
|
+
gem.name = "cucumber"
|
10
|
+
gem.summary = %Q{Behaviour Driven Development with elegance and joy}
|
11
|
+
gem.description = %Q{A BDD tool written in Ruby}
|
12
|
+
gem.email = "cukes@googlegroups.com"
|
13
|
+
gem.homepage = "http://cukes.info"
|
14
|
+
gem.authors = ["Aslak Hellesøy"]
|
15
|
+
gem.rubyforge_project = "cucumber"
|
16
|
+
|
17
|
+
gem.add_dependency 'term-ansicolor', '1.0.4'
|
18
|
+
gem.add_dependency 'treetop', '1.4.2'
|
19
|
+
gem.add_dependency 'polyglot', '0.2.9'
|
20
|
+
gem.add_dependency 'builder', '2.1.2'
|
21
|
+
gem.add_dependency 'diff-lcs', '1.1.2'
|
22
|
+
|
23
|
+
gem.add_development_dependency 'nokogiri', '1.3.3'
|
24
|
+
gem.add_development_dependency 'prawn', '0.5.1'
|
25
|
+
gem.add_development_dependency 'rspec', '1.2.9'
|
26
|
+
gem.add_development_dependency 'spork', '0.7.2'
|
27
|
+
|
28
|
+
gem.post_install_message = <<-POST_INSTALL_MESSAGE
|
29
|
+
|
30
|
+
(::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::)
|
31
|
+
|
32
|
+
(::) U P G R A D I N G (::)
|
33
|
+
|
34
|
+
Thank you for installing cucumber-#{Cucumber::VERSION}
|
35
|
+
Please be sure to read http://wiki.github.com/aslakhellesoy/cucumber/upgrading
|
36
|
+
for important information about this release.
|
37
|
+
|
38
|
+
(::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::)
|
39
|
+
|
40
|
+
POST_INSTALL_MESSAGE
|
41
|
+
end
|
42
|
+
|
43
|
+
Jeweler::GemcutterTasks.new
|
44
|
+
Jeweler::RubyforgeTasks.new do |rubyforge|
|
45
|
+
rubyforge.doc_task = "sdoc"
|
46
|
+
end
|
47
|
+
rescue LoadError
|
48
|
+
puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
|
49
|
+
end
|
4
50
|
|
5
51
|
Dir['gem_tasks/**/*.rake'].each { |rake| load rake }
|
6
52
|
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
task :default => [:spec, :cucumber]
|
53
|
+
if(Cucumber::RUBY_1_9)
|
54
|
+
task :default => [:check_dependencies, :cucumber] # RSpec doesn't run on 1.9 yet.
|
55
|
+
else
|
56
|
+
task :default => [:check_dependencies, :spec, :cucumber]
|
57
|
+
end
|
11
58
|
|
12
59
|
require 'rake/clean'
|
13
60
|
CLEAN.include %w(**/*.{log,pyc})
|
data/VERSION.yml
ADDED
data/bin/cucumber
CHANGED
data/cucumber.gemspec
ADDED
@@ -0,0 +1,743 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = %q{cucumber}
|
8
|
+
s.version = "0.4.1"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["Aslak Helles\303\270y"]
|
12
|
+
s.date = %q{2009-10-14}
|
13
|
+
s.default_executable = %q{cucumber}
|
14
|
+
s.description = %q{A BDD tool written in Ruby}
|
15
|
+
s.email = %q{cukes@googlegroups.com}
|
16
|
+
s.executables = ["cucumber"]
|
17
|
+
s.extra_rdoc_files = [
|
18
|
+
"LICENSE",
|
19
|
+
"README.rdoc"
|
20
|
+
]
|
21
|
+
s.files = [
|
22
|
+
".gitattributes",
|
23
|
+
".gitignore",
|
24
|
+
"History.txt",
|
25
|
+
"LICENSE",
|
26
|
+
"Manifest.txt",
|
27
|
+
"README.rdoc",
|
28
|
+
"Rakefile",
|
29
|
+
"VERSION.yml",
|
30
|
+
"bin/cucumber",
|
31
|
+
"cucumber.gemspec",
|
32
|
+
"cucumber.yml",
|
33
|
+
"examples/cs/.gitignore",
|
34
|
+
"examples/cs/README.textile",
|
35
|
+
"examples/cs/Rakefile",
|
36
|
+
"examples/cs/compile.bat",
|
37
|
+
"examples/cs/features/addition.feature",
|
38
|
+
"examples/cs/features/step_definitons/calculator_steps.rb",
|
39
|
+
"examples/cs/src/demo/Calculator.cs",
|
40
|
+
"examples/dos_line_endings/Rakefile",
|
41
|
+
"examples/dos_line_endings/features/dos_line_endings.feature",
|
42
|
+
"examples/i18n/README.textile",
|
43
|
+
"examples/i18n/Rakefile",
|
44
|
+
"examples/i18n/ar/Rakefile",
|
45
|
+
"examples/i18n/ar/features/addition.feature",
|
46
|
+
"examples/i18n/ar/features/step_definitons/calculator_steps.rb",
|
47
|
+
"examples/i18n/ar/lib/calculator.rb",
|
48
|
+
"examples/i18n/bg/Rakefile",
|
49
|
+
"examples/i18n/bg/features/addition.feature",
|
50
|
+
"examples/i18n/bg/features/consecutive_calculations.feature",
|
51
|
+
"examples/i18n/bg/features/division.feature",
|
52
|
+
"examples/i18n/bg/features/step_definitons/calculator_steps.rb",
|
53
|
+
"examples/i18n/bg/features/support/env.rb",
|
54
|
+
"examples/i18n/bg/features/support/world.rb",
|
55
|
+
"examples/i18n/bg/lib/calculator.rb",
|
56
|
+
"examples/i18n/cat/Rakefile",
|
57
|
+
"examples/i18n/cat/features/step_definitons/calculator_steps.rb",
|
58
|
+
"examples/i18n/cat/features/suma.feature",
|
59
|
+
"examples/i18n/cat/lib/calculadora.rb",
|
60
|
+
"examples/i18n/da/Rakefile",
|
61
|
+
"examples/i18n/da/features/step_definitons/kalkulator_steps.rb",
|
62
|
+
"examples/i18n/da/features/summering.feature",
|
63
|
+
"examples/i18n/da/lib/kalkulator.rb",
|
64
|
+
"examples/i18n/de/.gitignore",
|
65
|
+
"examples/i18n/de/Rakefile",
|
66
|
+
"examples/i18n/de/features/addition.feature",
|
67
|
+
"examples/i18n/de/features/division.feature",
|
68
|
+
"examples/i18n/de/features/step_definitons/calculator_steps.rb",
|
69
|
+
"examples/i18n/de/lib/calculator.rb",
|
70
|
+
"examples/i18n/en-lol/Rakefile",
|
71
|
+
"examples/i18n/en-lol/features/step_definitions/cucumbrz_steps.rb",
|
72
|
+
"examples/i18n/en-lol/features/stuffing.feature",
|
73
|
+
"examples/i18n/en-lol/features/support/env.rb",
|
74
|
+
"examples/i18n/en-lol/lib/basket.rb",
|
75
|
+
"examples/i18n/en-lol/lib/belly.rb",
|
76
|
+
"examples/i18n/en/.gitignore",
|
77
|
+
"examples/i18n/en/Rakefile",
|
78
|
+
"examples/i18n/en/features/addition.feature",
|
79
|
+
"examples/i18n/en/features/division.feature",
|
80
|
+
"examples/i18n/en/features/step_definitons/calculator_steps.rb",
|
81
|
+
"examples/i18n/en/lib/calculator.rb",
|
82
|
+
"examples/i18n/es/Rakefile",
|
83
|
+
"examples/i18n/es/features/adicion.feature",
|
84
|
+
"examples/i18n/es/features/step_definitons/calculador_steps.rb",
|
85
|
+
"examples/i18n/es/lib/calculador.rb",
|
86
|
+
"examples/i18n/et/Rakefile",
|
87
|
+
"examples/i18n/et/features/jagamine.feature",
|
88
|
+
"examples/i18n/et/features/liitmine.feature",
|
89
|
+
"examples/i18n/et/features/step_definitions/kalkulaator_steps.rb",
|
90
|
+
"examples/i18n/et/lib/kalkulaator.rb",
|
91
|
+
"examples/i18n/fi/.gitignore",
|
92
|
+
"examples/i18n/fi/Rakefile",
|
93
|
+
"examples/i18n/fi/features/jakolasku.feature",
|
94
|
+
"examples/i18n/fi/features/step_definitons/laskin_steps.rb",
|
95
|
+
"examples/i18n/fi/features/yhteenlasku.feature",
|
96
|
+
"examples/i18n/fi/lib/laskin.rb",
|
97
|
+
"examples/i18n/fr/Rakefile",
|
98
|
+
"examples/i18n/fr/features/addition.feature",
|
99
|
+
"examples/i18n/fr/features/step_definitions/calculatrice_steps.rb",
|
100
|
+
"examples/i18n/fr/lib/calculatrice.rb",
|
101
|
+
"examples/i18n/he/Rakefile",
|
102
|
+
"examples/i18n/he/features/addition.feature",
|
103
|
+
"examples/i18n/he/features/division.feature",
|
104
|
+
"examples/i18n/he/features/step_definitons/calculator_steps.rb",
|
105
|
+
"examples/i18n/he/lib/calculator.rb",
|
106
|
+
"examples/i18n/hu/.gitignore",
|
107
|
+
"examples/i18n/hu/Rakefile",
|
108
|
+
"examples/i18n/hu/features/addition.feature",
|
109
|
+
"examples/i18n/hu/features/division.feature",
|
110
|
+
"examples/i18n/hu/features/step_definitons/calculator_steps.rb",
|
111
|
+
"examples/i18n/hu/lib/calculator.rb",
|
112
|
+
"examples/i18n/id/.gitignore",
|
113
|
+
"examples/i18n/id/Rakefile",
|
114
|
+
"examples/i18n/id/features/addition.feature",
|
115
|
+
"examples/i18n/id/features/division.feature",
|
116
|
+
"examples/i18n/id/features/step_definitons/calculator_steps.rb",
|
117
|
+
"examples/i18n/id/lib/calculator.rb",
|
118
|
+
"examples/i18n/it/Rakefile",
|
119
|
+
"examples/i18n/it/features/somma.feature",
|
120
|
+
"examples/i18n/it/features/step_definitons/calcolatrice_steps.rb",
|
121
|
+
"examples/i18n/it/lib/calcolatrice.rb",
|
122
|
+
"examples/i18n/ja/.gitignore",
|
123
|
+
"examples/i18n/ja/Rakefile",
|
124
|
+
"examples/i18n/ja/features/addition.feature",
|
125
|
+
"examples/i18n/ja/features/division.feature",
|
126
|
+
"examples/i18n/ja/features/step_definitons/calculator_steps.rb",
|
127
|
+
"examples/i18n/ja/lib/calculator.rb",
|
128
|
+
"examples/i18n/ko/.gitignore",
|
129
|
+
"examples/i18n/ko/Rakefile",
|
130
|
+
"examples/i18n/ko/features/addition.feature",
|
131
|
+
"examples/i18n/ko/features/division.feature",
|
132
|
+
"examples/i18n/ko/features/step_definitons/calculator_steps.rb",
|
133
|
+
"examples/i18n/ko/lib/calculator.rb",
|
134
|
+
"examples/i18n/lt/.gitignore",
|
135
|
+
"examples/i18n/lt/Rakefile",
|
136
|
+
"examples/i18n/lt/features/addition.feature",
|
137
|
+
"examples/i18n/lt/features/division.feature",
|
138
|
+
"examples/i18n/lt/features/step_definitons/calculator_steps.rb",
|
139
|
+
"examples/i18n/lt/lib/calculator.rb",
|
140
|
+
"examples/i18n/lv/Rakefile",
|
141
|
+
"examples/i18n/lv/features/addition.feature",
|
142
|
+
"examples/i18n/lv/features/division.feature",
|
143
|
+
"examples/i18n/lv/features/step_definitons/calculator_steps.rb",
|
144
|
+
"examples/i18n/lv/lib/calculator.rb",
|
145
|
+
"examples/i18n/no/Rakefile",
|
146
|
+
"examples/i18n/no/features/step_definitons/kalkulator_steps.rb",
|
147
|
+
"examples/i18n/no/features/summering.feature",
|
148
|
+
"examples/i18n/no/features/support/env.rb",
|
149
|
+
"examples/i18n/no/lib/kalkulator.rb",
|
150
|
+
"examples/i18n/pl/.gitignore",
|
151
|
+
"examples/i18n/pl/Rakefile",
|
152
|
+
"examples/i18n/pl/features/addition.feature",
|
153
|
+
"examples/i18n/pl/features/division.feature",
|
154
|
+
"examples/i18n/pl/features/step_definitons/calculator_steps.rb",
|
155
|
+
"examples/i18n/pl/features/support/env.rb",
|
156
|
+
"examples/i18n/pl/lib/calculator.rb",
|
157
|
+
"examples/i18n/pt/Rakefile",
|
158
|
+
"examples/i18n/pt/features/adicao.feature",
|
159
|
+
"examples/i18n/pt/features/step_definitions/calculadora_steps.rb",
|
160
|
+
"examples/i18n/pt/features/support/env.rb",
|
161
|
+
"examples/i18n/pt/lib/calculadora.rb",
|
162
|
+
"examples/i18n/ro/Rakefile",
|
163
|
+
"examples/i18n/ro/features/step_definitons/calculator_steps.rb",
|
164
|
+
"examples/i18n/ro/features/suma.feature",
|
165
|
+
"examples/i18n/ro/lib/calculator.rb",
|
166
|
+
"examples/i18n/ru/Rakefile",
|
167
|
+
"examples/i18n/ru/features/addition.feature",
|
168
|
+
"examples/i18n/ru/features/consecutive_calculations.feature",
|
169
|
+
"examples/i18n/ru/features/division.feature",
|
170
|
+
"examples/i18n/ru/features/step_definitons/calculator_steps.rb",
|
171
|
+
"examples/i18n/ru/features/support/env.rb",
|
172
|
+
"examples/i18n/ru/features/support/world.rb",
|
173
|
+
"examples/i18n/ru/lib/calculator.rb",
|
174
|
+
"examples/i18n/se/Rakefile",
|
175
|
+
"examples/i18n/se/features/step_definitons/kalkulator_steps.rb",
|
176
|
+
"examples/i18n/se/features/summering.feature",
|
177
|
+
"examples/i18n/se/lib/kalkulator.rb",
|
178
|
+
"examples/i18n/sk/.gitignore",
|
179
|
+
"examples/i18n/sk/Rakefile",
|
180
|
+
"examples/i18n/sk/features/addition.feature",
|
181
|
+
"examples/i18n/sk/features/division.feature",
|
182
|
+
"examples/i18n/sk/features/step_definitons/calculator_steps.rb",
|
183
|
+
"examples/i18n/sk/lib/calculator.rb",
|
184
|
+
"examples/i18n/sr-latn/Rakefile",
|
185
|
+
"examples/i18n/sr-latn/features/sabiranje.feature",
|
186
|
+
"examples/i18n/sr-latn/features/step_definitons/calculator_steps.rb",
|
187
|
+
"examples/i18n/sr-latn/lib/calculator.rb",
|
188
|
+
"examples/i18n/sr/Rakefile",
|
189
|
+
"examples/i18n/sr/features/sabiranje.feature",
|
190
|
+
"examples/i18n/sr/features/step_definitons/calculator_steps.rb",
|
191
|
+
"examples/i18n/sr/lib/calculator.rb",
|
192
|
+
"examples/i18n/tr/.gitignore",
|
193
|
+
"examples/i18n/tr/Rakefile",
|
194
|
+
"examples/i18n/tr/features/bolme.feature",
|
195
|
+
"examples/i18n/tr/features/step_definitons/hesap_makinesi_adimlari.rb",
|
196
|
+
"examples/i18n/tr/features/toplama.feature",
|
197
|
+
"examples/i18n/tr/lib/hesap_makinesi.rb",
|
198
|
+
"examples/i18n/uz/Rakefile",
|
199
|
+
"examples/i18n/uz/features/addition.feature",
|
200
|
+
"examples/i18n/uz/features/consecutive_calculations.feature",
|
201
|
+
"examples/i18n/uz/features/division.feature",
|
202
|
+
"examples/i18n/uz/features/step_definitons/calculator_steps.rb",
|
203
|
+
"examples/i18n/uz/features/support/env.rb",
|
204
|
+
"examples/i18n/uz/features/support/world.rb",
|
205
|
+
"examples/i18n/uz/lib/calculator.rb",
|
206
|
+
"examples/i18n/zh-CN/Rakefile",
|
207
|
+
"examples/i18n/zh-CN/features/addition.feature",
|
208
|
+
"examples/i18n/zh-CN/features/step_definitons/calculator_steps.rb",
|
209
|
+
"examples/i18n/zh-CN/lib/calculator.rb",
|
210
|
+
"examples/i18n/zh-TW/.gitignore",
|
211
|
+
"examples/i18n/zh-TW/Rakefile",
|
212
|
+
"examples/i18n/zh-TW/features/addition.feature",
|
213
|
+
"examples/i18n/zh-TW/features/division.feature",
|
214
|
+
"examples/i18n/zh-TW/features/step_definitons/calculator_steps.rb",
|
215
|
+
"examples/i18n/zh-TW/lib/calculator.rb",
|
216
|
+
"examples/java/.gitignore",
|
217
|
+
"examples/java/README.textile",
|
218
|
+
"examples/java/build.xml",
|
219
|
+
"examples/java/features/hello.feature",
|
220
|
+
"examples/java/features/step_definitons/hello_steps.rb",
|
221
|
+
"examples/java/features/step_definitons/tree_steps.rb",
|
222
|
+
"examples/java/features/tree.feature",
|
223
|
+
"examples/java/src/.gitignore",
|
224
|
+
"examples/java/src/cucumber/demo/.gitignore",
|
225
|
+
"examples/java/src/cucumber/demo/Hello.java",
|
226
|
+
"examples/junit/features/one_passing_one_failing.feature",
|
227
|
+
"examples/junit/features/pending.feature",
|
228
|
+
"examples/junit/features/step_definitions/steps.rb",
|
229
|
+
"examples/pure_java/README.textile",
|
230
|
+
"examples/python/features/fibonacci.feature",
|
231
|
+
"examples/python/features/step_definitions/fib_steps.py",
|
232
|
+
"examples/python/lib/.gitignore",
|
233
|
+
"examples/python/lib/fib.py",
|
234
|
+
"examples/ramaze/README.textile",
|
235
|
+
"examples/ramaze/Rakefile",
|
236
|
+
"examples/ramaze/app.rb",
|
237
|
+
"examples/ramaze/features/add.feature",
|
238
|
+
"examples/ramaze/features/step_definitions/add_steps.rb",
|
239
|
+
"examples/ramaze/features/support/env.rb",
|
240
|
+
"examples/ramaze/layout/default.html.erb",
|
241
|
+
"examples/ramaze/view/index.html.erb",
|
242
|
+
"examples/ruby2python/features/fibonacci.feature",
|
243
|
+
"examples/ruby2python/features/step_definitions/fib_steps.rb",
|
244
|
+
"examples/ruby2python/features/support/env.rb",
|
245
|
+
"examples/ruby2python/lib/.gitignore",
|
246
|
+
"examples/ruby2python/lib/fib.py",
|
247
|
+
"examples/selenium/Rakefile",
|
248
|
+
"examples/selenium/features/search.feature",
|
249
|
+
"examples/selenium/features/step_definitons/search_steps.rb",
|
250
|
+
"examples/selenium/features/support/env.rb",
|
251
|
+
"examples/selenium_webrat/Rakefile",
|
252
|
+
"examples/selenium_webrat/config.ru",
|
253
|
+
"examples/selenium_webrat/features/search.feature",
|
254
|
+
"examples/selenium_webrat/features/step_definitons/search_steps.rb",
|
255
|
+
"examples/selenium_webrat/features/support/env.rb",
|
256
|
+
"examples/self_test/.gitignore",
|
257
|
+
"examples/self_test/README.textile",
|
258
|
+
"examples/self_test/Rakefile",
|
259
|
+
"examples/self_test/features/background/background_tagged_before_on_outline.feature",
|
260
|
+
"examples/self_test/features/background/background_with_name.feature",
|
261
|
+
"examples/self_test/features/background/failing_background.feature",
|
262
|
+
"examples/self_test/features/background/failing_background_after_success.feature",
|
263
|
+
"examples/self_test/features/background/multiline_args_background.feature",
|
264
|
+
"examples/self_test/features/background/passing_background.feature",
|
265
|
+
"examples/self_test/features/background/pending_background.feature",
|
266
|
+
"examples/self_test/features/background/scenario_outline_failing_background.feature",
|
267
|
+
"examples/self_test/features/background/scenario_outline_passing_background.feature",
|
268
|
+
"examples/self_test/features/call_undefined_step_from_step_def.feature",
|
269
|
+
"examples/self_test/features/failing_expectation.feature",
|
270
|
+
"examples/self_test/features/lots_of_undefined.feature",
|
271
|
+
"examples/self_test/features/multiline_name.feature",
|
272
|
+
"examples/self_test/features/outline_sample.feature",
|
273
|
+
"examples/self_test/features/sample.feature",
|
274
|
+
"examples/self_test/features/search_sample.feature",
|
275
|
+
"examples/self_test/features/step_definitions/sample_steps.rb",
|
276
|
+
"examples/self_test/features/support/env.rb",
|
277
|
+
"examples/self_test/features/tags_sample.feature",
|
278
|
+
"examples/self_test/features/tons_of_cukes.feature",
|
279
|
+
"examples/self_test/features/undefined_multiline_args.feature",
|
280
|
+
"examples/self_test/list-of-features.txt",
|
281
|
+
"examples/sinatra/README.textile",
|
282
|
+
"examples/sinatra/Rakefile",
|
283
|
+
"examples/sinatra/app.rb",
|
284
|
+
"examples/sinatra/features/add.feature",
|
285
|
+
"examples/sinatra/features/step_definitions/add_steps.rb",
|
286
|
+
"examples/sinatra/features/support/env.rb",
|
287
|
+
"examples/sinatra/views/add.erb",
|
288
|
+
"examples/sinatra/views/layout.erb",
|
289
|
+
"examples/steps_library/features/step_definitions/steps_lib1.rb",
|
290
|
+
"examples/steps_library/features/step_definitions/steps_lib2.rb",
|
291
|
+
"examples/test_unit/Rakefile",
|
292
|
+
"examples/test_unit/features/step_definitions/test_unit_steps.rb",
|
293
|
+
"examples/test_unit/features/test_unit.feature",
|
294
|
+
"examples/tickets/Rakefile",
|
295
|
+
"examples/tickets/features/172.feature",
|
296
|
+
"examples/tickets/features/177/1.feature",
|
297
|
+
"examples/tickets/features/177/2.feature",
|
298
|
+
"examples/tickets/features/177/3.feature",
|
299
|
+
"examples/tickets/features/180.feature",
|
300
|
+
"examples/tickets/features/229/tagged_hooks.feature",
|
301
|
+
"examples/tickets/features/229/tagged_hooks.rb",
|
302
|
+
"examples/tickets/features/236.feature",
|
303
|
+
"examples/tickets/features/241.feature",
|
304
|
+
"examples/tickets/features/246.feature",
|
305
|
+
"examples/tickets/features/248.feature",
|
306
|
+
"examples/tickets/features/270/back.feature",
|
307
|
+
"examples/tickets/features/270/back.steps.rb",
|
308
|
+
"examples/tickets/features/272/hooks.feature",
|
309
|
+
"examples/tickets/features/272/hooks_steps.rb",
|
310
|
+
"examples/tickets/features/279/py_string_indent.feature",
|
311
|
+
"examples/tickets/features/279/py_string_indent.steps.rb",
|
312
|
+
"examples/tickets/features/279/wrong.feature_",
|
313
|
+
"examples/tickets/features/301/filter_background_tagged_hooks.feature",
|
314
|
+
"examples/tickets/features/301/filter_background_tagged_hooks_steps.rb",
|
315
|
+
"examples/tickets/features/306/only_background.feature",
|
316
|
+
"examples/tickets/features/lib/eatting_machine.rb",
|
317
|
+
"examples/tickets/features/lib/pantry.rb",
|
318
|
+
"examples/tickets/features/scenario_outline.feature",
|
319
|
+
"examples/tickets/features/step_definitons/246_steps.rb",
|
320
|
+
"examples/tickets/features/step_definitons/248_steps.rb",
|
321
|
+
"examples/tickets/features/step_definitons/scenario_outline_steps.rb",
|
322
|
+
"examples/tickets/features/step_definitons/tickets_steps.rb",
|
323
|
+
"examples/tickets/features/table_diffing.feature",
|
324
|
+
"examples/tickets/features/tickets.feature",
|
325
|
+
"examples/watir/README.textile",
|
326
|
+
"examples/watir/Rakefile",
|
327
|
+
"examples/watir/features/search.feature",
|
328
|
+
"examples/watir/features/step_definitons/search_steps.rb",
|
329
|
+
"examples/watir/features/support/env.rb",
|
330
|
+
"examples/webrat/features/search.feature",
|
331
|
+
"examples/webrat/features/step_definitions/kvasir_steps.rb",
|
332
|
+
"examples/webrat/features/support/env.rb",
|
333
|
+
"features/background.feature",
|
334
|
+
"features/bug_371.feature",
|
335
|
+
"features/bug_464.feature",
|
336
|
+
"features/bug_475.feature",
|
337
|
+
"features/cucumber_cli.feature",
|
338
|
+
"features/cucumber_cli_diff_disabled.feature",
|
339
|
+
"features/cucumber_cli_outlines.feature",
|
340
|
+
"features/custom_formatter.feature",
|
341
|
+
"features/default_snippets.feature",
|
342
|
+
"features/drb_server_integration.feature",
|
343
|
+
"features/exception_in_after_block.feature",
|
344
|
+
"features/exception_in_after_step_block.feature",
|
345
|
+
"features/exception_in_before_block.feature",
|
346
|
+
"features/exclude_files.feature",
|
347
|
+
"features/expand.feature",
|
348
|
+
"features/html_formatter.feature",
|
349
|
+
"features/html_formatter/a.html",
|
350
|
+
"features/junit_formatter.feature",
|
351
|
+
"features/language_from_header.feature",
|
352
|
+
"features/language_help.feature",
|
353
|
+
"features/listener_debugger_formatter.feature",
|
354
|
+
"features/multiline_names.feature",
|
355
|
+
"features/negative_tagged_hooks.feature",
|
356
|
+
"features/post_configuration_hook.feature",
|
357
|
+
"features/profiles.feature",
|
358
|
+
"features/rake_task.feature",
|
359
|
+
"features/report_called_undefined_steps.feature",
|
360
|
+
"features/simplest.feature",
|
361
|
+
"features/snippet.feature",
|
362
|
+
"features/step_definitions/cucumber_steps.rb",
|
363
|
+
"features/step_definitions/extra_steps.rb",
|
364
|
+
"features/step_definitions/simplest_steps.rb",
|
365
|
+
"features/support/env.rb",
|
366
|
+
"features/support/env.rb.simplest",
|
367
|
+
"features/table_diffing.feature",
|
368
|
+
"features/table_mapping.feature",
|
369
|
+
"features/transform.feature",
|
370
|
+
"features/unicode_table.feature",
|
371
|
+
"features/usage_and_stepdefs_formatter.feature",
|
372
|
+
"features/work_in_progress.feature",
|
373
|
+
"gem_tasks/contributors.rake",
|
374
|
+
"gem_tasks/environment.rake",
|
375
|
+
"gem_tasks/features.rake",
|
376
|
+
"gem_tasks/fix_cr_lf.rake",
|
377
|
+
"gem_tasks/flog.rake",
|
378
|
+
"gem_tasks/rspec.rake",
|
379
|
+
"gem_tasks/sass.rake",
|
380
|
+
"gem_tasks/sdoc.rake",
|
381
|
+
"lib/README.rdoc",
|
382
|
+
"lib/autotest/cucumber.rb",
|
383
|
+
"lib/autotest/cucumber_mixin.rb",
|
384
|
+
"lib/autotest/cucumber_rails.rb",
|
385
|
+
"lib/autotest/cucumber_rails_rspec.rb",
|
386
|
+
"lib/autotest/cucumber_rspec.rb",
|
387
|
+
"lib/autotest/discover.rb",
|
388
|
+
"lib/cucumber.rb",
|
389
|
+
"lib/cucumber/ast.rb",
|
390
|
+
"lib/cucumber/ast/background.rb",
|
391
|
+
"lib/cucumber/ast/comment.rb",
|
392
|
+
"lib/cucumber/ast/examples.rb",
|
393
|
+
"lib/cucumber/ast/feature.rb",
|
394
|
+
"lib/cucumber/ast/feature_element.rb",
|
395
|
+
"lib/cucumber/ast/features.rb",
|
396
|
+
"lib/cucumber/ast/outline_table.rb",
|
397
|
+
"lib/cucumber/ast/py_string.rb",
|
398
|
+
"lib/cucumber/ast/scenario.rb",
|
399
|
+
"lib/cucumber/ast/scenario_outline.rb",
|
400
|
+
"lib/cucumber/ast/step.rb",
|
401
|
+
"lib/cucumber/ast/step_collection.rb",
|
402
|
+
"lib/cucumber/ast/step_invocation.rb",
|
403
|
+
"lib/cucumber/ast/table.rb",
|
404
|
+
"lib/cucumber/ast/tags.rb",
|
405
|
+
"lib/cucumber/ast/tree_walker.rb",
|
406
|
+
"lib/cucumber/ast/visitor.rb",
|
407
|
+
"lib/cucumber/broadcaster.rb",
|
408
|
+
"lib/cucumber/cli/configuration.rb",
|
409
|
+
"lib/cucumber/cli/drb_client.rb",
|
410
|
+
"lib/cucumber/cli/language_help_formatter.rb",
|
411
|
+
"lib/cucumber/cli/main.rb",
|
412
|
+
"lib/cucumber/cli/options.rb",
|
413
|
+
"lib/cucumber/cli/profile_loader.rb",
|
414
|
+
"lib/cucumber/constantize.rb",
|
415
|
+
"lib/cucumber/core_ext/instance_exec.rb",
|
416
|
+
"lib/cucumber/core_ext/proc.rb",
|
417
|
+
"lib/cucumber/core_ext/string.rb",
|
418
|
+
"lib/cucumber/feature_file.rb",
|
419
|
+
"lib/cucumber/filter.rb",
|
420
|
+
"lib/cucumber/formatter/ansicolor.rb",
|
421
|
+
"lib/cucumber/formatter/color_io.rb",
|
422
|
+
"lib/cucumber/formatter/console.rb",
|
423
|
+
"lib/cucumber/formatter/cucumber.css",
|
424
|
+
"lib/cucumber/formatter/cucumber.sass",
|
425
|
+
"lib/cucumber/formatter/debug.rb",
|
426
|
+
"lib/cucumber/formatter/duration.rb",
|
427
|
+
"lib/cucumber/formatter/html.rb",
|
428
|
+
"lib/cucumber/formatter/junit.rb",
|
429
|
+
"lib/cucumber/formatter/ordered_xml_markup.rb",
|
430
|
+
"lib/cucumber/formatter/pdf.rb",
|
431
|
+
"lib/cucumber/formatter/pretty.rb",
|
432
|
+
"lib/cucumber/formatter/progress.rb",
|
433
|
+
"lib/cucumber/formatter/rerun.rb",
|
434
|
+
"lib/cucumber/formatter/stepdefs.rb",
|
435
|
+
"lib/cucumber/formatter/steps.rb",
|
436
|
+
"lib/cucumber/formatter/tag_cloud.rb",
|
437
|
+
"lib/cucumber/formatter/unicode.rb",
|
438
|
+
"lib/cucumber/formatter/usage.rb",
|
439
|
+
"lib/cucumber/language_support.rb",
|
440
|
+
"lib/cucumber/language_support/language_methods.rb",
|
441
|
+
"lib/cucumber/languages.yml",
|
442
|
+
"lib/cucumber/parser.rb",
|
443
|
+
"lib/cucumber/parser/feature.rb",
|
444
|
+
"lib/cucumber/parser/feature.tt",
|
445
|
+
"lib/cucumber/parser/i18n.tt",
|
446
|
+
"lib/cucumber/parser/natural_language.rb",
|
447
|
+
"lib/cucumber/parser/table.rb",
|
448
|
+
"lib/cucumber/parser/table.tt",
|
449
|
+
"lib/cucumber/parser/treetop_ext.rb",
|
450
|
+
"lib/cucumber/platform.rb",
|
451
|
+
"lib/cucumber/py_support/py_dsl.py",
|
452
|
+
"lib/cucumber/py_support/py_language.py",
|
453
|
+
"lib/cucumber/py_support/py_language.rb",
|
454
|
+
"lib/cucumber/rails/action_controller.rb",
|
455
|
+
"lib/cucumber/rails/active_record.rb",
|
456
|
+
"lib/cucumber/rails/rspec.rb",
|
457
|
+
"lib/cucumber/rails/test_unit.rb",
|
458
|
+
"lib/cucumber/rails/world.rb",
|
459
|
+
"lib/cucumber/rake/task.rb",
|
460
|
+
"lib/cucumber/rb_support/rb_dsl.rb",
|
461
|
+
"lib/cucumber/rb_support/rb_hook.rb",
|
462
|
+
"lib/cucumber/rb_support/rb_language.rb",
|
463
|
+
"lib/cucumber/rb_support/rb_step_definition.rb",
|
464
|
+
"lib/cucumber/rb_support/rb_transform.rb",
|
465
|
+
"lib/cucumber/rb_support/rb_world.rb",
|
466
|
+
"lib/cucumber/rb_support/regexp_argument_matcher.rb",
|
467
|
+
"lib/cucumber/rspec_neuter.rb",
|
468
|
+
"lib/cucumber/step_argument.rb",
|
469
|
+
"lib/cucumber/step_definition_light.rb",
|
470
|
+
"lib/cucumber/step_match.rb",
|
471
|
+
"lib/cucumber/step_mother.rb",
|
472
|
+
"lib/cucumber/webrat/element_locator.rb",
|
473
|
+
"lib/cucumber/webrat/table_locator.rb",
|
474
|
+
"rails_generators/cucumber/USAGE",
|
475
|
+
"rails_generators/cucumber/cucumber_generator.rb",
|
476
|
+
"rails_generators/cucumber/templates/cucumber",
|
477
|
+
"rails_generators/cucumber/templates/cucumber.rake",
|
478
|
+
"rails_generators/cucumber/templates/cucumber_environment.rb",
|
479
|
+
"rails_generators/cucumber/templates/env.rb",
|
480
|
+
"rails_generators/cucumber/templates/paths.rb",
|
481
|
+
"rails_generators/cucumber/templates/spork_env.rb",
|
482
|
+
"rails_generators/cucumber/templates/version_check.rb",
|
483
|
+
"rails_generators/cucumber/templates/webrat_steps.rb",
|
484
|
+
"rails_generators/feature/USAGE",
|
485
|
+
"rails_generators/feature/feature_generator.rb",
|
486
|
+
"rails_generators/feature/templates/feature.erb",
|
487
|
+
"rails_generators/feature/templates/steps.erb",
|
488
|
+
"spec/cucumber/ast/background_spec.rb",
|
489
|
+
"spec/cucumber/ast/feature_element_spec.rb",
|
490
|
+
"spec/cucumber/ast/feature_factory.rb",
|
491
|
+
"spec/cucumber/ast/feature_spec.rb",
|
492
|
+
"spec/cucumber/ast/outline_table_spec.rb",
|
493
|
+
"spec/cucumber/ast/py_string_spec.rb",
|
494
|
+
"spec/cucumber/ast/scenario_outline_spec.rb",
|
495
|
+
"spec/cucumber/ast/scenario_spec.rb",
|
496
|
+
"spec/cucumber/ast/step_collection_spec.rb",
|
497
|
+
"spec/cucumber/ast/step_spec.rb",
|
498
|
+
"spec/cucumber/ast/table_spec.rb",
|
499
|
+
"spec/cucumber/ast/tree_walker_spec.rb",
|
500
|
+
"spec/cucumber/broadcaster_spec.rb",
|
501
|
+
"spec/cucumber/cli/configuration_spec.rb",
|
502
|
+
"spec/cucumber/cli/drb_client_spec.rb",
|
503
|
+
"spec/cucumber/cli/main_spec.rb",
|
504
|
+
"spec/cucumber/cli/options_spec.rb",
|
505
|
+
"spec/cucumber/cli/profile_loader_spec.rb",
|
506
|
+
"spec/cucumber/core_ext/proc_spec.rb",
|
507
|
+
"spec/cucumber/formatter/ansicolor_spec.rb",
|
508
|
+
"spec/cucumber/formatter/color_io_spec.rb",
|
509
|
+
"spec/cucumber/formatter/console_spec.rb",
|
510
|
+
"spec/cucumber/formatter/duration_spec.rb",
|
511
|
+
"spec/cucumber/formatter/html_spec.rb",
|
512
|
+
"spec/cucumber/formatter/junit_spec.rb",
|
513
|
+
"spec/cucumber/formatter/progress_spec.rb",
|
514
|
+
"spec/cucumber/formatter/spec_helper.rb",
|
515
|
+
"spec/cucumber/parser/feature_parser_spec.rb",
|
516
|
+
"spec/cucumber/parser/table_parser_spec.rb",
|
517
|
+
"spec/cucumber/rb_support/rb_step_definition_spec.rb",
|
518
|
+
"spec/cucumber/rb_support/regexp_argument_matcher_spec.rb",
|
519
|
+
"spec/cucumber/sell_cucumbers.feature",
|
520
|
+
"spec/cucumber/step_match_spec.rb",
|
521
|
+
"spec/cucumber/step_mother_spec.rb",
|
522
|
+
"spec/cucumber/treetop_parser/empty_feature.feature",
|
523
|
+
"spec/cucumber/treetop_parser/empty_scenario.feature",
|
524
|
+
"spec/cucumber/treetop_parser/empty_scenario_outline.feature",
|
525
|
+
"spec/cucumber/treetop_parser/fit_scenario.feature",
|
526
|
+
"spec/cucumber/treetop_parser/given_scenario.feature",
|
527
|
+
"spec/cucumber/treetop_parser/invalid_scenario_outlines.feature",
|
528
|
+
"spec/cucumber/treetop_parser/multiline_steps.feature",
|
529
|
+
"spec/cucumber/treetop_parser/multiple_tables.feature",
|
530
|
+
"spec/cucumber/treetop_parser/scenario_outline.feature",
|
531
|
+
"spec/cucumber/treetop_parser/spaces.feature",
|
532
|
+
"spec/cucumber/treetop_parser/test_dos.feature",
|
533
|
+
"spec/cucumber/treetop_parser/with_comments.feature",
|
534
|
+
"spec/cucumber/treetop_parser/with_tags.feature",
|
535
|
+
"spec/cucumber/world/pending_spec.rb",
|
536
|
+
"spec/spec.opts",
|
537
|
+
"spec/spec_helper.rb"
|
538
|
+
]
|
539
|
+
s.homepage = %q{http://cukes.info}
|
540
|
+
s.post_install_message = %q{
|
541
|
+
(::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::)
|
542
|
+
|
543
|
+
(::) U P G R A D I N G (::)
|
544
|
+
|
545
|
+
Thank you for installing cucumber-0.4.1
|
546
|
+
Please be sure to read http://wiki.github.com/aslakhellesoy/cucumber/upgrading
|
547
|
+
for important information about this release.
|
548
|
+
|
549
|
+
(::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::)
|
550
|
+
|
551
|
+
}
|
552
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
553
|
+
s.require_paths = ["lib"]
|
554
|
+
s.rubyforge_project = %q{cucumber}
|
555
|
+
s.rubygems_version = %q{1.3.5}
|
556
|
+
s.summary = %q{Behaviour Driven Development with elegance and joy}
|
557
|
+
s.test_files = [
|
558
|
+
"spec/cucumber/ast/background_spec.rb",
|
559
|
+
"spec/cucumber/ast/feature_element_spec.rb",
|
560
|
+
"spec/cucumber/ast/feature_factory.rb",
|
561
|
+
"spec/cucumber/ast/feature_spec.rb",
|
562
|
+
"spec/cucumber/ast/outline_table_spec.rb",
|
563
|
+
"spec/cucumber/ast/py_string_spec.rb",
|
564
|
+
"spec/cucumber/ast/scenario_outline_spec.rb",
|
565
|
+
"spec/cucumber/ast/scenario_spec.rb",
|
566
|
+
"spec/cucumber/ast/step_collection_spec.rb",
|
567
|
+
"spec/cucumber/ast/step_spec.rb",
|
568
|
+
"spec/cucumber/ast/table_spec.rb",
|
569
|
+
"spec/cucumber/ast/tree_walker_spec.rb",
|
570
|
+
"spec/cucumber/broadcaster_spec.rb",
|
571
|
+
"spec/cucumber/cli/configuration_spec.rb",
|
572
|
+
"spec/cucumber/cli/drb_client_spec.rb",
|
573
|
+
"spec/cucumber/cli/main_spec.rb",
|
574
|
+
"spec/cucumber/cli/options_spec.rb",
|
575
|
+
"spec/cucumber/cli/profile_loader_spec.rb",
|
576
|
+
"spec/cucumber/core_ext/proc_spec.rb",
|
577
|
+
"spec/cucumber/formatter/ansicolor_spec.rb",
|
578
|
+
"spec/cucumber/formatter/color_io_spec.rb",
|
579
|
+
"spec/cucumber/formatter/console_spec.rb",
|
580
|
+
"spec/cucumber/formatter/duration_spec.rb",
|
581
|
+
"spec/cucumber/formatter/html_spec.rb",
|
582
|
+
"spec/cucumber/formatter/junit_spec.rb",
|
583
|
+
"spec/cucumber/formatter/progress_spec.rb",
|
584
|
+
"spec/cucumber/formatter/spec_helper.rb",
|
585
|
+
"spec/cucumber/parser/feature_parser_spec.rb",
|
586
|
+
"spec/cucumber/parser/table_parser_spec.rb",
|
587
|
+
"spec/cucumber/rb_support/rb_step_definition_spec.rb",
|
588
|
+
"spec/cucumber/rb_support/regexp_argument_matcher_spec.rb",
|
589
|
+
"spec/cucumber/step_match_spec.rb",
|
590
|
+
"spec/cucumber/step_mother_spec.rb",
|
591
|
+
"spec/cucumber/world/pending_spec.rb",
|
592
|
+
"spec/spec_helper.rb",
|
593
|
+
"examples/cs/features/step_definitons/calculator_steps.rb",
|
594
|
+
"examples/i18n/ar/features/step_definitons/calculator_steps.rb",
|
595
|
+
"examples/i18n/ar/lib/calculator.rb",
|
596
|
+
"examples/i18n/bg/features/step_definitons/calculator_steps.rb",
|
597
|
+
"examples/i18n/bg/features/support/env.rb",
|
598
|
+
"examples/i18n/bg/features/support/world.rb",
|
599
|
+
"examples/i18n/bg/lib/calculator.rb",
|
600
|
+
"examples/i18n/cat/features/step_definitons/calculator_steps.rb",
|
601
|
+
"examples/i18n/cat/lib/calculadora.rb",
|
602
|
+
"examples/i18n/da/features/step_definitons/kalkulator_steps.rb",
|
603
|
+
"examples/i18n/da/lib/kalkulator.rb",
|
604
|
+
"examples/i18n/de/features/step_definitons/calculator_steps.rb",
|
605
|
+
"examples/i18n/de/lib/calculator.rb",
|
606
|
+
"examples/i18n/en/features/step_definitons/calculator_steps.rb",
|
607
|
+
"examples/i18n/en/lib/calculator.rb",
|
608
|
+
"examples/i18n/en-lol/features/step_definitions/cucumbrz_steps.rb",
|
609
|
+
"examples/i18n/en-lol/features/support/env.rb",
|
610
|
+
"examples/i18n/en-lol/lib/basket.rb",
|
611
|
+
"examples/i18n/en-lol/lib/belly.rb",
|
612
|
+
"examples/i18n/es/features/step_definitons/calculador_steps.rb",
|
613
|
+
"examples/i18n/es/lib/calculador.rb",
|
614
|
+
"examples/i18n/et/features/step_definitions/kalkulaator_steps.rb",
|
615
|
+
"examples/i18n/et/lib/kalkulaator.rb",
|
616
|
+
"examples/i18n/fi/features/step_definitons/laskin_steps.rb",
|
617
|
+
"examples/i18n/fi/lib/laskin.rb",
|
618
|
+
"examples/i18n/fr/features/step_definitions/calculatrice_steps.rb",
|
619
|
+
"examples/i18n/fr/lib/calculatrice.rb",
|
620
|
+
"examples/i18n/he/features/step_definitons/calculator_steps.rb",
|
621
|
+
"examples/i18n/he/lib/calculator.rb",
|
622
|
+
"examples/i18n/hu/features/step_definitons/calculator_steps.rb",
|
623
|
+
"examples/i18n/hu/lib/calculator.rb",
|
624
|
+
"examples/i18n/id/features/step_definitons/calculator_steps.rb",
|
625
|
+
"examples/i18n/id/lib/calculator.rb",
|
626
|
+
"examples/i18n/it/features/step_definitons/calcolatrice_steps.rb",
|
627
|
+
"examples/i18n/it/lib/calcolatrice.rb",
|
628
|
+
"examples/i18n/ja/features/step_definitons/calculator_steps.rb",
|
629
|
+
"examples/i18n/ja/lib/calculator.rb",
|
630
|
+
"examples/i18n/ko/features/step_definitons/calculator_steps.rb",
|
631
|
+
"examples/i18n/ko/lib/calculator.rb",
|
632
|
+
"examples/i18n/lt/features/step_definitons/calculator_steps.rb",
|
633
|
+
"examples/i18n/lt/lib/calculator.rb",
|
634
|
+
"examples/i18n/lv/features/step_definitons/calculator_steps.rb",
|
635
|
+
"examples/i18n/lv/lib/calculator.rb",
|
636
|
+
"examples/i18n/no/features/step_definitons/kalkulator_steps.rb",
|
637
|
+
"examples/i18n/no/features/support/env.rb",
|
638
|
+
"examples/i18n/no/lib/kalkulator.rb",
|
639
|
+
"examples/i18n/pl/features/step_definitons/calculator_steps.rb",
|
640
|
+
"examples/i18n/pl/features/support/env.rb",
|
641
|
+
"examples/i18n/pl/lib/calculator.rb",
|
642
|
+
"examples/i18n/pt/features/step_definitions/calculadora_steps.rb",
|
643
|
+
"examples/i18n/pt/features/support/env.rb",
|
644
|
+
"examples/i18n/pt/lib/calculadora.rb",
|
645
|
+
"examples/i18n/ro/features/step_definitons/calculator_steps.rb",
|
646
|
+
"examples/i18n/ro/lib/calculator.rb",
|
647
|
+
"examples/i18n/ru/features/step_definitons/calculator_steps.rb",
|
648
|
+
"examples/i18n/ru/features/support/env.rb",
|
649
|
+
"examples/i18n/ru/features/support/world.rb",
|
650
|
+
"examples/i18n/ru/lib/calculator.rb",
|
651
|
+
"examples/i18n/se/features/step_definitons/kalkulator_steps.rb",
|
652
|
+
"examples/i18n/se/lib/kalkulator.rb",
|
653
|
+
"examples/i18n/sk/features/step_definitons/calculator_steps.rb",
|
654
|
+
"examples/i18n/sk/lib/calculator.rb",
|
655
|
+
"examples/i18n/sr/features/step_definitons/calculator_steps.rb",
|
656
|
+
"examples/i18n/sr/lib/calculator.rb",
|
657
|
+
"examples/i18n/sr-latn/features/step_definitons/calculator_steps.rb",
|
658
|
+
"examples/i18n/sr-latn/lib/calculator.rb",
|
659
|
+
"examples/i18n/tr/features/step_definitons/hesap_makinesi_adimlari.rb",
|
660
|
+
"examples/i18n/tr/lib/hesap_makinesi.rb",
|
661
|
+
"examples/i18n/uz/features/step_definitons/calculator_steps.rb",
|
662
|
+
"examples/i18n/uz/features/support/env.rb",
|
663
|
+
"examples/i18n/uz/features/support/world.rb",
|
664
|
+
"examples/i18n/uz/lib/calculator.rb",
|
665
|
+
"examples/i18n/zh-CN/features/step_definitons/calculator_steps.rb",
|
666
|
+
"examples/i18n/zh-CN/lib/calculator.rb",
|
667
|
+
"examples/i18n/zh-TW/features/step_definitons/calculator_steps.rb",
|
668
|
+
"examples/i18n/zh-TW/lib/calculator.rb",
|
669
|
+
"examples/java/features/step_definitons/hello_steps.rb",
|
670
|
+
"examples/java/features/step_definitons/tree_steps.rb",
|
671
|
+
"examples/junit/features/step_definitions/steps.rb",
|
672
|
+
"examples/ramaze/app.rb",
|
673
|
+
"examples/ramaze/features/step_definitions/add_steps.rb",
|
674
|
+
"examples/ramaze/features/support/env.rb",
|
675
|
+
"examples/ruby2python/features/step_definitions/fib_steps.rb",
|
676
|
+
"examples/ruby2python/features/support/env.rb",
|
677
|
+
"examples/selenium/features/step_definitons/search_steps.rb",
|
678
|
+
"examples/selenium/features/support/env.rb",
|
679
|
+
"examples/selenium_webrat/features/step_definitons/search_steps.rb",
|
680
|
+
"examples/selenium_webrat/features/support/env.rb",
|
681
|
+
"examples/self_test/features/step_definitions/sample_steps.rb",
|
682
|
+
"examples/self_test/features/support/env.rb",
|
683
|
+
"examples/self_test/tmp/features/step_definitions/steps.rb",
|
684
|
+
"examples/sinatra/app.rb",
|
685
|
+
"examples/sinatra/features/step_definitions/add_steps.rb",
|
686
|
+
"examples/sinatra/features/support/env.rb",
|
687
|
+
"examples/steps_library/features/step_definitions/steps_lib1.rb",
|
688
|
+
"examples/steps_library/features/step_definitions/steps_lib2.rb",
|
689
|
+
"examples/test_unit/features/step_definitions/test_unit_steps.rb",
|
690
|
+
"examples/tickets/features/229/tagged_hooks.rb",
|
691
|
+
"examples/tickets/features/270/back.steps.rb",
|
692
|
+
"examples/tickets/features/272/hooks_steps.rb",
|
693
|
+
"examples/tickets/features/279/py_string_indent.steps.rb",
|
694
|
+
"examples/tickets/features/301/filter_background_tagged_hooks_steps.rb",
|
695
|
+
"examples/tickets/features/lib/eatting_machine.rb",
|
696
|
+
"examples/tickets/features/lib/pantry.rb",
|
697
|
+
"examples/tickets/features/step_definitons/246_steps.rb",
|
698
|
+
"examples/tickets/features/step_definitons/248_steps.rb",
|
699
|
+
"examples/tickets/features/step_definitons/scenario_outline_steps.rb",
|
700
|
+
"examples/tickets/features/step_definitons/tickets_steps.rb",
|
701
|
+
"examples/watir/features/step_definitons/search_steps.rb",
|
702
|
+
"examples/watir/features/support/env.rb",
|
703
|
+
"examples/webrat/features/step_definitions/kvasir_steps.rb",
|
704
|
+
"examples/webrat/features/support/env.rb"
|
705
|
+
]
|
706
|
+
|
707
|
+
if s.respond_to? :specification_version then
|
708
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
709
|
+
s.specification_version = 3
|
710
|
+
|
711
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
712
|
+
s.add_runtime_dependency(%q<term-ansicolor>, ["= 1.0.4"])
|
713
|
+
s.add_runtime_dependency(%q<treetop>, ["= 1.4.2"])
|
714
|
+
s.add_runtime_dependency(%q<polyglot>, ["= 0.2.9"])
|
715
|
+
s.add_runtime_dependency(%q<builder>, ["= 2.1.2"])
|
716
|
+
s.add_runtime_dependency(%q<diff-lcs>, ["= 1.1.2"])
|
717
|
+
s.add_development_dependency(%q<nokogiri>, ["= 1.3.3"])
|
718
|
+
s.add_development_dependency(%q<prawn>, ["= 0.5.1"])
|
719
|
+
s.add_development_dependency(%q<rspec>, ["= 1.2.9"])
|
720
|
+
s.add_development_dependency(%q<spork>, ["= 0.7.2"])
|
721
|
+
else
|
722
|
+
s.add_dependency(%q<term-ansicolor>, ["= 1.0.4"])
|
723
|
+
s.add_dependency(%q<treetop>, ["= 1.4.2"])
|
724
|
+
s.add_dependency(%q<polyglot>, ["= 0.2.9"])
|
725
|
+
s.add_dependency(%q<builder>, ["= 2.1.2"])
|
726
|
+
s.add_dependency(%q<diff-lcs>, ["= 1.1.2"])
|
727
|
+
s.add_dependency(%q<nokogiri>, ["= 1.3.3"])
|
728
|
+
s.add_dependency(%q<prawn>, ["= 0.5.1"])
|
729
|
+
s.add_dependency(%q<rspec>, ["= 1.2.9"])
|
730
|
+
s.add_dependency(%q<spork>, ["= 0.7.2"])
|
731
|
+
end
|
732
|
+
else
|
733
|
+
s.add_dependency(%q<term-ansicolor>, ["= 1.0.4"])
|
734
|
+
s.add_dependency(%q<treetop>, ["= 1.4.2"])
|
735
|
+
s.add_dependency(%q<polyglot>, ["= 0.2.9"])
|
736
|
+
s.add_dependency(%q<builder>, ["= 2.1.2"])
|
737
|
+
s.add_dependency(%q<diff-lcs>, ["= 1.1.2"])
|
738
|
+
s.add_dependency(%q<nokogiri>, ["= 1.3.3"])
|
739
|
+
s.add_dependency(%q<prawn>, ["= 0.5.1"])
|
740
|
+
s.add_dependency(%q<rspec>, ["= 1.2.9"])
|
741
|
+
s.add_dependency(%q<spork>, ["= 0.7.2"])
|
742
|
+
end
|
743
|
+
end
|