diff options
| author | Teddy Wing | 2015-05-25 18:46:00 -0400 |
|---|---|---|
| committer | Teddy Wing | 2015-05-25 18:46:00 -0400 |
| commit | 4ecd9b2127ff36f4809a13f65172cd5baa072934 (patch) | |
| tree | 0eaafd004811dbe6dbac9f7c7c2cfd76b9d3fc9a /Rakefile | |
| download | Beginning-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-- | Rakefile | 9 |
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 |
