sander6-enygma 0.0.7 → 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/Rakefile ADDED
@@ -0,0 +1,19 @@
1
+ require 'rubygems'
2
+ require 'spec/rake/spectask'
3
+
4
+ Spec::Rake::SpecTask.new do |t|
5
+ t.spec_files = FileList['spec/**/*_spec.rb']
6
+ end
7
+
8
+ require 'rake'
9
+ require 'spec/rake/spectask'
10
+
11
+ desc "Run all examples with RCov"
12
+ Spec::Rake::SpecTask.new('rcov') do |t|
13
+ t.spec_files = FileList['spec/**/*.rb']
14
+ t.rcov = true
15
+ t.rcov_opts = ['--exclude', 'spec']
16
+ end
17
+
18
+ desc "Run all the specs for Enygma"
19
+ task :default => :spec