fast_xs 0.7.2 → 0.7.3

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.
@@ -1,13 +1,9 @@
1
- === 0.7.2 / 2009-07-31
1
+ === 0.7.3 / 2009-07-31
2
2
 
3
3
  * 1 bug fix:
4
4
 
5
- * build gem extension correctly on install
6
- - thanks to Jesse Storimer for noticing and reporting
7
-
8
- * 1 packaging fix:
9
-
10
- * rake-compiler is only needed for cross compiles
5
+ * extra: fix Mongrel::HttpRequest monkey patch
6
+ - thanks (again) to Jesse Storimer for noticing and reporting
11
7
 
12
8
  Browse gitweb for full history:
13
9
  http://fast-xs.rubyforge.org/git?p=fast-xs.git
data/Rakefile CHANGED
@@ -8,7 +8,7 @@ rescue LoadError
8
8
  end
9
9
 
10
10
  Hoe.spec('fast_xs') do
11
- self.version = '0.7.2'
11
+ self.version = '0.7.3'
12
12
  self.author = 'Eric Wong'
13
13
  self.email = 'fast-xs-general@rubyforge.org'
14
14
  self.url = 'http://fast-xs.rubyforge.org/'
@@ -22,7 +22,7 @@ class ERB # :nodoc:
22
22
  end
23
23
  end if defined?(ERB::Util)
24
24
 
25
- class Mongrel # :nodoc:
25
+ module Mongrel # :nodoc:
26
26
  class HttpRequest # :nodoc:
27
27
  def self.unescape(s); s.fast_uxs_cgi; end
28
28
  def self.escape(s); s.to_s.fast_xs_cgi; end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fast_xs
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.2
4
+ version: 0.7.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eric Wong