public
Rubygem
Description: Merb Core: All you need. None you don't.
Homepage: http://www.merbivore.com
Clone URL: git://github.com/wycats/merb-core.git
Use gem release task that's in Extlib now.
Thu Jul 24 12:06:08 -0700 2008
commit  abef2659e50a7103e3a1a9662ff09a038b3cf99e
tree    d404b640e7fa683ffce52accdc8f95373b5694cc
parent  46bf1222cf0f276f07edf41e66f2b3bf2122ba3e
...
6
7
8
 
 
9
10
11
...
82
83
84
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
85
86
87
...
6
7
8
9
10
11
12
13
...
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
0
@@ -6,6 +6,8 @@ require "rake/testtask"
0
 require "spec/rake/spectask"
0
 require "fileutils"
0
 
0
+require "extlib"
0
+
0
 def __DIR__
0
   File.dirname(__FILE__)
0
 end
0
@@ -82,6 +84,27 @@ task :uninstall => :clean do
0
   sh %{#{sudo} gem uninstall #{NAME}}
0
 end
0
 
0
+
0
+
0
+
0
+##############################################################################
0
+# Release
0
+##############################################################################
0
+RUBY_FORGE_PROJECT = "merb-core"
0
+
0
+PKG_NAME      = 'merb-core'
0
+PKG_BUILD     = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : ''
0
+PKG_VERSION   = Merb::VERSION + PKG_BUILD
0
+PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
0
+
0
+RELEASE_NAME  = "REL #{PKG_VERSION}"
0
+
0
+# FIXME: hey, someone take care of me
0
+RUBY_FORGE_USER    = ""
0
+
1
+require "extlib/tasks/release"
0
+
0
+
0
 namespace :github do
0
   desc "Update Github Gemspec"
0
   task :update_gemspec do

Comments

pmcgee Sat Aug 02 09:23:19 -0700 2008 at Rakefile L36

This does not seem to be in either merb-extlib or the extlib gem.

michaelklishin Sat Aug 02 14:19:22 -0700 2008

antares|extlib ls lib/extlib/tasks/release.rb lib/extlib/tasks/release.rb

irb(main):001:0> require ‘rubygems’ => true irb(main):002:0> require ‘extlib’ => true irb(main):003:0> require ‘rake’ => true irb(main):004:0> require ‘extlib/tasks/release’ => true