summaryrefslogtreecommitdiff
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
parent92e199d5db76c5fdebf58af53fc7557b42c06b3e (diff)
added rspec for testing and a thor task
-rw-r--r--.rspec3
-rw-r--r--Thorfile6
2 files changed, 9 insertions, 0 deletions
diff --git a/.rspec b/.rspec
new file mode 100644
index 0000000..3622215
--- /dev/null
+++ b/.rspec
@@ -0,0 +1,3 @@
+--color
+--format documentation
+--order random
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