aboutsummaryrefslogtreecommitdiff
path: root/Thorfile
diff options
context:
space:
mode:
authorGibheer <gibheer@gmail.com>2012-10-11 06:36:36 +0200
committerGibheer <gibheer@gmail.com>2012-10-11 06:36:36 +0200
commit1de40f78774bc3a274d219024e1b29466b84aacc (patch)
treeb8457ffec01e14f26b36d24840ea04cb1e771714 /Thorfile
parent92e199d5db76c5fdebf58af53fc7557b42c06b3e (diff)
added rspec for testing and a thor task
Diffstat (limited to 'Thorfile')
-rw-r--r--Thorfile6
1 files changed, 6 insertions, 0 deletions
diff --git a/Thorfile b/Thorfile
new file mode 100644
index 0000000..c641ff7
--- /dev/null
+++ b/Thorfile
@@ -0,0 +1,6 @@
+class Default < Thor
+ desc 'spec', 'run all specs'
+ def spec
+ exec 'rspec'
+ end
+end