public
Description: the 4k pocket full-of-gags web microframework
Homepage: http://code.whytheluckystiff.net/camping/
Clone URL: git://github.com/why/camping.git
Fixing loading paths
judofyr (author)
Tue May 20 22:52:52 -0700 2008
commit  243ef1a8b56f62cda6f6b26875e50142f5956719
tree    38f1d47f2abcad18dbf722f6a5b290cc50e6fb1d
parent  1dcec1197078720661ff932d4496b1a558372714
...
6
7
8
 
9
10
11
...
6
7
8
9
10
11
12
0
@@ -6,6 +6,7 @@ require 'ostruct'
0
 require 'stringio'
0
 require 'yaml'
0
 
0
+$:.unshift File.dirname(__FILE__) + "/../lib"
0
 require 'camping'
0
 require 'camping/server'
0
 
...
1
2
3
 
4
5
6
...
1
2
 
3
4
5
6
0
@@ -1,6 +1,6 @@
0
 #!/usr/bin/env ruby
0
 
0
-$:.unshift File.dirname(__FILE__) + "/../../lib"
0
+$:.unshift File.dirname(__FILE__) + "/../lib"
0
 require 'camping'
0
 require 'camping/db'
0
 require 'camping/session'
...
1
2
3
 
4
5
6
...
1
2
 
3
4
5
6
0
@@ -1,6 +1,6 @@
0
 #!/usr/bin/env ruby
0
 
0
-$:.unshift File.dirname(__FILE__) + "/../../lib"
0
+$:.unshift File.dirname(__FILE__) + "/../lib"
0
 %w(rubygems redcloth camping camping/db acts_as_versioned).each { |lib| require lib }
0
   
0
 Camping.goes :CampSh
...
1
2
 
3
4
5
...
1
 
2
3
4
5
0
@@ -1,5 +1,5 @@
0
 #!/usr/bin/ruby
0
-$:.unshift File.dirname(__FILE__) + "/../../lib"
0
+$:.unshift File.dirname(__FILE__) + "/../lib"
0
 %w(rubygems redcloth camping camping/db acts_as_versioned).each { |lib| require lib }
0
 
0
 Camping.goes :Tepee

Comments

    No one has commented yet.