-
Notifications
You must be signed in to change notification settings - Fork 21
/
CHANGELOG
55 lines (44 loc) · 2.1 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
= Change Log
== 0.8.0
* Drop support for EOL versions of Ruby
== 0.7.5
* Added support for tags and attributes containing dashes [yurivm, ronald]
== 0.7.4
* added support for Ruby 2+
== 0.7.1
* Running tests with bundler requires 'rake' to be specified [jgay]
== 0.7.0
* Improve performance by switching back to regular expression parsing [jfahrenkrug]
* Support for Rubinius [jlong]
* Support for Ruby 1.9 [aemadrid]
* More tests [aemadrid]
* Fixed issue #5 - problem with other namespace tags [jemmyw]
* Switched to Jeweler for better gem management [jlong]
* Allow operation in a threaded environment (parser per-thread, shared context)
* Allow switching scanners that tokenize templates.
* Include SquiggleScanner to parse tags that look like "{ hello /}"
== 0.6.1
* Fixed a problem with non-tags that have no prefix or tag name (see test_parse_chirpy_bird)
== 0.6.0 (private release)
* Split radius.rb into multiple files.
* Ported the really hairy regexes from Radius::Parser to a single Ragel machine.
* Added and refactored tests.
* Refactored Rakefile and other administrativia.
== 0.5.1
* Fixed a problem with parsing quotes where a single tag preceding a double tag would consume the start tag of the double tag if both contained attributes.
== 0.5.0
* Created a DSL for tag definitions (introducing a DSL makes this version of Radiant incompatible with the last). The DSL has the following features:
- full support for nested tags
- global and local tag variables
- Contexts can now be defined dynamically (instead of being subclassed)
- see the QUICKSTART for more info
* Many refactorings of the library and unit tests.
* Changed the license to the MIT-LICENSE.
* Updated documentation to reflect the changes.
* Updated the version number to reflect the maturity of the code base.
== 0.0.2
* Refactored Parser to use Context#render_tag instead of #send when rendering tags defined on a Context.
* UndefinedTagError is now thrown when Parser tries to render a tag which doesn't exist on a Context.
* Added Context#tag_missing which works like method_method missing on Object, but is tag specific.
== 0.0.1
* First release.