Sha256: f93d5bdc157eee48f87c50a4d539ddc2ca0381cb62206e4cc0ddd1d001ba0157
Contents?: true
Size: 518 Bytes
Versions: 2
Compression:
Stored size: 518 Bytes
Contents
# coding: utf-8 require 'bundler/gem_tasks' require 'rspec/core/rake_task' RSpec::Core::RakeTask.new(:spec) do |t| t.rspec_opts = ["-c", "-f progress"] # '--format specdoc' t.pattern = 'spec/**/*_spec.rb' end task :test => :spec task :default => :spec desc 'Open an irb session preloaded with the gem library' task :console do sh 'irb -rubygems -I lib -I spec -r acts_as_array -r spec_helper -r model' end task :c => :console $LOAD_PATH.unshift(File.dirname(__FILE__) + '/spec') require 'migrate_tasks'
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
acts_as_array-0.0.2 | Rakefile |
acts_as_array-0.0.1 | Rakefile |