Skip to content

Commit

Permalink
Improve Gemfile
Browse files Browse the repository at this point in the history
  • Loading branch information
n-rodriguez committed Nov 11, 2024
1 parent 5c0d349 commit c9b8cf5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 15 deletions.
14 changes: 8 additions & 6 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,16 @@ source 'https://rubygems.org'

gemspec

gem 'guard-rspec'
gem 'pry'
# Dev libs
gem 'rake'
gem 'rspec'
gem 'rubocop'
gem 'rubocop-performance'
gem 'rubocop-rake'
gem 'rubocop-rspec'
gem 'simplecov'
gem 'vcr'
gem 'webmock'

# Dev tools / linter
gem 'guard-rspec', require: false
gem 'rubocop', require: false
gem 'rubocop-performance', require: false
gem 'rubocop-rake', require: false
gem 'rubocop-rspec', require: false
9 changes: 0 additions & 9 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,3 @@ require 'rspec/core/rake_task'

RSpec::Core::RakeTask.new(:spec)
task default: :spec

desc 'Open a Ruby irb console with the gem loaded'
task :console do
require 'pry'
require 'icinga2/api'
puts 'Loaded Icinga2::API'
ARGV.clear
Pry.start
end

0 comments on commit c9b8cf5

Please sign in to comment.