Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
Name: ruby2.5-rubygem-haml | Distribution: SUSE Linux Enterprise 15 |
Version: 5.0.4 | Vendor: SUSE LLC <https://www.suse.com/> |
Release: 1.19 | Build date: Sat May 26 14:47:11 2018 |
Group: Development/Languages/Ruby | Build host: ibs-arm-1 |
Size: 372829 | Source RPM: rubygem-haml-5.0.4-1.19.src.rpm |
Packager: https://www.suse.com/ | |
Url: http://haml.info/ | |
Summary: An elegant, structured (X)HTML/XML templating engine |
Haml (HTML Abstraction Markup Language) is a layer on top of HTML or XML that's designed to express the structure of documents in a non-repetitive, elegant, and easy way by using indentation rather than closing tags and allowing Ruby to be embedded with ease. It was originally envisioned as a plugin for Ruby on Rails, but it can function as a stand-alone templating engine.
MIT
* Fri Oct 13 2017 [email protected] - 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) * Thu Sep 07 2017 [email protected] - updated to version 5.0.3 Released on September 7, 2017 (diff). * Use String#dump instead of String#inspect to generate string literal. (Takashi Kokubun) * Fix Erubi superclass mismatch error. #952 (thanks Robin Daugherty) * Thu Aug 03 2017 [email protected] - updated to version 5.0.2 see installed CHANGELOG.md [#]# 5.0.2 Released on August 1, 2017 ([diff](https://github.com/haml/haml/compare/v5.0.2...v5.0.1)). * Let `haml -c` fail if generated Ruby code is syntax error. [#880](https://github.com/haml/haml/issues/880) (Takashi Kokubun) * Fix `NoMethodError` bug caused with Sprockets 3 and :sass filter. [#930](https://github.com/haml/haml/pull/930) (thanks [Gonzalez Maximiliano](https://github.com/emaxi)) * Fix `list_of` helper with multi-line content. [#933](https://github.com/haml/haml/pull/933) (thanks [Benoit Larroque](https://github.com/zetaben)) * Optimize rendering performance by changing timing to fix textareas. [#941](https://github.com/haml/haml/pull/941) (Takashi Kokubun) * Fix `TypeError` with empty :ruby filter. [#942](https://github.com/haml/haml/pull/942) (Takashi Kokubun) * Fix inconsitent attribute sort order. (Takashi Kokubun) * Tue May 23 2017 [email protected] - updated to version 5.0.1 see installed CHANGELOG.md [#]# 5.0.1 Released on May 3, 2017 ([diff](https://github.com/haml/haml/compare/v5.0.0...v5.0.1)). * Fix parsing attributes including string interpolation. [#917](https://github.com/haml/haml/pull/917) [#921](https://github.com/haml/haml/issues/921) * Stop distributing test files in gem package and allow installing on Windows. * Use ActionView's Erubi/Erubis handler for erb filter only on ActionView. [#914](https://github.com/haml/haml/pull/914) [#]# 5.0.0 Released on April 26, 2017 ([diff](https://github.com/haml/haml/compare/4.0.7...v5.0.0)). Breaking Changes * Haml now requires Ruby 2.0.0 or above. * Rails 3 is no longer supported, matching the official [Maintenance Policy for Ruby on Rails](http://weblog.rubyonrails.org/2013/2/24/maintenance-policy-for-ruby-on-rails/). (Tee Parham) * The `haml` command's debug option (`-d`) no longer executes the Haml code, but rather checks the generated Ruby syntax for errors. * Drop parser/compiler accessor from `Haml::Engine`. Modify `Haml::Engine#initialize` options or `Haml::Template.options` instead. (Takashi Kokubun) * Drop dynamic quotes support and always escape `'` for `escape_html`/`escape_attrs` instead. Also, escaped results are slightly changed and always unified to the same characters. (Takashi Kokubun) * Don't preserve newlines in attributes. (Takashi Kokubun) * HTML escape interpolated code in filters. [#770](https://github.com/haml/haml/pull/770) (Matt Wildig) :javascript [#]{JSON.generate(foo: "bar")} Haml 4 output: {"foo":"bar"} Haml 5 output: {"foo":"bar"} Added * Add a tracing option. When enabled, Haml will output a data-trace attribute on each tag showing the path to the source Haml file from which it was generated. Thanks [Alex Babkin](https://github.com/ababkin). * Add `haml_tag_if` to render a block, conditionally wrapped in another element (Matt Wildig) * Support Rails 5.1 Erubi template handler. * Support Sprockets 3. Thanks [Sam Davies](https://github.com/samphilipd) and [Jeremy Venezia](https://github.com/jvenezia). * General performance and memory usage improvements. (Akira Matsuda) * Analyze attribute values by Ripper and render static attributes beforehand. (Takashi Kokubun) * Optimize attribute rendering about 3x faster. (Takashi Kokubun) * Add temple gem as dependency and create `Haml::TempleEngine` class. Some methods in `Haml::Compiler` are migrated to `Haml::TempleEngine`. (Takashi Kokubun) Fixed * Fix for attribute merging. When an attribute method (or literal nested hash) was used in an old style attribute hash and there is also a (non-static) new style hash there is an error. The fix can result in different behavior in some circumstances. See the [commit message](https://github.com/haml/haml/tree/e475b015d3171fb4c4f140db304f7970c787d6e3) for detailed info. (Matt Wildig) * Make escape_once respect hexadecimal references. (Matt Wildig) * Don't treat the 'data' attribute specially when merging attribute hashes. (Matt Wildig and Norman Clarke) * Fix #@foo and #$foo style interpolation that was not working in html_safe mode. (Akira Matsuda) * Allow `@` as tag's class name. Thanks [Joe Bartlett](https://github.com/redoPop). * Raise `Haml::InvalidAttributeNameError` when attribute name includes invalid characters. (Takashi Kokubun) * Don't ignore unexpected exceptions on initializing `ActionView::OutputBuffer`. (Takashi Kokubun) * Tue Aug 11 2015 [email protected] - updated to version 4.0.7 see installed CHANGELOG.md [#]# 4.0.7 Released on August 10, 2015 ([diff](https://github.com/haml/haml/compare/4.0.6...4.0.7)). * Significantly improve performance of regexp used to fix whitespace handling in textareas (thanks [Stan Hu](https://github.com/stanhu)). * Mon Feb 09 2015 [email protected] - updated to version 4.0.6 * Fix warning on Ruby 1.8.7 "regexp has invalid interval" (thanks [Elia Schito](https://github.com/elia)). * Tue Sep 30 2014 [email protected] - update to new packaging scheme * Thu Feb 20 2014 [email protected] - remove SUSE prefix from license * Mon Jan 20 2014 [email protected] - updated to version 4.0.5 * Fix haml_concat appending unescaped HTML after a call to haml_tag. * Fix for bug whereby when HAML :ugly option is "true", ActionView::Helpers::CaptureHelper::capture returns the whole view buffer when passed a block that returns nothing (thanks [Mircea Moise](https://github.com/mmircea16)). * Fri Nov 22 2013 [email protected] - updated to version 4.0.4 * Check for Rails::Railtie rather than Rails (thanks [Konstantin Shabanov](https://github.com/etehtsea)). * Parser fix to allow literal '#' with suppress_eval (Matt Wildig). * Helpers#escape_once works on frozen strings (as does ERB::Util.html_escape_once for which it acts as a replacement in Rails (thanks [Patrik Metzmacher](https://github.com/patrik)). * Minor test fix (thanks [Mircea Moise](https://github.com/mmircea16)). * Fri May 24 2013 [email protected] - updated to version 4.0.3 * Compatibility with newer versions of Rails's Erubis handler. * Fix Erubis handler for compatibility with Tilt 1.4.x, too. * Small performance optimization for html_escape. (thanks [Lachlan Sylvester](https://github.com/lsylvester)) * Documentation fixes. * Documented some helper methods that were left out of the reference. (thanks [Shane Riley](https://github.com/shaneriley)) * Fri Apr 12 2013 [email protected] - updated to version 4.0.2 * Explicitly require Erubis to work around bug in older versions of Tilt. * Fix :erb filter printing duplicate content in Rails views. (thanks [Jori Hardman](https://github.com/jorihardman)) * Replace range with slice to reduce objects created by `capture_haml`. (thanks [Tieg Zaharia](https://github.com/tiegz)) * Correct/improve some documentation. * Sat Mar 23 2013 [email protected] - updated to version 4.0.1 * Remove Rails 3.2.3+ textarea hack in favor of a more general solution. * Fix some performance regressions. * Fix support for Rails 4 `text_area` helper method. * Fix data attribute flattening with singleton objects. (thanks [Alisdair McDiarmid](https://github.com/alisdair)) * Fix support for sass-rails 4.0 beta. (thanks [Ryunosuke SATO](https://github.com/tricknotes)) * Load "haml/template" in Railtie in order to prevent user options set in a Rails initializer from being overwritten * Don't depend on Rails in haml/template to allow using Haml with ActionView but without Rails itself. (thanks [Hunter Haydel](https://github.com/wedgex)) * Sun Mar 03 2013 [email protected] - updated to version 4.0.0 long list, see CHANGELOG.md * Mon Aug 27 2012 [email protected] - license update: MIT and SUSE-WTFPL-2.0 and GPL-2.0 and Artistic-2.0 Package is MIT licensed (see MIT license and README.md). However, the sass component under vendors has a GPL license and some of the tests are WTFPL licensed * Sun Aug 26 2012 [email protected] - updated to version 3.1.7 * relicensed to SUSE-WTFPL-2.0 * Tue Jun 26 2012 [email protected] - update to 3.1.6 * fix for the rails 3.2.3 fix to work with rails 3.1 * Tue May 08 2012 [email protected] - update to 3.1.5 * Respect Rails’ html_safe flag when escaping attribute values * Fix for Rails 3.2.3 textarea helpers * Mon Apr 09 2012 [email protected] - update to 3.1.4 Fix the use of FormBuilder#block with a label in Haml. Fix indentation after a self-closing tag with dynamic attributes. * Mon Feb 13 2012 [email protected] - patch license to follow spdx.org standard * Sun Sep 18 2011 [email protected] - update to haml 3.1.3 - Fix partial layouts * Thu Jun 09 2011 [email protected] - update to haml 3.1.2 - many bugfixes - fix incompatibility with the rails_xss security fix (http://weblog.rubyonrails.org/2011/6/8/potential-xss-vulnerability-in-ruby-on-rails-applications) - Rails 3 support - does not bundle sass anymore, which is now in rubygem-sass * Fri Jun 18 2010 [email protected] - use rubygems_requires * Tue May 25 2010 [email protected] - do not require explicitly rubygems version, calculate it at build time * Thu May 20 2010 [email protected] - upgrade to haml 3.0.4 ( new features: Rails3 support, more useful multiline, color mixing, @extend...) - incompatibilities: - haml: The puts helper has been removed. Use Haml::Helpers#haml_concat instead. - sass: new syntax SCSS. SASS2-files can be converted with: sass-convert --from sass2 style.sass style.scss * Thu Feb 18 2010 [email protected] - upgrade to haml 2.2.20 * Thu Dec 17 2009 [email protected] - created package
/etc/alternatives/haml /etc/alternatives/haml-5.0.4 /etc/alternatives/haml.ruby2.5 /usr/bin/haml /usr/bin/haml-5.0.4 /usr/bin/haml.ruby2.5 /usr/bin/haml.ruby2.5-5.0.4 /usr/lib64/ruby/gems/2.5.0/build_info /usr/lib64/ruby/gems/2.5.0/cache/haml-5.0.4.gem /usr/lib64/ruby/gems/2.5.0/gems/haml-5.0.4 /usr/lib64/ruby/gems/2.5.0/gems/haml-5.0.4/.gitignore /usr/lib64/ruby/gems/2.5.0/gems/haml-5.0.4/.gitmodules /usr/lib64/ruby/gems/2.5.0/gems/haml-5.0.4/.travis.yml /usr/lib64/ruby/gems/2.5.0/gems/haml-5.0.4/.yardopts /usr/lib64/ruby/gems/2.5.0/gems/haml-5.0.4/CHANGELOG.md /usr/lib64/ruby/gems/2.5.0/gems/haml-5.0.4/FAQ.md /usr/lib64/ruby/gems/2.5.0/gems/haml-5.0.4/Gemfile /usr/lib64/ruby/gems/2.5.0/gems/haml-5.0.4/MIT-LICENSE /usr/lib64/ruby/gems/2.5.0/gems/haml-5.0.4/README.md /usr/lib64/ruby/gems/2.5.0/gems/haml-5.0.4/REFERENCE.md /usr/lib64/ruby/gems/2.5.0/gems/haml-5.0.4/Rakefile /usr/lib64/ruby/gems/2.5.0/gems/haml-5.0.4/TODO /usr/lib64/ruby/gems/2.5.0/gems/haml-5.0.4/benchmark.rb /usr/lib64/ruby/gems/2.5.0/gems/haml-5.0.4/bin /usr/lib64/ruby/gems/2.5.0/gems/haml-5.0.4/bin/haml /usr/lib64/ruby/gems/2.5.0/gems/haml-5.0.4/haml.gemspec /usr/lib64/ruby/gems/2.5.0/gems/haml-5.0.4/lib /usr/lib64/ruby/gems/2.5.0/gems/haml-5.0.4/lib/haml /usr/lib64/ruby/gems/2.5.0/gems/haml-5.0.4/lib/haml.rb /usr/lib64/ruby/gems/2.5.0/gems/haml-5.0.4/lib/haml/.gitattributes /usr/lib64/ruby/gems/2.5.0/gems/haml-5.0.4/lib/haml/attribute_builder.rb /usr/lib64/ruby/gems/2.5.0/gems/haml-5.0.4/lib/haml/attribute_compiler.rb /usr/lib64/ruby/gems/2.5.0/gems/haml-5.0.4/lib/haml/attribute_parser.rb /usr/lib64/ruby/gems/2.5.0/gems/haml-5.0.4/lib/haml/buffer.rb /usr/lib64/ruby/gems/2.5.0/gems/haml-5.0.4/lib/haml/compiler.rb /usr/lib64/ruby/gems/2.5.0/gems/haml-5.0.4/lib/haml/engine.rb /usr/lib64/ruby/gems/2.5.0/gems/haml-5.0.4/lib/haml/error.rb /usr/lib64/ruby/gems/2.5.0/gems/haml-5.0.4/lib/haml/escapable.rb /usr/lib64/ruby/gems/2.5.0/gems/haml-5.0.4/lib/haml/exec.rb /usr/lib64/ruby/gems/2.5.0/gems/haml-5.0.4/lib/haml/filters.rb /usr/lib64/ruby/gems/2.5.0/gems/haml-5.0.4/lib/haml/generator.rb /usr/lib64/ruby/gems/2.5.0/gems/haml-5.0.4/lib/haml/helpers /usr/lib64/ruby/gems/2.5.0/gems/haml-5.0.4/lib/haml/helpers.rb /usr/lib64/ruby/gems/2.5.0/gems/haml-5.0.4/lib/haml/helpers/action_view_extensions.rb /usr/lib64/ruby/gems/2.5.0/gems/haml-5.0.4/lib/haml/helpers/action_view_mods.rb /usr/lib64/ruby/gems/2.5.0/gems/haml-5.0.4/lib/haml/helpers/action_view_xss_mods.rb /usr/lib64/ruby/gems/2.5.0/gems/haml-5.0.4/lib/haml/helpers/safe_erubi_template.rb /usr/lib64/ruby/gems/2.5.0/gems/haml-5.0.4/lib/haml/helpers/safe_erubis_template.rb /usr/lib64/ruby/gems/2.5.0/gems/haml-5.0.4/lib/haml/helpers/xss_mods.rb /usr/lib64/ruby/gems/2.5.0/gems/haml-5.0.4/lib/haml/options.rb /usr/lib64/ruby/gems/2.5.0/gems/haml-5.0.4/lib/haml/parser.rb /usr/lib64/ruby/gems/2.5.0/gems/haml-5.0.4/lib/haml/plugin.rb /usr/lib64/ruby/gems/2.5.0/gems/haml-5.0.4/lib/haml/railtie.rb /usr/lib64/ruby/gems/2.5.0/gems/haml-5.0.4/lib/haml/sass_rails_filter.rb /usr/lib64/ruby/gems/2.5.0/gems/haml-5.0.4/lib/haml/template /usr/lib64/ruby/gems/2.5.0/gems/haml-5.0.4/lib/haml/template.rb /usr/lib64/ruby/gems/2.5.0/gems/haml-5.0.4/lib/haml/template/options.rb /usr/lib64/ruby/gems/2.5.0/gems/haml-5.0.4/lib/haml/temple_engine.rb /usr/lib64/ruby/gems/2.5.0/gems/haml-5.0.4/lib/haml/temple_line_counter.rb /usr/lib64/ruby/gems/2.5.0/gems/haml-5.0.4/lib/haml/util.rb /usr/lib64/ruby/gems/2.5.0/gems/haml-5.0.4/lib/haml/version.rb /usr/lib64/ruby/gems/2.5.0/gems/haml-5.0.4/yard /usr/lib64/ruby/gems/2.5.0/gems/haml-5.0.4/yard/default /usr/lib64/ruby/gems/2.5.0/gems/haml-5.0.4/yard/default/.gitignore /usr/lib64/ruby/gems/2.5.0/gems/haml-5.0.4/yard/default/fulldoc /usr/lib64/ruby/gems/2.5.0/gems/haml-5.0.4/yard/default/fulldoc/html /usr/lib64/ruby/gems/2.5.0/gems/haml-5.0.4/yard/default/fulldoc/html/css /usr/lib64/ruby/gems/2.5.0/gems/haml-5.0.4/yard/default/fulldoc/html/css/common.sass /usr/lib64/ruby/gems/2.5.0/gems/haml-5.0.4/yard/default/layout /usr/lib64/ruby/gems/2.5.0/gems/haml-5.0.4/yard/default/layout/html /usr/lib64/ruby/gems/2.5.0/gems/haml-5.0.4/yard/default/layout/html/footer.erb /usr/lib64/ruby/gems/2.5.0/specifications/haml-5.0.4.gemspec /usr/share/doc/packages/ruby2.5-rubygem-haml /usr/share/doc/packages/ruby2.5-rubygem-haml/CHANGELOG.md /usr/share/doc/packages/ruby2.5-rubygem-haml/MIT-LICENSE /usr/share/doc/packages/ruby2.5-rubygem-haml/README.md
Generated by rpm2html 1.8.1
Fabrice Bellet, Tue Jul 9 20:14:19 2024