Sha256: abede2be435356bb2a3fc7da8a95b184ae5e1ef77a4e3e3217fdecc4d493f201

Contents?: true

Size: 406 Bytes

Versions: 8

Compression:

Stored size: 406 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_git'
end
task :c => :console

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
acts_as_git-0.2.5 Rakefile
acts_as_git-0.2.4 Rakefile
acts_as_git-0.2.3 Rakefile
acts_as_git-0.2.2 Rakefile
acts_as_git-0.2.1 Rakefile
acts_as_git-0.2.0 Rakefile
acts_as_git-0.1.1 Rakefile
acts_as_git-0.1.0 Rakefile