Changesets can be listed by changeset number.
The Git repository is here.
- Revision:
- 193
- Log:
First stage commit of Typo 4.1, modified for the ROOL site.
Includes all local modifications but a final pass needs to be
made to delete any files left over from earlier Typo versions
that shouldn't be here anymore. See the 'tags' section of the
repository for a clean Typo 4.1 tree.Note that symlinks to shared files in the RISC OS Open theme
directory have been deliberately included this time around; I
decided that on balance it was better to leave them in as
placeholders, since unlike symlinks in app/views/shared, the
Typo theme structure is not a standard Rails concept.
- Author:
- rool
- Date:
- Wed Apr 04 18:51:02 +0100 2007
- Size:
- 484 Bytes
1 | # vim: syntax=Ruby |
2 | |
3 | require 'hoe' |
4 | |
5 | DEV_DOC_PATH = "Libraries/memcache-client" |
6 | |
7 | hoe = Hoe.new 'memcache-client', '1.2.0' do |p| |
8 | p.summary = 'A Ruby memcached client' |
9 | p.description = 'memcache-client is a pure-ruby client to Danga\'s memcached.' |
10 | p.author = ['Eric Hodel', 'Robert Cottrell'] |
11 | p.email = 'eric@robotcoop.com' |
12 | p.url = "http://dev.robotcoop.com/#{DEV_DOC_PATH}" |
13 | |
14 | p.rubyforge_name = 'rctools' |
15 | end |
16 | |
17 | SPEC = hoe.spec |
18 | |
19 | begin |
20 | require '../tasks' |
21 | rescue LoadError |
22 | end |
23 |