public
Description: DEFUNCT: ActiveRecord 2.3 compatible gem "allowing you to hide and restore records without actually deleting them." Yes, like acts_as_paranoid, only implemented differently...
Homepage: http://semanticart.github.com/is_paranoid/
Clone URL: git://github.com/semanticart/is_paranoid.git
is_paranoid / Rakefile
100644 24 lines (21 sloc) 0.839 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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