public
Description: ActiveRecord plugin for versioning your models.
Clone URL: git://github.com/technoweenie/acts_as_versioned.git
added links to collaboa and svn to readme

git-svn-id: http://svn.techno-weenie.net/projects/acts_as_versioned@98 
567b1171-46fb-0310-a4c9-b4bef9110e78
technoweenie (author)
Thu Sep 22 15:39:29 -0700 2005
commit  61dc5f7ebb7744178bca281c119a0fb6d4b6d9bf
tree    d0c422d41873bae499c592565c0e5bd33643001b
parent  c6b797a35a20d188d496e2bd2d2f99654afd5709
0
...
2
3
4
5
 
6
7
 
8
9
10
11
 
12
13
 
14
15
 
16
17
 
 
 
 
 
 
 
 
 
 
 
18
19
20
21
...
2
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
29
0
@@ -2,19 +2,27 @@
0
 
0
 This library adds simple versioning to an ActiveRecord module. ActiveRecord is required.
0
 
0
-== Install
0
+== Resources
0
 
0
-Gem installation:
0
+Install
0
 
0
- gem install acts_as_versioned
0
-
0
-Download:
0
+* gem install acts_as_versioned
0
 
0
- http://rubyforge.org/projects/ar-versioned/
0
+Rubyforge project
0
 
0
-== Documentation
0
+* http://rubyforge.org/projects/ar-versioned
0
 
0
-RDocs are online at http://ar-versioned.rubyforge.org
0
+RDocs
0
+
0
+* http://ar-versioned.rubyforge.org
0
+
0
+Subversion
0
+
0
+* http://techno-weenie.net/svn/projects/acts_as_versioned
0
+
0
+Collaboa
0
+
0
+* http://collaboa.techno-weenie.net/repository/browse/acts_as_versioned
0
 
0
 Special thanks to Dreamer on ##rubyonrails for help in early testing. His ServerSideWiki (http://serversidewiki.com)
0
 was the first project to use acts_as_versioned <em>in the wild</em>.
0
\ No newline at end of file
...
55
56
57
58
59
60
61
62
63
64
65
66
67
 
68
69
70
71
72
 
73
74
75
...
55
56
57
 
 
 
 
 
 
 
58
 
 
59
60
61
62
63
 
64
65
66
67
0
@@ -55,21 +55,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.