bluecloth 2.0.5-x86-mingw32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (109) hide show
  1. data/ChangeLog +784 -0
  2. data/LICENSE +27 -0
  3. data/LICENSE.discount +47 -0
  4. data/README +81 -0
  5. data/Rakefile +346 -0
  6. data/Rakefile.local +63 -0
  7. data/bin/bluecloth +84 -0
  8. data/ext/Csio.c +61 -0
  9. data/ext/VERSION +1 -0
  10. data/ext/amalloc.h +29 -0
  11. data/ext/bluecloth.c +377 -0
  12. data/ext/config.h +51 -0
  13. data/ext/css.c +76 -0
  14. data/ext/cstring.h +74 -0
  15. data/ext/docheader.c +43 -0
  16. data/ext/extconf.rb +48 -0
  17. data/ext/generate.c +1481 -0
  18. data/ext/markdown.c +970 -0
  19. data/ext/markdown.h +145 -0
  20. data/ext/mkdio.c +303 -0
  21. data/ext/mkdio.h +78 -0
  22. data/ext/resource.c +155 -0
  23. data/ext/version.c +28 -0
  24. data/ext/xml.c +82 -0
  25. data/ext/xmlpage.c +48 -0
  26. data/lib/bluecloth.rb +161 -0
  27. data/rake/191_compat.rb +26 -0
  28. data/rake/dependencies.rb +76 -0
  29. data/rake/helpers.rb +412 -0
  30. data/rake/hg.rb +214 -0
  31. data/rake/manual.rb +782 -0
  32. data/rake/packaging.rb +135 -0
  33. data/rake/publishing.rb +321 -0
  34. data/rake/rdoc.rb +30 -0
  35. data/rake/style.rb +62 -0
  36. data/rake/svn.rb +668 -0
  37. data/rake/testing.rb +187 -0
  38. data/rake/verifytask.rb +64 -0
  39. data/rake/win32.rb +190 -0
  40. data/spec/bluecloth/101_changes_spec.rb +141 -0
  41. data/spec/bluecloth/autolinks_spec.rb +49 -0
  42. data/spec/bluecloth/blockquotes_spec.rb +143 -0
  43. data/spec/bluecloth/code_spans_spec.rb +164 -0
  44. data/spec/bluecloth/emphasis_spec.rb +164 -0
  45. data/spec/bluecloth/entities_spec.rb +65 -0
  46. data/spec/bluecloth/hrules_spec.rb +90 -0
  47. data/spec/bluecloth/images_spec.rb +92 -0
  48. data/spec/bluecloth/inline_html_spec.rb +238 -0
  49. data/spec/bluecloth/links_spec.rb +171 -0
  50. data/spec/bluecloth/lists_spec.rb +294 -0
  51. data/spec/bluecloth/paragraphs_spec.rb +75 -0
  52. data/spec/bluecloth/titles_spec.rb +305 -0
  53. data/spec/bluecloth_spec.rb +250 -0
  54. data/spec/bugfix_spec.rb +136 -0
  55. data/spec/contributions_spec.rb +85 -0
  56. data/spec/data/antsugar.txt +34 -0
  57. data/spec/data/markdowntest/Amps and angle encoding.html +17 -0
  58. data/spec/data/markdowntest/Amps and angle encoding.text +21 -0
  59. data/spec/data/markdowntest/Auto links.html +18 -0
  60. data/spec/data/markdowntest/Auto links.text +13 -0
  61. data/spec/data/markdowntest/Backslash escapes.html +118 -0
  62. data/spec/data/markdowntest/Backslash escapes.text +120 -0
  63. data/spec/data/markdowntest/Blockquotes with code blocks.html +15 -0
  64. data/spec/data/markdowntest/Blockquotes with code blocks.text +11 -0
  65. data/spec/data/markdowntest/Code Blocks.html +18 -0
  66. data/spec/data/markdowntest/Code Blocks.text +14 -0
  67. data/spec/data/markdowntest/Code Spans.html +5 -0
  68. data/spec/data/markdowntest/Code Spans.text +5 -0
  69. data/spec/data/markdowntest/Hard-wrapped paragraphs with list-like lines.html +8 -0
  70. data/spec/data/markdowntest/Hard-wrapped paragraphs with list-like lines.text +8 -0
  71. data/spec/data/markdowntest/Horizontal rules.html +71 -0
  72. data/spec/data/markdowntest/Horizontal rules.text +67 -0
  73. data/spec/data/markdowntest/Inline HTML (Advanced).html +15 -0
  74. data/spec/data/markdowntest/Inline HTML (Advanced).text +15 -0
  75. data/spec/data/markdowntest/Inline HTML (Simple).html +72 -0
  76. data/spec/data/markdowntest/Inline HTML (Simple).text +69 -0
  77. data/spec/data/markdowntest/Inline HTML comments.html +13 -0
  78. data/spec/data/markdowntest/Inline HTML comments.text +13 -0
  79. data/spec/data/markdowntest/Links, inline style.html +11 -0
  80. data/spec/data/markdowntest/Links, inline style.text +12 -0
  81. data/spec/data/markdowntest/Links, reference style.html +52 -0
  82. data/spec/data/markdowntest/Links, reference style.text +71 -0
  83. data/spec/data/markdowntest/Links, shortcut references.html +9 -0
  84. data/spec/data/markdowntest/Links, shortcut references.text +20 -0
  85. data/spec/data/markdowntest/Literal quotes in titles.html +3 -0
  86. data/spec/data/markdowntest/Literal quotes in titles.text +7 -0
  87. data/spec/data/markdowntest/Markdown Documentation - Basics.html +314 -0
  88. data/spec/data/markdowntest/Markdown Documentation - Basics.text +306 -0
  89. data/spec/data/markdowntest/Markdown Documentation - Syntax.html +942 -0
  90. data/spec/data/markdowntest/Markdown Documentation - Syntax.text +888 -0
  91. data/spec/data/markdowntest/Nested blockquotes.html +9 -0
  92. data/spec/data/markdowntest/Nested blockquotes.text +5 -0
  93. data/spec/data/markdowntest/Ordered and unordered lists.html +148 -0
  94. data/spec/data/markdowntest/Ordered and unordered lists.text +131 -0
  95. data/spec/data/markdowntest/Strong and em together.html +7 -0
  96. data/spec/data/markdowntest/Strong and em together.text +7 -0
  97. data/spec/data/markdowntest/Tabs.html +25 -0
  98. data/spec/data/markdowntest/Tabs.text +21 -0
  99. data/spec/data/markdowntest/Tidyness.html +8 -0
  100. data/spec/data/markdowntest/Tidyness.text +5 -0
  101. data/spec/data/ml-announce.txt +17 -0
  102. data/spec/data/re-overflow.txt +67 -0
  103. data/spec/data/re-overflow2.txt +281 -0
  104. data/spec/discount_spec.rb +67 -0
  105. data/spec/lib/constants.rb +5 -0
  106. data/spec/lib/helpers.rb +137 -0
  107. data/spec/lib/matchers.rb +235 -0
  108. data/spec/markdowntest_spec.rb +79 -0
  109. metadata +329 -0
