Changeset 365 for lang/ruby/module-pluggable
- Timestamp:
- 10/04/07 23:52:45 (4 years ago)
- Location:
- lang/ruby/module-pluggable
- Files:
-
- 1 modified
- 1 moved
-
Rakefile (modified) (2 diffs)
-
test/module-pluggable_test.rb (moved) (moved from lang/ruby/module-pluggable/test/test_module-pluggable.rb)
Legend:
- Unmodified
- Added
- Removed
-
lang/ruby/module-pluggable/Rakefile
r361 r365 13 13 EMAIL = "cho45@lowreal.net" 14 14 DESCRIPTION = "" 15 RUBYFORGE_PROJECT = "module -pluggable"15 RUBYFORGE_PROJECT = "modulepluggable" 16 16 HOMEPATH = "http://#{RUBYFORGE_PROJECT}.rubyforge.org" 17 17 BIN_FILES = %w( ) … … 116 116 end 117 117 118 desc 'Package and upload the release to rubyforge.' 119 task :release => [:clean, :package] do |t| 120 v = ENV["VERSION"] or abort "Must supply VERSION=x.y.z" 121 abort "Versions don't match #{v} vs #{VERS}" unless v == VERS 122 pkg = "pkg/#{NAME}-#{VERS}" 118 123 124 rf = RubyForge.new 125 puts "Logging in" 126 rf.login 127 128 c = rf.userconfig 129 # c["release_notes"] = description if description 130 # c["release_changes"] = changes if changes 131 c["preformatted"] = true 132 133 files = [ 134 "#{pkg}.tgz", 135 "#{pkg}.gem" 136 ].compact 137 138 puts "Releasing #{NAME} v. #{VERS}" 139 rf.add_release RUBYFORGE_PROJECT, NAME, VERS, *files 140 end
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)