public
Description: The Ruby Implementation of SWX RPC
Homepage: http://swxruby.org
Clone URL: git://github.com/meekish/swxruby.git
Added task to sync docs with swxruby.org
Jed Hurt (author)
Wed Mar 12 13:25:16 -0700 2008
commit  98c617fe03a8580f88e7dcb76d24670e835f50fa
tree    1ccf74f9bf2a4e3171e08828ff728e9df288075f
parent  f5e151f42303e674a630945aeec81903c6d9baaa
...
3
4
5
 
6
7
8
9
 
 
 
 
 
10
11
12
...
14
15
16
 
17
18
19
...
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
...
20
21
22
23
24
25
26
0
@@ -3,10 +3,16 @@ require 'rake/clean'
0
 require 'rake/gempackagetask'
0
 require 'rake/rdoctask'
0
 require 'spec/rake/spectask'
0
+require './lib/swxruby'
0
 
0
 NAME = 'swxruby'
0
 SUDO = 'sudo'
0
 
0
+task :release do
0
+ sh("rubyforge add_release 4428 5478 #{SwxRuby::VERSION} ./pkg/swxruby-#{SwxRuby::VERSION}.gem")
0
+end
0
+
0
+
0
 # ==============================
0
 # = Packaging and Installation =
0
 # ==============================
0
@@ -14,6 +20,7 @@ CLEAN.include ["**/.*.swf", "pkg", "*.gem", "doc"]
0
 
0
 spec = Gem::Specification.new do |s|
0
   s.name = NAME
0
+ s.rubyforge_project = NAME
0
   s.version = SwxRuby::VERSION
0
   s.author = 'Jed Hurt'
0
   s.email = 'jed.hurt@gmail.com'

Comments

    No one has commented yet.