Changesets can be listed by changeset number.
The Git repository is here.
- Revision:
- 373
- Log:
Initial import of Radiant 0.9.1, which is now packaged as a gem. This is an
import of the tagged 0.9.1 source checked out from GitHub, which isn't quite
the same as the gem distribution - but it doesn't seem to be available in an
archived form and the installed gem already has modifications, so this is
the closest I can get.
- Author:
- rool
- Date:
- Mon Mar 21 13:40:05 +0000 2011
- Size:
- 2241 Bytes
1 | # Generated by jeweler |
2 | # DO NOT EDIT THIS FILE DIRECTLY |
3 | # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command |
4 | # -*- encoding: utf-8 -*- |
5 | |
6 | Gem::Specification.new do |s| |
7 | s.name = %q{radius} |
8 | s.version = "0.7.0.prerelease" |
9 | |
10 | s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version= |
11 | s.authors = ["John W. Long (me@johnwlong.com)", "David Chelimsky (dchelimsky@gmail.com)", "Bryce Kerley (bkerley@brycekerley.net)"] |
12 | s.date = %q{2010-05-22} |
13 | s.description = %q{Radius is a powerful tag-based template language for Ruby inspired by the template languages used in MovableType and TextPattern. It uses tags similar to XML, but can be used to generate any form of plain text (HTML, e-mail, etc...).} |
14 | s.email = %q{me@johnwlong.com} |
15 | s.extra_rdoc_files = [ |
16 | "CHANGELOG", |
17 | "LICENSE", |
18 | "QUICKSTART.rdoc", |
19 | "README.rdoc" |
20 | ] |
21 | s.files = [ |
22 | "CHANGELOG", |
23 | "LICENSE", |
24 | "QUICKSTART.rdoc", |
25 | "README.rdoc", |
26 | "Rakefile", |
27 | "VERSION", |
28 | "lib/radius.rb", |
29 | "lib/radius/context.rb", |
30 | "lib/radius/delegating_open_struct.rb", |
31 | "lib/radius/error.rb", |
32 | "lib/radius/parse_tag.rb", |
33 | "lib/radius/parser.rb", |
34 | "lib/radius/parser/scan.rb", |
35 | "lib/radius/parser/scan.rl", |
36 | "lib/radius/tag_binding.rb", |
37 | "lib/radius/tag_definitions.rb", |
38 | "lib/radius/utility.rb", |
39 | "lib/radius/version.rb", |
40 | "tasks/jeweler.rake", |
41 | "tasks/rdoc.rake", |
42 | "tasks/scan.rake", |
43 | "tasks/test.rake", |
44 | "test/context_test.rb", |
45 | "test/parser_test.rb", |
46 | "test/quickstart_test.rb", |
47 | "test/test_helper.rb" |
48 | ] |
49 | s.homepage = %q{http://github.com/jlong/radius} |
50 | s.rdoc_options = ["--charset=UTF-8"] |
51 | s.require_paths = ["lib"] |
52 | s.rubygems_version = %q{1.3.7} |
53 | s.summary = %q{A tag-based templating language for Ruby.} |
54 | s.test_files = [ |
55 | "test/context_test.rb", |
56 | "test/parser_test.rb", |
57 | "test/quickstart_test.rb", |
58 | "test/test_helper.rb" |
59 | ] |
60 | |
61 | if s.respond_to? :specification_version then |
62 | current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION |
63 | s.specification_version = 3 |
64 | |
65 | if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then |
66 | else |
67 | end |
68 | else |
69 | end |
70 | end |
71 |