Sha256: dc66d72219871ac18aabd3cfb24fbe0f9a232847b0fd993f654b1f4d47f03eb8
Contents?: true
Size: 839 Bytes
Versions: 10
Compression:
Stored size: 839 Bytes
Contents
require "spec" require "spec/rake/spectask" require 'lib/is_paranoid.rb' Spec::Rake::SpecTask.new do |t| t.spec_opts = ['--options', "\"#{File.dirname(__FILE__)}/spec/spec.opts\""] t.spec_files = FileList['spec/**/*_spec.rb'] end begin require 'jeweler' Jeweler::Tasks.new do |s| s.name = %q{is_paranoid} s.summary = %q{ActiveRecord 2.3 compatible gem "allowing you to hide and restore records without actually deleting them." Yes, like acts_as_paranoid, only with less code and less complexity.} s.email = %q{jeff@semanticart.com} s.homepage = %q{http://github.com/jchupp/is_paranoid/} s.description = "" s.authors = ["Jeffrey Chupp"] end rescue LoadError puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com" end task :default => :spec
Version data entries
10 entries across 10 versions & 6 rubygems