Skip to content

Commit

Permalink
fix spec
Browse files Browse the repository at this point in the history
  • Loading branch information
johnnyshields committed Oct 19, 2024
1 parent 895d21f commit b019f64
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
#!/usr/bin/env rake
# -*- mode: ruby -*-

require 'rubygems'
require './lib/natural_sort.rb'
require 'rake/testtask'
require 'bundler/gem_tasks'
require 'rspec/core/rake_task'
require 'rubocop/rake_task'

task :default => :test
RuboCop::RakeTask.new(:rubocop)

Rake::TestTask.new do |t|
t.libs << 'test'
t.test_files = FileList['test/**/test_*.rb']
end
RSpec::Core::RakeTask.new(:spec)

task default: [:spec]

0 comments on commit b019f64

Please sign in to comment.