data/rake/packaging.rb ADDED
@@ -0,0 +1,135 @@
1
+ #
2
+ # Packaging Rake Tasks
3
+
4
+ #
5
+
6
+ require 'rbconfig'
7
+ require 'pathname'
8
+ require 'rake/packagetask'
9
+ require 'rake/gempackagetask'
10
+
11
+ require Pathname( __FILE__ ).dirname.expand_path + 'hg.rb'
12
+
13
+ include Config
14
+
15
+ ### Task: gem
16
+ ### Task: package
17
+ Rake::PackageTask.new( PKG_NAME, PKG_VERSION ) do |task|
18
+ task.need_tar_gz = true
19
+ task.need_tar_bz2 = true
20
+ task.need_zip = true
21
+ task.package_dir = PKGDIR.to_s
22
+ task.package_files = RELEASE_FILES.collect {|f| f.to_s }
23
+ end
24
+ task :package => [:gem]
25
+
26
+
27
+ ### Task: gem
28
+ gempath = PKGDIR + GEM_FILE_NAME
29
+
30
+ desc "Build a RubyGem package (#{GEM_FILE_NAME})"
31
+ task :gem => gempath.to_s
32
+ file gempath.to_s => [PKGDIR.to_s] + GEMSPEC.files do
33
+ when_writing( "Creating GEM" ) do
34
+ Gem::Builder.new( GEMSPEC ).build
35
+ verbose( true ) do
36
+ mv GEM_FILE_NAME, gempath
37
+ end
38
+ end
39
+ end
40
+
41
+
42
+ prerelease_gempath = PKGDIR + SNAPSHOT_GEM_NAME
43
+
44
+ desc "Build a pre-release RubyGem package"
45
+ task :prerelease_gem => prerelease_gempath.to_s
46
+ file prerelease_gempath.to_s => [PKGDIR.to_s] + GEMSPEC.files do
47
+ when_writing( "Creating prerelease GEM" ) do
48
+ gemspec = GEMSPEC.clone
49
+ gemspec.version = Gem::Version.create( "%s.%s" % [GEMSPEC.version, PKG_BUILD] )
50
+ Gem::Builder.new( gemspec ).build
51
+ verbose( true ) do
52
+ mv SNAPSHOT_GEM_NAME, prerelease_gempath
53
+ end
54
+ end
55
+ end
56
+
57
+
58
+ ### Task: install
59
+ desc "Install #{PKG_NAME} as a conventional library"
60
+ task :install => "spec:quiet" do
61
+ log "Installing #{PKG_NAME} as a conventional library"
62
+ sitelib = Pathname.new( CONFIG['sitelibdir'] )
63
+ sitearch = Pathname.new( CONFIG['sitearchdir'] )
64
+ Dir.chdir( LIBDIR ) do
65
+ LIB_FILES.collect {|path| Pathname(path) }.each do |libfile|
66
+ relpath = libfile.relative_path_from( LIBDIR )
67
+ target = sitelib + relpath
68
+ FileUtils.mkpath target.dirname,
69
+ :mode => 0755, :verbose => true, :noop => $dryrun unless target.dirname.directory?
70
+ FileUtils.install relpath, target,
71
+ :mode => 0644, :verbose => true, :noop => $dryrun
72
+ end
73
+ end
74
+ if EXTDIR.exist?
75
+ trace " looking for a binary extension (%s)" % [ EXTDIR + "*.#{Config::CONFIG['DLEXT']}" ]
76
+ Dir.chdir( EXTDIR ) do
77
+ Pathname.glob( "*.#{Config::CONFIG['DLEXT']}" ) do |dl|
78
+ trace " found: #{dl}"
79
+ target = sitearch + dl.basename
80
+ FileUtils.install dl, target,
81
+ :mode => 0755, :verbose => true, :noop => $dryrun
82
+ end
83
+ end
84
+ end
85
+ end
86
+
87
+
88
+
89
+ ### Task: install_gem
90
+ desc "Install #{PKG_NAME} from a locally-built gem"
91
+ task :install_gem => [:package] do
92
+ $stderr.puts
93
+ installer = Gem::Installer.new( %{pkg/#{PKG_FILE_NAME}.gem} )
94
+ installer.install
95
+ end
96
+
97
+
98
+ ### Task: uninstall
99
+ desc "Uninstall #{PKG_NAME} if it's been installed as a conventional library"
100
+ task :uninstall do
101
+ log "Uninstalling conventionally-installed #{PKG_NAME} library files"
102
+ sitelib = Pathname.new( CONFIG['sitelibdir'] )
103
+ sitearch = Pathname.new( CONFIG['sitearchdir'] )
104
+
105
+ Dir.chdir( LIBDIR ) do
106
+ LIB_FILES.collect {|path| Pathname(path) }.each do |libfile|
107
+ relpath = libfile.relative_path_from( LIBDIR )
108
+ target = sitelib + relpath
109
+ FileUtils.rm_f target, :verbose => true, :noop => $dryrun
110
+ FileUtils.rm_rf( target.dirname, :verbose => true, :noop => $dryrun ) if
111
+ target.dirname.entries.empty?
112
+ end
113
+ end
114
+ if EXTDIR.exist?
115
+ trace " looking for a binary extension (%s)" % [ EXTDIR + "*.#{Config::CONFIG['DLEXT']}" ]
116
+ Dir.chdir( EXTDIR ) do
117
+ Pathname.glob( "*.#{Config::CONFIG['DLEXT']}" ) do |dl|
118
+ trace " found: #{dl}"
119
+ target = sitearch + dl.basename
120
+ FileUtils.rm target, :verbose => true, :noop => $dryrun
121
+ end
122
+ end
123
+ end
124
+ end
125
+
126
+
127
+ ### Task: uninstall_gem
128
+ desc "Install the #{PKG_NAME} gem"
129
+ task :uninstall_gem => [:clean] do
130
+ uninstaller = Gem::Uninstaller.new( PKG_FILE_NAME )
131
+ uninstaller.uninstall
132
+ end
133
+
134
+
135
+
@@ -0,0 +1,321 @@
1
+ #####################################################################
2
+ ### P U B L I C A T I O N T A S K S
3
+ #####################################################################
4
+
5
+ RELEASE_NOTES_FILE = 'release.notes'
6
+ RELEASE_ANNOUNCE_FILE = 'release.ann'
7
+
8
+ require 'net/smtp'
9
+ require 'net/protocol'
10
+ require 'openssl'
11
+
12
+ $publish_privately = false
13
+
14
+ ### Add SSL to Net::SMTP
15
+ class Net::SMTP
16
+ def ssl_start( helo='localhost.localdomain', user=nil, secret=nil, authtype=nil )
17
+ if block_given?
18
+ begin
19
+ do_ssl_start( helo, user, secret, authtype )
20
+ return yield( self )
21
+ ensure
22
+ do_finish
23
+ end
24
+ else
25
+ do_ssl_start( helo, user, secret, authtype )
26
+ return self
27
+ end
28
+ end
29
+
30
+
31
+ #######
32
+ private
33
+ #######
34
+
35
+ def do_ssl_start( helodomain, user, secret, authtype )
36
+ raise IOError, 'SMTP session already started' if @started
37
+ check_auth_args user, secret, authtype if user or secret
38
+
39
+ # Open the connection
40
+ @debug_output << "opening connection to #{@address}...\n" if @debug_output
41
+ sock = timeout( @open_timeout ) { TCPsocket.new(@address, @port) }
42
+
43
+ # Wrap it in the SSL layer
44
+ ssl_context = OpenSSL::SSL::SSLContext.new
45
+ ssl_context.verify_mode = OpenSSL::SSL::VERIFY_NONE
46
+ ssl_sock = OpenSSL::SSL::SSLSocket.new( sock, ssl_context )
47
+ ssl_sock.sync_close = true
48
+ ssl_sock.connect
49
+
50
+ # Wrap it in the message-oriented IO layer
51
+ sslmsgio = Net::InternetMessageIO.new( ssl_sock )
52
+ sslmsgio.read_timeout = @read_timeout
53
+ sslmsgio.debug_output = @debug_output
54
+
55
+ @socket = sslmsgio
56
+
57
+ check_response(critical { recv_response() })
58
+ begin
59
+ if @esmtp
60
+ ehlo helodomain
61
+ else
62
+ helo helodomain
63
+ end
64
+ rescue ProtocolError
65
+ if @esmtp
66
+ @esmtp = false
67
+ @error_occured = false
68
+ retry
69
+ end
70
+ raise
71
+ end
72
+ authenticate user, secret, authtype if user
73
+ @started = true
74
+ ensure
75
+ @socket.close if not @started and @socket and not @socket.closed?
76
+ end
77
+ end
78
+
79
+
80
+ begin
81
+ gem 'text-format'
82
+
83
+ require 'time'
84
+ require 'rake/tasklib'
85
+ require 'tmail'
86
+ require 'net/smtp'
87
+ require 'etc'
88
+ require 'rubyforge'
89
+ require 'socket'
90
+ require 'text/format'
91
+
92
+ ### Generate a valid RFC822 message-id
93
+ def gen_message_id
94
+ return "<%s.%s@%s>" % [
95
+ (Time.now.to_f * 10000).to_i.to_s( 36 ),
96
+ (rand( 2 ** 64 - 1 )).to_s( 36 ),
97
+ Socket.gethostname
98
+ ]
99
+ end
100
+
101
+
102
+ namespace :release do
103
+ task :default => [ :prep_release, :upload, :publish, :announce ]
104
+
105
+ desc "Re-publish the release with the current version number"
106
+ task :rerelease => [ :upload, :publish, :announce ]
107
+
108
+ desc "Re-run the publication tasks, but send notifications to debugging address"
109
+ task :test do
110
+ trace "Will publish privately"
111
+ $publish_privately = true
112
+ Rake::Task['release:rerelease'].invoke
113
+ end
114
+
115
+
116
+ desc "Generate the release notes"
117
+ task :notes => [RELEASE_NOTES_FILE]
118
+ file RELEASE_NOTES_FILE do |task|
119
+ last_rel_tag = get_latest_release_tag() or
120
+ fail ">>> No releases tagged! Try running 'rake prep_release' first"
121
+ trace "Last release tag is: %p" % [ last_rel_tag ]
122
+ start = get_last_changed_rev( last_rel_tag ) || 1
123
+ trace "Starting rev is: %p" % [ start ]
124
+ log_output = make_svn_log( '.', start, 'HEAD' )
125
+
126
+ File.open( task.name, File::WRONLY|File::TRUNC|File::CREAT ) do |fh|
127
+ fh.print( log_output )
128
+ end
129
+
130
+ edit task.name
131
+ end
132
+ CLOBBER.include( RELEASE_NOTES_FILE )
133
+
134
+
135
+ desc "Upload project documentation and packages to #{PROJECT_HOST}"
136
+ task :upload => [ :upload_docs, :upload_packages ]
137
+ task :project => :upload # the old name
138
+
139
+ desc "Publish the project docs to #{PROJECT_HOST}"
140
+ task :upload_docs => [ :rdoc ] do
141
+ when_writing( "Publishing docs to #{PROJECT_SCPDOCURL}" ) do
142
+ log "Uploading API documentation to %s:%s" % [ PROJECT_HOST, PROJECT_DOCDIR ]
143
+ run 'ssh', PROJECT_HOST, "rm -rf #{PROJECT_DOCDIR}"
144
+ run 'scp', '-qCr', RDOCDIR, PROJECT_SCPDOCURL
145
+ end
146
+ end
147
+
148
+ desc "Publish the project packages to #{PROJECT_HOST}"
149
+ task :upload_packages => [ :package ] do
150
+ when_writing( "Uploading packages") do
151
+ pkgs = Pathname.glob( PKGDIR + "#{PKG_FILE_NAME}.{gem,tar.gz,tar.bz2,zip}" )
152
+ log "Uploading %d packages to #{PROJECT_SCPPUBURL}" % [ pkgs.length ]
153
+ pkgs.each do |pkgfile|
154
+ run 'scp', '-qC', pkgfile, PROJECT_SCPPUBURL
155
+ end
156
+ end
157
+ end
158
+
159
+
160
+ file RELEASE_ANNOUNCE_FILE => [RELEASE_NOTES_FILE] do |task|
161
+ relnotes = File.read( RELEASE_NOTES_FILE )
162
+ announce_body = %{
163
+
164
+ Version #{PKG_VERSION} of #{PKG_NAME} has been released.
165
+
166
+ #{Text::Format.new(:first_indent => 0).format_one_paragraph(GEMSPEC.description)}
167
+
168
+ == Project Page
169
+
170
+ #{GEMSPEC.homepage}
171
+
172
+ == Installation
173
+
174
+ Via gems:
175
+
176
+ $ sudo gem install #{GEMSPEC.name}
177
+
178
+ or from source:
179
+
180
+ $ wget http://deveiate.org/code/#{PKG_FILE_NAME}.tar.gz
181
+ $ tar -xzvf #{PKG_FILE_NAME}.tar.gz
182
+ $ cd #{PKG_FILE_NAME}
183
+ $ sudo rake install
184
+
185
+ == Changes
186
+ #{relnotes}
187
+ }.gsub( /^\t+/, '' )
188
+
189
+ File.open( task.name, File::WRONLY|File::TRUNC|File::CREAT ) do |fh|
190
+ fh.print( announce_body )
191
+ end
192
+
193
+ edit task.name
194
+ end
195
+ CLOBBER.include( RELEASE_ANNOUNCE_FILE )
196
+
197
+
198
+ desc 'Send out a release announcement'
199
+ task :announce => [RELEASE_ANNOUNCE_FILE] do
200
+ email = TMail::Mail.new
201
+ if $publish_privately
202
+ trace "Sending private announce mail"
203
+ email.to = 'rubymage@gmail.com'
204
+ else
205
+ trace "Sending public announce mail"
206
+ email.to = 'Ruby-Talk List <ruby-talk@ruby-lang.org>'
207
+ email.bcc = 'rubymage@gmail.com'
208
+ end
209
+ email.from = GEMSPEC.email
210
+ email.subject = "[ANN] #{PKG_NAME} #{PKG_VERSION}"
211
+ email.body = File.read( RELEASE_ANNOUNCE_FILE )
212
+ email.date = Time.new
213
+
214
+ email.message_id = gen_message_id()
215
+
216
+ log "About to send the following email:"
217
+ puts '---',
218
+ email.to_s,
219
+ '---'
220
+
221
+ ask_for_confirmation( "Will send via #{SMTP_HOST}." ) do
222
+ pwent = Etc.getpwuid( Process.euid )
223
+ curuser = pwent ? pwent.name : 'unknown'
224
+ username = prompt_with_default( "SMTP user", curuser )
225
+ password = prompt_for_password()
226
+
227
+ trace "Creating SMTP connection to #{SMTP_HOST}:#{SMTP_PORT}"
228
+ smtp = Net::SMTP.new( SMTP_HOST, SMTP_PORT )
229
+ smtp.set_debug_output( $stdout )
230
+ smtp.esmtp = true
231
+
232
+ trace "connecting..."
233
+ smtp.ssl_start( Socket.gethostname, username, password, :plain ) do |smtp|
234
+ trace "sending message..."
235
+ smtp.send_message( email.to_s, email.from, email.to )
236
+ end
237
+ trace "done."
238
+ end
239
+ end
240
+
241
+
242
+ desc 'Publish the new release to RubyForge'
243
+ task :publish => [:clean, :package, :notes] do |task|
244
+ project = GEMSPEC.rubyforge_project
245
+
246
+ if $publish_privately
247
+ log "Skipping push of release files to RubyForge"
248
+ else
249
+ rf = RubyForge.new
250
+ log "Loading RubyForge config"
251
+ rf.configure
252
+
253
+ group_id = rf.autoconfig['group_ids'][RUBYFORGE_GROUP] or
254
+ fail "Your configuration doesn't have a group id for '#{RUBYFORGE_GROUP}'"
255
+
256
+ # If this project doesn't yet exist, create it
257
+ unless rf.autoconfig['package_ids'].key?( project )
258
+ ask_for_confirmation( "Package '#{project}' doesn't exist on RubyForge. Create it?" ) do
259
+ log "Creating new package '#{project}'"
260
+ rf.create_package( group_id, project )
261
+ end
262
+ end
263
+
264
+ package_id = rf.autoconfig['package_ids'][ project ]
265
+
266
+ # Make sure this release doesn't already exist
267
+ releases = rf.autoconfig['release_ids']
268
+ if releases.key?( GEMSPEC.name ) && releases[ GEMSPEC.name ].key?( PKG_VERSION )
269
+ log "Rubyforge seems to already have #{ PKG_FILE_NAME }"
270
+ else
271
+ config = rf.userconfig or
272
+ fail "You apparently haven't set up your RubyForge credentials on this machine."
273
+ config['release_notes'] = GEMSPEC.description
274
+ config['release_changes'] = File.read( RELEASE_NOTES_FILE )
275
+
276
+ files = FileList[ PKGDIR + GEM_FILE_NAME ]
277
+ files.include PKGDIR + "#{PKG_FILE_NAME}.tar.gz"
278
+ files.include PKGDIR + "#{PKG_FILE_NAME}.tar.bz2"
279
+ files.include PKGDIR + "#{PKG_FILE_NAME}.zip"
280
+
281
+ log "Releasing #{PKG_FILE_NAME}"
282
+ when_writing do
283
+ log "Publishing to RubyForge: \n",
284
+ "\tproject: #{RUBYFORGE_GROUP}\n",
285
+ "\tpackage: #{PKG_NAME.downcase}\n",
286
+ "\tpackage version: #{PKG_VERSION}\n",
287
+ "\tfiles: " + files.collect {|f| f.to_s }.join(', ') + "\n"
288
+
289
+ ask_for_confirmation( "Publish to RubyForge?" ) do
290
+ log 'Logging in...'
291
+ rf.login
292
+ log "Adding the new release to the '#{project}' project"
293
+ rf.add_release( group_id, package_id, PKG_VERSION, *files )
294
+ end
295
+ end
296
+ end
297
+ end
298
+ end
299
+ end
300
+
301
+ rescue LoadError => err
302
+ if !Object.const_defined?( :Gem )
303
+ require 'rubygems'
304
+ retry
305
+ end
306
+
307
+ task :no_release_tasks do
308
+ fail "Release tasks not defined: #{err.message}"
309
+ end
310
+
311
+ task :release => :no_release_tasks
312
+ task "release:announce" => :no_release_tasks
313
+ task "release:publish" => :no_release_tasks
314
+ task "release:notes" => :no_release_tasks
315
+ end
316
+
317
+ desc "Package up a release, publish it, and send out notifications"
318
+ task :release => 'release:default'
319
+ task :rerelease => 'release:rerelease'
320
+ task :testrelease => 'release:test'
321
+