aboutsummaryrefslogtreecommitdiffstats
path: root/Rakefile
diff options
context:
space:
mode:
authorTeddy Wing2015-05-25 18:46:00 -0400
committerTeddy Wing2015-05-25 18:46:00 -0400
commit4ecd9b2127ff36f4809a13f65172cd5baa072934 (patch)
tree0eaafd004811dbe6dbac9f7c7c2cfd76b9d3fc9a /Rakefile
downloadBeginning-Ruby-Exercises-4ecd9b2127ff36f4809a13f65172cd5baa072934.tar.bz2
Initial commit. Mostly complete for today.
A set of basic Ruby exercises to get more familiar with functions, and some basic things with classes. The exercises are mostly complete as far as today is concerned. Includes solutions and tests. Will be shifting some files around to make it easier to run the tests when doing individual exercises.
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/Rakefile b/Rakefile
new file mode 100644
index 0000000..f1ab6b7
--- /dev/null
+++ b/Rakefile
@@ -0,0 +1,9 @@
+require 'rake'
+require 'rake/testtask'
+
+Rake::TestTask.new do |t|
+ t.libs << '.'
+ t.pattern = 'spec/**/*_spec.rb'
+end
+
+task :default => :test