summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Speicher <rspeicher@gmail.com>2018-08-14 13:51:45 -0500
committerRobert Speicher <rspeicher@gmail.com>2018-08-15 16:04:11 -0500
commitc5c97dd39409290b02209d45b147babdcf1474b5 (patch)
treee8ef5d96655326fbae74b286ab9dfd3a80e9cafd
parent1a34780df5f18075277cb011b84bfc36c3214e79 (diff)
downloadgitlab-shell-c5c97dd39409290b02209d45b147babdcf1474b5.tar.gz
Remove guard and guard-rspec
-rw-r--r--Gemfile2
-rw-r--r--Gemfile.lock17
-rw-r--r--Guardfile23
3 files changed, 0 insertions, 42 deletions
diff --git a/Gemfile b/Gemfile
index e51f642..2896400 100644
--- a/Gemfile
+++ b/Gemfile
@@ -1,8 +1,6 @@
source "http://rubygems.org"
group :development, :test do
- gem 'guard', '~> 1.5.0'
- gem 'guard-rspec', '~> 2.1.0'
gem 'listen', '~> 0.5.0'
gem 'rspec', '~> 2.0'
gem 'rspec-its', '~> 1.0.0'
diff --git a/Gemfile.lock b/Gemfile.lock
index 82a3eea..54d0394 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -4,30 +4,16 @@ GEM
addressable (2.5.2)
public_suffix (>= 2.0.2, < 4.0)
ast (2.4.0)
- coderay (1.1.2)
crack (0.4.3)
safe_yaml (~> 1.0.0)
diff-lcs (1.3)
docile (1.1.5)
- guard (1.5.4)
- listen (>= 0.4.2)
- lumberjack (>= 1.0.2)
- pry (>= 0.9.10)
- thor (>= 0.14.6)
- guard-rspec (2.1.2)
- guard (>= 1.1)
- rspec (~> 2.11)
listen (0.5.3)
- lumberjack (1.0.13)
- method_source (0.9.0)
multi_json (1.13.1)
parallel (1.12.1)
parser (2.5.1.2)
ast (~> 2.4.0)
powerpack (0.1.2)
- pry (0.11.3)
- coderay (~> 1.1.0)
- method_source (~> 0.9.0)
public_suffix (3.0.2)
rainbow (2.2.2)
rake
@@ -57,7 +43,6 @@ GEM
multi_json (~> 1.0)
simplecov-html (~> 0.9.0)
simplecov-html (0.9.0)
- thor (0.20.0)
unicode-display_width (1.4.0)
vcr (4.0.0)
webmock (1.9.3)
@@ -68,8 +53,6 @@ PLATFORMS
ruby
DEPENDENCIES
- guard (~> 1.5.0)
- guard-rspec (~> 2.1.0)
listen (~> 0.5.0)
rspec (~> 2.0)
rspec-its (~> 1.0.0)
diff --git a/Guardfile b/Guardfile
deleted file mode 100644
index 421eaf3..0000000
--- a/Guardfile
+++ /dev/null
@@ -1,23 +0,0 @@
-# A sample Guardfile
-# More info at https://github.com/guard/guard#readme
-
-guard 'rspec' do
- watch(%r{^spec/.+_spec\.rb$})
- watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" }
- watch('spec/spec_helper.rb') { "spec" }
-
- # Rails example
- watch(%r{^app/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" }
- watch(%r{^app/(.*)(\.erb|\.haml)$}) { |m| "spec/#{m[1]}#{m[2]}_spec.rb" }
- watch(%r{^app/controllers/(.+)_(controller)\.rb$}) { |m| ["spec/routing/#{m[1]}_routing_spec.rb", "spec/#{m[2]}s/#{m[1]}_#{m[2]}_spec.rb", "spec/acceptance/#{m[1]}_spec.rb"] }
- watch(%r{^spec/support/(.+)\.rb$}) { "spec" }
- watch('config/routes.rb') { "spec/routing" }
- watch('app/controllers/application_controller.rb') { "spec/controllers" }
-
- # Capybara features specs
- watch(%r{^app/views/(.+)/.*\.(erb|haml)$}) { |m| "spec/features/#{m[1]}_spec.rb" }
-
- # Turnip features and steps
- watch(%r{^spec/acceptance/(.+)\.feature$})
- watch(%r{^spec/acceptance/steps/(.+)_steps\.rb$}) { |m| Dir[File.join("**/#{m[1]}.feature")][0] || 'spec/acceptance' }
-end