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:
- 1409 Bytes
1 | = Change Log |
2 | === 0.6.1 |
3 | * Fixed a problem with non-tags that have no prefix or tagname (see test_parse_chirpy_bird) |
4 | |
5 | === 0.6.0 (private release) |
6 | * Split radius.rb into multiple files. |
7 | * Port the really hairy regexes from Radius::Parser to a single Ragel machine. |
8 | * Added and refactored tests. |
9 | * Refactored Rakefile and other administrativia. |
10 | |
11 | === 0.5.1 |
12 | * Fixed a problem with parsing quotes where a single tag preceding a double tag would consume the start |
13 | tag of the double tag if both contained attributes. |
14 | |
15 | === 0.5.0 |
16 | * Created a DSL for tag definitions (introducing a DSL makes this version of Radiant incompatible with |
17 | the last). The DSL has the following features: |
18 | - full support for nested tags |
19 | - global and local tag variables |
20 | - Contexts can now be defined dynamically (instead of being subclassed) |
21 | - see the QUICKSTART for more info |
22 | * Many refactorings of the library and unit tests. |
23 | * Changed the license to the MIT-LICENSE. |
24 | * Updated documentation to reflect the changes. |
25 | * Updated the version number to reflect the maturity of the code base. |
26 | |
27 | === 0.0.2 |
28 | * Refactored Parser to use Context#render_tag instead of #send when rendering tags defined on a Context. |
29 | * UndefinedTagError is now thrown when Parser tries to render a tag which doesn't exist on a Context. |
30 | * Added Context#tag_missing which works like method_method missing on Object, but is tag specific. |
31 | |
32 | === 0.0.1 |
33 | * First release. |