diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2017-06-30 19:12:58 +0200 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2017-06-30 19:12:58 +0200 |
commit | dd50144bcd4dbd605995123ab5afc99e40e9a630 (patch) | |
tree | 81698d44cf2f9dd62e24a95f945f6904689be2f2 /Rakefile | |
download | rails-dd50144bcd4dbd605995123ab5afc99e40e9a630.tar.gz rails-dd50144bcd4dbd605995123ab5afc99e40e9a630.tar.bz2 rails-dd50144bcd4dbd605995123ab5afc99e40e9a630.zip |
First sketching
Diffstat (limited to 'Rakefile')
-rw-r--r-- | Rakefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Rakefile b/Rakefile new file mode 100644 index 0000000000..a61ad18bca --- /dev/null +++ b/Rakefile @@ -0,0 +1,10 @@ +require "bundler/setup" +require "bundler/gem_tasks" +require "rake/testtask" + +Rake::TestTask.new do |test| + test.libs << "test" + test.test_files = FileList["test/*_test.rb"] +end + +task default: :test |