diff options
| author | Gibheer <gibheer@gmail.com> | 2012-10-11 06:36:36 +0200 | 
|---|---|---|
| committer | Gibheer <gibheer@gmail.com> | 2012-10-11 06:36:36 +0200 | 
| commit | 1de40f78774bc3a274d219024e1b29466b84aacc (patch) | |
| tree | b8457ffec01e14f26b36d24840ea04cb1e771714 /Thorfile | |
| parent | 92e199d5db76c5fdebf58af53fc7557b42c06b3e (diff) | |
added rspec for testing and a thor task
Diffstat (limited to 'Thorfile')
| -rw-r--r-- | Thorfile | 6 | 
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 | 
