Changesets can be listed by changeset number.
The Git repository is here.
- Revision:
- 15
- Log:
Attempt to update Typo to a Typo SVN HEAD release from around the
time the prototype installation was set up on the RISC OS Open Limited
web site. Timestamps place this at 04-Jul so a revision from 05-Jul or
earlier was pulled and copied over the 2.6.0 tarball stable code.
- Author:
- adh
- Date:
- Sat Jul 22 23:27:35 +0100 2006
- Size:
- 532 Bytes
1 | require './lib/syntax/version' |
2 | |
3 | Gem::Specification.new do |s| |
4 | |
5 | s.name = 'syntax' |
6 | s.version = Syntax::Version::STRING |
7 | s.platform = Gem::Platform::RUBY |
8 | s.summary = |
9 | "Syntax is Ruby library for performing simple syntax highlighting." |
10 | s.files = Dir.glob("{data,lib,test}/**/*") |
11 | s.files << "README" |
12 | s.files << "LICENSE" |
13 | s.files << "NEWS" |
14 | s.require_path = 'lib' |
15 | s.autorequire = 'syntax' |
16 | |
17 | s.has_rdoc=true |
18 | |
19 | s.test_suite_file = 'test/ALL-TESTS.rb' |
20 | |
21 | s.author = "Jamis Buck" |
22 | s.email = "jamis@jamisbuck.org" |
23 | |
24 | end |