Skip to content
Snippets Groups Projects
Commit 993fcc78 authored by Robert Speicher's avatar Robert Speicher
Browse files

Remove unused gems

parent 9841bb88
No related branches found
No related tags found
1 merge request!136Prepare for absorb
Loading
Loading
@@ -5,13 +5,10 @@ gemspec
group :development do
gem 'rubocop', '~> 0.43.0'
gem 'rubocop-rspec', '~> 1.8.0'
gem 'coveralls', require: false
gem 'rspec', '~> 3.0'
gem 'rspec-mocks'
gem 'rspec-its'
gem 'webmock'
gem 'guard'
gem 'guard-rspec'
gem 'pry'
gem 'rake'
end
Loading
Loading
# A sample Guardfile
# More info at https://github.com/guard/guard#readme
guard 'rspec' do
watch(%r{^spec/.+_spec\.rb$})
watch('spec/spec_helper.rb') { "spec" }
watch(%r{^lib/gitlab_git/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" }
watch(%r{^spec/support/(.+)\.rb$}) { "spec" }
end
if ENV['TRAVIS']
require 'coveralls'
Coveralls.wear!
else
require 'simplecov'
SimpleCov.start
end
require 'simplecov'
SimpleCov.start
 
require 'gitlab_git'
require 'pry'
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment