sitebuilder 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG.rdoc ADDED
@@ -0,0 +1,5 @@
1
+ == 0.0.2
2
+ 2009-12-06:fixed warning: "already initialized constant"
3
+
4
+ == 0.0.1
5
+
data/README.rdoc CHANGED
@@ -1,4 +1,4 @@
1
- = SiteBuilder
1
+ == SiteBuilder
2
2
  SiteBuilder is a rule-based static website generator. It performs an inorder traversal of each
3
3
  file and directory in a source directory, applying exactly one transformation action per file.
4
4
 
@@ -10,16 +10,16 @@ a subdirectory of a destination directory.
10
10
  * Actions may use any part of the source directory.
11
11
  * No action should change the source directory or its contents.
12
12
 
13
- = How to use it
13
+ === How to use it
14
14
  * Just a core object model & tests right now... needs to be completed.
15
-
16
- == RDOC API
17
- The rdoc can be found at http://www.greenbarsoft.co.uk/software/sitebuilder/rdoc/
15
+ * *rdoc* http://www.greenbarsoft.co.uk/software/sitebuilder/rdoc/
16
+ * *source* http://github.com/dafydd/sitebuilder
17
+ * To build me, set an environment variable called *SANDBOX* to the directory above your sitebuilder directory. The tests need this pathname to access test data.
18
18
 
19
- == Compatibility
19
+ === Compatibility
20
20
  This project is being developed on OS X. Automated testing for Linux will be included in future releases.
21
21
 
22
- == Licence
22
+ === Licence
23
23
  This is open source software and comes with no warranty. See COPYING for details.
24
24
 
25
25
 
data/TODO.rdoc CHANGED
@@ -1,5 +1,5 @@
1
1
  == todo
2
- * make template action
2
+ * make template action - with erb and semantictext
3
3
  * merge a text formatter into template action
4
4
  * make copy action
5
5
  * make index action
@@ -7,3 +7,6 @@
7
7
  * work out how to handle non-fatal errors
8
8
  * work out how to handle fatal errors
9
9
  * integrate SemanticText action
10
+
11
+ == DONE
12
+ * fix "warning: already initialized constant"
@@ -1,4 +1,4 @@
1
- require 'FileUtils'
1
+ #require 'FileUtils'
2
2
  module SiteBuilder
3
3
 
4
4
  # Abstract class which is the abstract base class for file system instances
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sitebuilder
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dafydd Rees
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-12-03 00:00:00 +00:00
12
+ date: 2009-12-11 00:00:00 +00:00
13
13
  default_executable:
14
14
  dependencies: []
15
15
 
@@ -20,7 +20,7 @@ executables: []
20
20
  extensions: []
21
21
 
22
22
  extra_rdoc_files:
23
- - CHANGELOG
23
+ - CHANGELOG.rdoc
24
24
  - COPYING
25
25
  - README.rdoc
26
26
  - TODO.rdoc
@@ -35,7 +35,7 @@ files:
35
35
  - test/data/testfile.txt
36
36
  - test/filesystem_test.rb
37
37
  - test/string_test.rb
38
- - CHANGELOG
38
+ - CHANGELOG.rdoc
39
39
  - COPYING
40
40
  - README.rdoc
41
41
  - TODO.rdoc
data/CHANGELOG DELETED
File without changes