public
Description: ActiveRecord plugin allowing you to hide and restore records without actually deleting them.
Clone URL: git://github.com/technoweenie/acts_as_paranoid.git
added links to collaboa and svn to readme

git-svn-id: http://svn.techno-weenie.net/projects/acts_as_paranoid@98 
567b1171-46fb-0310-a4c9-b4bef9110e78
technoweenie (author)
Thu Sep 22 15:39:29 -0700 2005
commit  fa8ae0bcb9b4f0f801316fa36939ae9e0db3283a
tree    89b68a2853fe9aa666da0cbfd28b08e720e6b799
parent  730bd1c494e3fa904104401ec9d02a6a62629601
0
...
3
4
5
6
 
7
8
 
9
10
11
12
 
13
14
 
15
16
 
17
18
19
 
 
 
 
 
 
 
 
 
 
 
20
...
3
4
5
 
6
7
 
8
9
 
 
 
10
11
 
12
13
 
14
15
 
16
17
18
19
20
21
22
23
24
25
26
27
28
0
@@ -3,16 +3,24 @@
0
 Overrides some basic methods for the current model so that calling #destroy sets a 'deleted_at' field to the
0
 current timestamp. ActiveRecord is required.
0
 
0
-== Install
0
+== Resources
0
 
0
-Gem installation:
0
+Install
0
 
0
- gem install acts_as_paranoid
0
-
0
-Download:
0
+* gem install acts_as_paranoid
0
 
0
- http://rubyforge.org/projects/ar-paranoid/
0
+Rubyforge project
0
 
0
-== Documentation
0
+* http://rubyforge.org/projects/ar-paranoid
0
 
0
-RDocs are online at http://ar-paranoid.rubyforge.org
0
\ No newline at end of file
0
+RDocs
0
+
0
+* http://ar-paranoid.rubyforge.org
0
+
0
+Subversion
0
+
0
+* http://techno-weenie.net/svn/projects/acts_as_paranoid
0
+
0
+Collaboa
0
+
0
+* http://collaboa.techno-weenie.net/repository/browse/acts_as_paranoid
0
\ No newline at end of file
...
53
54
55
56
57
58
59
60
61
62
63
64
65
 
66
67
68
69
70
 
71
72
73
...
53
54
55
 
 
 
 
 
 
 
56
 
 
57
58
59
60
61
 
62
63
64
65
0
@@ -53,21 +53,13 @@ Rake::GemPackageTask.new(spec) do |pkg|
0
   pkg.need_tar = true
0
 end
0
 
0
-desc "Publish the gem"
0
-task :pgem => [:package] do
0
- Rake::SshFilePublisher.new(PROD_HOST, "public_html/code/gems", "pkg", "#{PKG_FILE_NAME}.gem").upload
0
- Rake::SshFilePublisher.new(PROD_HOST, "public_html/code/pkg", "pkg", "#{PKG_FILE_NAME}.tgz").upload
0
- %x{ssh #{PROD_HOST} 'update_gems'}
0
-end
0
-
0
 desc "Publish the API documentation"
0
-task :pdoc => [:rdoc] do
0
- Rake::SshDirPublisher.new(PROD_HOST, "public_html/code/doc/#{PKG_NAME}", "doc").upload
0
+task :pdoc => [:rdoc] do
0
   Rake::RubyForgePublisher.new(RUBY_FORGE_PROJECT, RUBY_FORGE_USER).upload
0
 end
0
 
0
 desc 'Publish the gem and API docs'
0
-task :publish => [:pgem, :pdoc, :rubyforge_upload]
0
+task :publish => [:pdoc, :rubyforge_upload]
0
 
0
 desc "Publish the release files to RubyForge."
0
 task :rubyforge_upload do

Comments

    No one has commented yet.