Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
Name: ruby3.3-rubygem-haml | Distribution: openSUSE Tumbleweed |
Version: 6.3.0 | Vendor: openSUSE |
Release: 1.1 | Build date: Mon Feb 26 21:41:11 2024 |
Group: Development/Languages/Ruby | Build host: h02-ch2a |
Size: 297795 | Source RPM: rubygem-haml-6.3.0-1.1.src.rpm |
Packager: https://bugs.opensuse.org | |
Url: https://haml.info | |
Summary: An elegant, structured (X)HTML/XML templating engine |
An elegant, structured (X)HTML/XML templating engine.
MIT
* Mon Jan 29 2024 Dan Čermák <dan.cermak@posteo.net> - ## 6.3.0 * Remove `Haml::RailsTemplate#default_format` that was added in v6.1.3 for Turbo [#1152](https://github.com/haml/haml/issues/1152), [#1154](https://github.com/haml/haml/issues/1154) ([discussion](https://github.com/haml/haml/pull/1144#issuecomment-1755088572)) * See [the reference](https://github.com/haml/haml/blob/v6.3.0/REFERENCE.md#turbo) for suggested alternatives. [#]# 6.2.5 * Deprecate `Haml::RailsTemplate#default_format` that was added in v6.1.3 for Turbo ([discussion](https://github.com/haml/haml/pull/1144#issuecomment-1755088572)) * See [the reference](https://github.com/haml/haml/blob/v6.2.5/REFERENCE.md#turbo) for suggested alternatives. [#]# 6.2.4 * Support case-in statement [#1155](https://github.com/haml/haml/issues/1155) * Tue Nov 14 2023 Dan Čermák <dan.cermak@posteo.net> - New upstream release 6.2.3, see bundled CHANGELOG.md * Wed Dec 07 2022 Stephan Kulow <coolo@suse.com> updated to version 6.0.12 see installed CHANGELOG.md [#]# 6.0.12 * Fix a whitespace removal with `>` and an `if`-`else` statement [#1114](https://github.com/haml/haml/issues/1114) [#]# 6.0.11 * Fix a whitespace removal with `>` and an `if` statement [#1114](https://github.com/haml/haml/issues/1114) [#]# 6.0.10 * Evaluate :erb filter in the template context like Haml 5 [#]# 6.0.9 * Support sass-embedded [#1112](https://github.com/haml/haml/issues/1112) [#]# 6.0.8 * Support interpolation in HTML comments, which has not been working since 6.0.0 [#1107](https://github.com/haml/haml/issues/1107) * Fri Oct 28 2022 Stephan Kulow <coolo@suse.com> updated to version 6.0.7 see installed CHANGELOG.md [#]# 6.0.7 * `Haml::Engine` and `Haml::Template` use StringBuffer instead of ArrayBuffer * It seems more performant in many cases with recent Ruby versions. * `Haml::RailsTemplate` is not affected. * Mon Oct 10 2022 Stephan Kulow <coolo@suse.com> updated to version 6.0.6 see installed CHANGELOG.md [#]# 6.0.6 * Prevent CRuby from accidentally using the Ruby implementation fallback * Reversing what v6.0.3 and v6.0.4 did, but still supporting Wasm. [#]# 6.0.5 * Resurrect `#haml_object_ref` support in an object reference [#1097](https://github.com/haml/haml/issues/1097) * This was removed in 6.0.0, and added back in this version. * Stop warning `remove_whitespace: true` option. [#]# 6.0.4 Released on October 2, 2022 ([diff](https://github.com/haml/haml/compare/v6.0.3...v6.0.4)). * Fix a parse failure of `%` in attributes [#1096](https://github.com/haml/haml/issues/1096) * Add another fallback from C to Ruby for Wasm. [#]# 6.0.3 Released on September 28, 2022 ([diff](https://github.com/haml/haml/compare/v6.0.2...v6.0.3)). * For Wasm, fallback to Ruby when C extension is not available. [#]# 6.0.2 Released on September 28, 2022 ([diff](https://github.com/haml/haml/compare/v6.0.1...v6.0.2)). * Unescape HTML-safe arguments for `surround`, `succeed`, and `precede` on Rails [#1088](https://github.com/haml/haml/issues/1088) [#]# 6.0.1 Released on September 23, 2022 ([diff](https://github.com/haml/haml/compare/v6.0.0...v6.0.1)). * Unescape HTML-safe interpolation on Rails [#1084](https://github.com/haml/haml/issues/1084) * Resurrect Haml 5's `AttributeParser.available?` for syntax\_tree-haml [#1085](https://github.com/haml/haml/issues/1085) [#]# 6.0.0 Released on September 21, 2022 ([diff](https://github.com/haml/haml/compare/v5.2.2...v6.0.0)). * Replace the implementation with Hamlit * Haml 6 is about 1.7x faster than Haml 5 in [this benchmark](benchmark/slim/run-benchmarks.rb). * The parser is kept as is, but everything else is replaced. * The `haml` CLI interface was also replaced. * The interface of `Haml::Engine` is changed. `Haml::Template` is most likely what you need now. * Most Haml helpers are removed. * Rails: * Kept: `find_and_reserve`, `preserve`, `surround`, `precede`, `succeed`, `capture_haml` * Removed: `block_is_haml?`, `flatten`, `haml_concat`, `haml_indent`, `haml_tag`, `haml_tag_if`, `html_attrs`, `html_escape`, `init_haml_helpers`, `is_haml?`, `list_of`, `non_haml`, `tab_down`, `tab_up`, `with_tabs` * Tilt: * Kept: `preserve` * Removed: `block_is_haml?`, `capture_haml`, `escape_once`, `find_and_preserve`, `flatten`, `haml_concat`, `haml_indent`, `haml_tag`, `haml_tag_if`, `html_attrs`, `html_escape`, `init_haml_helpers`, `is_haml?`, `list_of`, `non_haml`, `precede`, `succeed`, `surround`, `tab_down`, `tab_up`, `with_tabs` * Only the attributes in [`Haml::AttributeBuilder::BOOLEAN_ATTRIBUTES`](lib/haml/attribute_builder.rb) are handled as boolean attributes. * Some legacy Rails integration is removed. * Tue Jan 25 2022 Stephan Kulow <coolo@suse.com> updated to version 5.2.2 see installed CHANGELOG.md [#]# 5.2.2 Released on July 27, 2021 ([diff](https://github.com/haml/haml/compare/v5.2.1...v5.2.2)). * Support for adding Annotations to Haml output (a Rails feature 6.1+) * Expanded test matrix to include Ruby 3.0 and Rails 6.1 * Only testing Ruby 2.7+ and Rails 5.2+ * Wed Jan 20 2021 Stephan Kulow <coolo@suse.com> updated to version 5.2.1 see installed CHANGELOG.md [#]# 5.2.1 Released on November 30, 2020 ([diff](https://github.com/haml/haml/compare/v5.2.0...v5.2.1)). * Add in improved "multiline" support for attributes [#1043](https://github.com/haml/haml/issues/1043) [#]# 5.2 Released on September 28, 2020 ([diff](https://github.com/haml/haml/compare/v5.1.2...v5.2.0)). * Fix crash in the attribute optimizer when `#inspect` is overridden in TrueClass / FalseClass [#972](https://github.com/haml/haml/issues/972) * Do not HTML-escape templates that are declared to be plaintext [#1014](https://github.com/haml/haml/issues/1014) (Thanks [@cesarizu](https://github.com/cesarizu)) * Class names are no longer ordered alphabetically, and now follow a new specification as laid out in REFERENCE [#306](https://github.com/haml/haml/issues/306) * Mon Feb 10 2020 Stephan Kulow <coolo@suse.com> - updated to version 5.1.2 see installed CHANGELOG.md [#]# 5.1.2 Released on August 6, 2019 ([diff](https://github.com/haml/haml/compare/v5.1.1...v5.1.2)). * Fix crash in some environments such as New Relic by unfreezing string literals for ParseNode#inspect. [#1016](https://github.com/haml/haml/pull/1016) (thanks [Jalyna](https://github.com/jalyna)) * Fri Jul 19 2019 Stephan Kulow <coolo@suse.com> - updated to version 5.1.1 see installed CHANGELOG.md [#]# 5.1.1 Released on May 25, 2019 ([diff](https://github.com/haml/haml/compare/v5.1.0...v5.1.1)). * Fix NameError bug for that happens on ruby 2.6.1-2.6.3 + haml 5.1.0 + rails 4.2.x + erubi. (Akira Matsuda) [#]# 5.1.0 Released on May 16, 2019 ([diff](https://github.com/haml/haml/compare/v5.0.4...v5.1.0)). * Rails 6 support [#1008](https://github.com/haml/haml/pull/1008) (thanks [Seb Jacobs](https://github.com/sebjacobs)) * Add `escape_filter_interpolations` option for backwards compatibility with haml 4 defaults [#984](https://github.com/haml/haml/pull/984) (thanks [Will Jordan](https://github.com/wjordan)) * Fix error on empty :javascript and :css filter blocks [#986](https://github.com/haml/haml/pull/986) (thanks [Will Jordan](https://github.com/wjordan)) * Respect changes in Haml::Options.defaults in `Haml::TempleEngine` options (Takashi Kokubun) * Un-freeze TempleEngine precompiled string literals [#983](https://github.com/haml/haml/pull/983) (thanks [Will Jordan](https://github.com/wjordan)) * Various performance/memory improvements [#965](https://github.com/haml/haml/pull/965), [#966](https://github.com/haml/haml/pull/966), [#963](https://github.com/haml/haml/pull/963) (thanks [Dillon Welch](https://github.com/oniofchaos)) * Enable `frozen_string_literal` magic comment for all .rb files [#967](https://github.com/haml/haml/pull/967) (thanks [Dillon Welch](https://github.com/oniofchaos)) * Fri Oct 13 2017 mschnitzer@suse.com - updated to version 5.0.4 Released on October 13, 2017 (diff). * Fix haml -c --stdin regression in 5.0.2. #958 (thanks Timo Göllner) * Ruby 2.5 support (it wasn't working due to Ripper API change). (Akira Matsuda)
/etc/alternatives/haml /etc/alternatives/haml-6.3.0 /etc/alternatives/haml.ruby3.3 /usr/bin/haml /usr/bin/haml-6.3.0 /usr/bin/haml.ruby3.3 /usr/bin/haml.ruby3.3-6.3.0 /usr/lib64/ruby/gems/3.3.0/build_info /usr/lib64/ruby/gems/3.3.0/cache/haml-6.3.0.gem /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0 /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/.github /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/.github/FUNDING.yml /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/.github/workflows /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/.github/workflows/test.yml /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/.gitignore /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/.yardopts /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/CHANGELOG.md /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/FAQ.md /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/Gemfile /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/MIT-LICENSE /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/README.md /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/REFERENCE.md /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/Rakefile /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/bin /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/bin/bench /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/bin/console /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/bin/ruby /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/bin/setup /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/bin/stackprof /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/bin/test /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/exe /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/exe/haml /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/haml.gemspec /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/lib /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/lib/haml /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/lib/haml.rb /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/lib/haml/ambles.rb /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/lib/haml/attribute_builder.rb /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/lib/haml/attribute_compiler.rb /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/lib/haml/attribute_parser.rb /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/lib/haml/cli.rb /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/lib/haml/compiler /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/lib/haml/compiler.rb /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/lib/haml/compiler/children_compiler.rb /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/lib/haml/compiler/comment_compiler.rb /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/lib/haml/compiler/doctype_compiler.rb /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/lib/haml/compiler/script_compiler.rb /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/lib/haml/compiler/silent_script_compiler.rb /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/lib/haml/compiler/tag_compiler.rb /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/lib/haml/dynamic_merger.rb /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/lib/haml/engine.rb /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/lib/haml/error.rb /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/lib/haml/escape.rb /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/lib/haml/escape_any.rb /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/lib/haml/filters /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/lib/haml/filters.rb /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/lib/haml/filters/base.rb /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/lib/haml/filters/cdata.rb /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/lib/haml/filters/coffee.rb /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/lib/haml/filters/css.rb /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/lib/haml/filters/erb.rb /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/lib/haml/filters/escaped.rb /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/lib/haml/filters/javascript.rb /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/lib/haml/filters/less.rb /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/lib/haml/filters/markdown.rb /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/lib/haml/filters/plain.rb /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/lib/haml/filters/preserve.rb /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/lib/haml/filters/ruby.rb /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/lib/haml/filters/sass.rb /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/lib/haml/filters/scss.rb /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/lib/haml/filters/text_base.rb /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/lib/haml/filters/tilt_base.rb /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/lib/haml/force_escape.rb /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/lib/haml/helpers.rb /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/lib/haml/html.rb /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/lib/haml/identity.rb /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/lib/haml/object_ref.rb /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/lib/haml/parser.rb /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/lib/haml/rails_helpers.rb /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/lib/haml/rails_template.rb /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/lib/haml/railtie.rb /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/lib/haml/ruby_expression.rb /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/lib/haml/string_splitter.rb /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/lib/haml/template.rb /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/lib/haml/temple_line_counter.rb /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/lib/haml/util.rb /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/lib/haml/version.rb /usr/lib64/ruby/gems/3.3.0/gems/haml-6.3.0/lib/haml/whitespace.rb /usr/lib64/ruby/gems/3.3.0/specifications/haml-6.3.0.gemspec /usr/share/doc/packages/ruby3.3-rubygem-haml /usr/share/doc/packages/ruby3.3-rubygem-haml/CHANGELOG.md /usr/share/doc/packages/ruby3.3-rubygem-haml/MIT-LICENSE /usr/share/doc/packages/ruby3.3-rubygem-haml/README.md
Generated by rpm2html 1.8.1
Fabrice Bellet, Wed Nov 13 00:41:02 2024