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
|
=== 1.3.3 / 2023-03-06
* Remove 3rd argument to Regexp.new
=== 1.3.2 / 2022-11-02
* Fix column calculation
* General improvement in line/column calculation
=== 1.3.1 / 2022-01-10
* File.exists? => File.exist?
=== 1.3.0 / 2021-10-20
* Fix current_line calculation
=== 1.2.0 / 2021-10-20
* Speed up current_line
=== 1.2.0 / 2021-10-20
* Speed up current_line
=== (entries lost to time)
=== 0.10 / 2012-04-16
* Minor enhancements
* In standalone parsers generation of a default initialize method may be
disabled with the custom_initialize variable:
%% custom_initialize = true
* Added a pre-class directive for adding class comments
* Generated code is now surrounded by startdoc/stopdoc.
* Bug fixes
* Hoe plugin now overwrites generated files
* Directives and variables now round-trip through KPeg::GrammarRenderer
=== 0.9 / 2012-04-06
* Minor enhancements
* Added arbitrary directives to the kpeg grammar
%% directive_name { ... }
* Added header and footer directives to the kpeg code formatter. These
appear above and below all other output, respectively:
%% header {
# coding: UTF-8
}
[... your grammar ...]
%% footer {
require 'some/subclass'
}
* Switched to minitest
* Switched to hoe
|