You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@whimsical.apache.org by ru...@apache.org on 2019/05/12 12:25:16 UTC

[whimsy] branch master updated: add a Rakefile

This is an automated email from the ASF dual-hosted git repository.

rubys pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/whimsy.git


The following commit(s) were added to refs/heads/master by this push:
     new cbd6df6  add a Rakefile
cbd6df6 is described below

commit cbd6df647049edfc615128ead05e9e8bd71cde15
Author: Sam Ruby <ru...@intertwingly.net>
AuthorDate: Sun May 12 08:25:04 2019 -0400

    add a Rakefile
---
 lib/Rakefile | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/lib/Rakefile b/lib/Rakefile
new file mode 100644
index 0000000..eb2717f
--- /dev/null
+++ b/lib/Rakefile
@@ -0,0 +1,4 @@
+require 'rspec/core/rake_task'
+RSpec::Core::RakeTask.new(:spec)
+task :default => :spec
+task :test => :spec