Sha256: ef7c8d8513d3c0c35faeb26710fd23db37c6bd5890b160492189da9627bf1c2c
Contents?: true
Size: 583 Bytes
Versions: 1
Compression:
Stored size: 583 Bytes
Contents
require 'bundler' rescue 'You must `gem install bundler` and `bundle install` to run rake tasks' require "bundler/gem_tasks" require "rspec" require 'rspec/core/rake_task' RSpec::Core::RakeTask.new('spec') do |spec| spec.pattern = "spec/**/*_spec.rb" # Run specs in random order to surface order dependencies. If you find an # order dependency and want to debug it, you can fix the order by providing # the seed, which is printed after each run. # --seed 1234 # spec.rspec_opts = '--order rand:16996' end task :default => :spec namespace :ez_enum do # TODO end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ez_enum-0.0.1 | Rakefile |