Sha256: dd928a821e434733223db2f1477d8717b7c552d905bd134f7948eecc08d2c25c
Contents?: true
Size: 323 Bytes
Versions: 5
Compression:
Stored size: 323 Bytes
Contents
#!/usr/bin/env rake require "bundler/gem_tasks" require 'rspec/core' require 'rspec/core/rake_task' RSpec::Core::RakeTask.new(:spec) do |spec| spec.pattern = FileList['spec/**/*_spec.rb'] end RSpec::Core::RakeTask.new(:rcov) do |spec| spec.pattern = 'spec/**/*_spec.rb' spec.rcov = true end task :default => :spec
Version data entries
5 entries across 5 versions & 2 rubygems
Version | Path |
---|---|
acts_as_hashed-1.1.0 | Rakefile |
pair-0.0.4 | Rakefile |
pair-0.0.3 | Rakefile |
pair-0.0.2 | Rakefile |
pair-0.0.1 | Rakefile |