Skip to content

Commit ae9689f

Browse files
committed
remove cucumber completely
1 parent b581551 commit ae9689f

File tree

7 files changed

+3
-105
lines changed

7 files changed

+3
-105
lines changed

Gemfile

-2
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,6 @@ group :development, :test do
119119

120120
# Guard
121121
gem 'guard-rspec'
122-
gem 'guard-cucumber'
123122

124123
# Notification
125124
gem 'rb-fsevent', :require => darwin_only('rb-fsevent')
@@ -128,7 +127,6 @@ group :development, :test do
128127
end
129128

130129
group :test do
131-
gem 'cucumber-rails', :require => false
132130
gem "simplecov", :require => false
133131
gem "shoulda-matchers"
134132
gem 'email_spec'

Gemfile.lock

-16
Original file line numberDiff line numberDiff line change
@@ -134,15 +134,6 @@ GEM
134134
colored (1.2)
135135
colorize (0.5.8)
136136
crack (0.3.1)
137-
cucumber (1.2.1)
138-
builder (>= 2.1.2)
139-
diff-lcs (>= 1.1.3)
140-
gherkin (~> 2.11.0)
141-
json (>= 1.4.6)
142-
cucumber-rails (1.3.0)
143-
capybara (>= 1.1.2)
144-
cucumber (>= 1.1.8)
145-
nokogiri (>= 1.5.0)
146137
daemons (1.1.8)
147138
database_cleaner (0.8.0)
148139
devise (2.1.2)
@@ -171,8 +162,6 @@ GEM
171162
ffi (1.0.11)
172163
foreman (0.47.0)
173164
thor (>= 0.13.6)
174-
gherkin (2.11.0)
175-
json (>= 1.4.6)
176165
gherkin-ruby (0.2.1)
177166
git (1.2.5)
178167
github-markup (0.7.4)
@@ -187,9 +176,6 @@ GEM
187176
guard (1.3.2)
188177
listen (>= 0.4.2)
189178
thor (>= 0.14.6)
190-
guard-cucumber (1.2.0)
191-
cucumber (>= 1.2.0)
192-
guard (>= 1.1.0)
193179
guard-rspec (1.2.1)
194180
guard (>= 1.1)
195181
haml (3.1.6)
@@ -403,7 +389,6 @@ DEPENDENCIES
403389
chosen-rails
404390
coffee-rails (= 3.2.2)
405391
colored
406-
cucumber-rails
407392
database_cleaner
408393
devise (~> 2.1.0)
409394
draper
@@ -419,7 +404,6 @@ DEPENDENCIES
419404
grape (~> 0.2.1)
420405
grit!
421406
growl
422-
guard-cucumber
423407
guard-rspec
424408
haml-rails
425409
headless

config/cucumber.yml

-8
This file was deleted.

lib/tasks/cucumber.rake

-65
This file was deleted.

lib/tasks/gitlab/test.rake

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
namespace :gitlab do
2-
desc "GITLAB | Run both cucumber & rspec"
3-
task :test => ['cucumber', 'spec']
2+
desc "GITLAB | Run both spinach and rspec"
3+
task :test => ['spinach', 'spec']
44
end
5-

lib/tasks/travis.rake

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
task :travis do
2-
["cucumber", "rspec spec"].each do |cmd|
2+
["spinach", "rspec spec"].each do |cmd|
33
puts "Starting to run #{cmd}..."
44
system("export DISPLAY=:99.0 && bundle exec #{cmd}")
55
raise "#{cmd} failed!" unless $?.exitstatus == 0

script/cucumber

-10
This file was deleted.

0 commit comments

Comments
 (0)