mirror of
https://github.com/lostisland/faraday.git
synced 2025-10-04 00:02:03 -04:00
13 lines
209 B
Ruby
13 lines
209 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rspec/core/rake_task'
|
|
require 'bundler'
|
|
|
|
Bundler::GemHelper.install_tasks
|
|
|
|
RSpec::Core::RakeTask.new(:spec) do |task|
|
|
task.ruby_opts = %w[-W]
|
|
end
|
|
|
|
task default: :spec
|