public
Fork of markbates/mack
Description: A Ruby web application framework
Homepage: http://www.mackframework.com
Clone URL: git://github.com/juretta/mack.git
Search Repo:
Updated to use mack_ruby_core_extensions 0.1.3
markbates (author)
Wed Mar 26 16:41:21 -0700 2008
commit  6744fba6ffdf0debeb7b65d2fc7f68457d17e5c9
tree    2a66df25cdb937ea0a0302fd4f9a1d588a374230
parent  f84a519e696f2a2631facf16c75233d25f40d7af
...
3
4
5
 
...
3
4
5
6
0
@@ -3,4 +3,5 @@
0
 .DS_Store
0
 doc
0
 pkg
0
+tmp
...
8
9
10
 
11
12
13
...
8
9
10
11
12
13
14
0
@@ -8,6 +8,7 @@
0
 require 'log4r'
0
 require 'crypt/rijndael'
0
 require 'singleton'
0
+require 'uri'
0
 
0
 # Set up Mack constants, if they haven't already been set up.
0
 unless Object.const_defined?("MACK_ENV")
...
57
58
59
60
 
61
62
 
63
64
65
...
57
58
59
 
60
61
 
62
63
64
65
0
@@ -57,9 +57,9 @@
0
       unless p.nil?
0
         p = p.to_s if p.is_a?(Symbol)
0
         if p.is_a?(String)
0
- p = Rack::Utils.unescape(p)
0
+ p = p.to_s.uri_unescape
0
         elsif p.is_a?(Hash)
0
- p.each_pair {|k,v| p[k] = Rack::Utils.unescape(v)}
0
+ p.each_pair {|k,v| p[k] = v.to_s.uri_unescape}
0
         end
0
       end
0
       p
...
11
12
13
14
 
15
16
17
...
45
46
47
48
49
 
50
51
52
...
11
12
13
 
14
15
16
17
...
45
46
47
 
 
48
49
50
51
0
@@ -11,7 +11,7 @@
0
 require 'singleton'
0
 
0
 GEM_NAME = "mack"
0
-GEM_VERSION = "0.3.0"
0
+GEM_VERSION = "0.4.0"
0
 
0
 require 'lib/tasks/private/gem_helper'
0
 
0
@@ -45,8 +45,7 @@
0
         s.rdoc_options << '--title' << 'Mack' << '--main' << 'README' << '--line-numbers' << "--inline-source"
0
         
0
         s.add_dependency("rack", "0.3.0")
0
- # s.add_dependency("ruby_extensions", "1.0.11")
0
- s.add_dependency("mack_ruby_core_extensions", "0.0.4")
0
+ s.add_dependency("mack_ruby_core_extensions", "0.1.3")
0
         s.add_dependency("application_configuration", "1.2.1")
0
         s.add_dependency("cachetastic", "1.4.1")
0
         s.add_dependency("log4r", "1.0.5")

Comments

    No one has commented yet.