tonytonyjan / jaro_winkler

Ruby & C implementation of Jaro-Winkler distance algorithm which supports UTF-8 string.
MIT License
192 stars 29 forks source link

Rename Rake tasks for test #26

Closed bquorning closed 5 years ago

bquorning commented 5 years ago

Calling Rake::TestTask.new twice without an argument will result in just one test task called test.

This commit renames rake test to rake test:compiled, and fixes the second Rake test task which is now named rake test:pure_ruby. Additionally it specifies that test:compiled depends on :compile (I noticed this when trying to run the tests locally), and rake default is changed to run these two test tasks.

tonytonyjan commented 5 years ago

@bquorning Thanks for your contribution! 🍻