mirror of
https://github.com/lostisland/faraday.git
synced 2025-10-05 00:05:35 -04:00
* Fixes rubocop Style/HashSyntax issues. * Fixes rubocop Style/HashSyntax issues in comments as well.
12 lines
182 B
Ruby
12 lines
182 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rake/testtask'
|
|
|
|
require 'rspec/core/rake_task'
|
|
RSpec::Core::RakeTask.new(:spec)
|
|
|
|
task default: :test
|
|
|
|
desc 'Run all tests'
|
|
task test: [:spec]
|