File: CHANGES

package info (click to toggle)
ruby-builder 3.0.0-3
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 3,120 kB
  • sloc: ruby: 1,372; makefile: 5
file content (89 lines) | stat: -rw-r--r-- 2,553 bytes parent folder | download | duplicates (2)
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
= Change Log

== Version 2.2.0

* Applied patch from Thijs van der Vossen to allow UTF-8 encoded
  output when the encoding is UTF-8 and $KCODE is UTF8.

== Version 2.1.2

* Fixed bug where private methods in kernel could leak through using
  tag!().  Thanks to Hagen Overdick for finding and diagnosing this
  bug.

== Version 2.1.1

* Fixed typo in XmlMarkup class docs (ident => indent). (from Martin
  Fowler).
* Removed extra directory indirection from legacy CVS to SVN move.
* Removed some extraneous tabs from source.
* Fixed test on private methods in blankslate to differentiate between
  targetted and untargetted private methods.
* Removed legacy capture of @self in XmlBase (@self was used back when
  we used instance eval).
* Added additional tests for global functions (both direct and included).

== Version 2.1.0

* Fixed bug in BlankSlate where including a module into Object could
  cause methods to leak into BlankSlate.
* Made BlankSlate available as its own gem.  Currently the builder gem
  still directly includes the BlankSlate code.
* Added reveal capability to BlankSlate.

== Version 2.0.0

* Added doc directory
* Added unit tests for XmlEvents.
* Added XChar module and used it in the _escape method.
* Attributes are now quoted by default when strings.  Use Symbol
  attribute values for unquoted behavior.

== Version 1.2.4

* Added a cdata! command to an XML Builder (from Josh Knowles).

== Version 1.2.3

The attributes in the <?xml ... ?> instruction will be ordered:
version, encoding, standalone.

== Version 1.2.2

Another fix for BlankSlate.  The Kernal/Object traps added in 1.2.1
failed when a method was defined late more than once.  Since the
method was already marked as removed, another attempt to undefine it
raised an error.  The fix was to check the list of instance methods
before attempting the undef operation.  Thanks to Florian Gross and
David Heinemeier Hansson for the patch.

== Version 1.2.1

BlankSlate now traps method definitions in Kernel and Object to avoid
late method definitions inadvertently becoming part of the definition
of BlankSlate as well.

== Version 1.2.0

Improved support for entity declarations by allowing nested
declarations and removal of the attribute processing.

Added namespace support.

== Version 1.1.0

Added support for comments, entity declarations and processing instructions.

== Version 1.0.0

Removed use of <tt>instace_eval</tt> making the use of XmlMarkup much
less prone to error.

== Version 0.1.1

Bug fix.

== Version 0.1.0

Initial version release.