public
Rubygem
Description: A lightweight and flexible website management system.
Homepage: http://webby.rubyforge.org/
Clone URL: git://github.com/TwP/webby.git
bug fixes
TwP (author)
Mon Feb 04 14:28:22 -0800 2008
commit  eeeb6cf68d9387d1050e60b9a6b190ada459585d
tree    1b6f254c9174ccaa4a4dd1cc9f349719d0c2a2b6
parent  44ab022fa073c540ef54934b87dfc072fc85338e
...
 
 
 
 
 
 
 
 
1
2
3
...
1
2
3
4
5
6
7
8
9
10
11
0
@@ -1,3 +1,11 @@
0
+== 0.7.3 / 2008-
0
+
0
+* 2 bug fixes
0
+ - The setup.rb task now requires rubygems in case it is not in the
0
+ user's rubyopt
0
+ - Now explicitly requiring the most recent version of rake when
0
+ building the gem
0
+
0
 == 0.7.2 / 2008-02-02
0
 
0
 * 4 minor enhancements
...
33
34
35
 
36
37
38
...
33
34
35
36
37
38
39
0
@@ -33,6 +33,7 @@ depend_on 'directory_watcher'
0
 depend_on 'heel'
0
 depend_on 'hpricot'
0
 depend_on 'logging', '0.6.1'
0
+depend_on 'rake'
0
 depend_on 'rspec'
0
 depend_on 'RedCloth'
0
 
...
1
2
3
 
 
 
 
 
 
4
5
6
...
1
2
 
3
4
5
6
7
8
9
10
11
0
@@ -1,6 +1,11 @@
0
 # $Id$
0
 
0
-require 'webby'
0
+begin
0
+ require 'webby'
0
+rescue LoadError
0
+ require 'rubygems'
0
+ require 'webby'
0
+end
0
 
0
 SITE = Webby.site
0
 
...
14
15
16
17
 
18
19
20
...
14
15
16
 
17
18
19
20
0
@@ -14,7 +14,7 @@ Logging::Appender.stdout.layout = Logging::Layouts::Pattern.new(
0
 
0
 module Webby
0
 
0
- VERSION = '0.7.2' # :nodoc:
0
+ VERSION = '0.7.3' # :nodoc:
0
 
0
   # Path to the Webby package
0
   PATH = ::File.expand_path(::File.join(::File.dirname(__FILE__), '..'))

Comments

    No one has commented yet.