Sha256: 7ca23b2ff3f77f0d3a0bda7bec08a96af802effc7b8d0004485d8f36242c6740
Contents?: true
Size: 407 Bytes
Versions: 2
Compression:
Stored size: 407 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 -r acts_as_file' end task :c => :console
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
acts_as_file-0.0.2 | Rakefile |
acts_as_file-0.0.1 | Rakefile |