File rubygem-markaby.changes of Package rubygem-markaby
-------------------------------------------------------------------
Fri Jun 21 10:11:42 UTC 2024 - Dan Čermák <dan.cermak@posteo.net>
- = 0.9.4
* Earlopain - Fix compatibility with latest builder release #49
- https://github.com/markaby/markaby/pull/49
* Aesthetikx Add Missing HTML5 Tags #48 - https://github.com/markaby/markaby/pull/48
* MrPowers - Small Refactorings - https://github.com/markaby/markaby/pull/50, https://github.com/markaby/markaby/pull/34
= 0.9.3
= 0.9.2
-------------------------------------------------------------------
Mon Jan 29 14:12:16 UTC 2024 - Dan Čermák <dan.cermak@posteo.net>
- = HEAD
= 0.9.1
* update release tasks [tech task]
* re-release version since code was included in last release
= 0.9.0
* Add data attributes: https://github.com/markaby/markaby/pull/44 (rahoulb)
* Add data + aria attributes
* Allow creation of custom web components / elements in html5
my_custom_element prop: "value" =>
"<my-custom-element prop="value"></my-custom-element>"
See https://stackoverflow.com/questions/9845011/are-custom-elements-valid-html5
* split up tag sets into different files
* add standardrb + use code conventions
-------------------------------------------------------------------
Tue Jan 9 07:35:17 UTC 2018 - coolo@suse.com
- updated to version 0.9.0
see installed CHANGELOG.rdoc
-------------------------------------------------------------------
Wed Oct 11 06:08:28 UTC 2017 - coolo@suse.com
- updated to version 0.8.1
see installed CHANGELOG.rdoc
-------------------------------------------------------------------
Sat Dec 21 08:14:18 UTC 2013 - coolo@suse.com
- updated to version 0.8.0
-------------------------------------------------------------------
Wed Aug 1 05:05:19 UTC 2012 - coolo@suse.com
- updated to version 0.7.2
-------------------------------------------------------------------
Fri Jun 11 18:57:41 UTC 2010 - mrueckert@suse.de
- additional changes from version 0.6.8
* Add a regression for issue Github #17 (for judofyr / Camping)
- additional changes from version 0.6.7
* Add rails support for 2.3.5 - 2.3.8
* Improved rails documentation
- additional changes from version 0.6.6
* ruby 1.9.1 support. Closes Github Issues #10 & #11.
* Removed Tilt deprecation warnings
- additional changes from version 0.6.4
* Fixed a bug in which direct string values to Markaby::Builder
wouldn't evaluate:
Markaby::Builder.new { 'foo' }.to_s #=> "foo"
* Fix critical bug with form_for, which was raising an error
* Introduce proxy object for form_for:
form_for :foo do |f|
f.text_field :bar
f.text_field :baz
end
* Remove support for rails 2.1.x series. We'll accept patches
for them, if anyone cares enough.
- additional changes from version 0.6.2 / 0.6.3
* Add basic support for the Tilt templating engine (used with
Sinatra):
require 'markaby'
require 'markaby/tilt'
- additional changes from version 0.6.1
* Support the following rails versions:
1.2.2, 1.2.3, 1.2.4, 1.2.5, 1.2.6, 2.1.0, 2.1.1, 2.1.2,
2.2.0, 2.2.1, 2.2.2, 2.2.3, 2.3.1, 2.3.2, 2.3.2.1, 2.3.3,
2.3.3.1, 2.3.4
* Only run rails tests when inside a rails plugins
* Run tests of the various versions of rails with garlic
* Start conversion to rspec. Use test/spec temporarily until
conversion is done.
- additional changes from version 0.6
* Canonical repo changed to http://github.com/joho/markaby
* Gem moved to Github (using jeweler)
* Rails init process changed to work with rails > 2.1
* Default attributes on the root (<html>) element can now be
overidden
* Reworked CssProxy, allowing attributes on hr and br
* Added Kernel#mab convenience method
(require 'markaby/kernel_method')
* WhenOnRails: Can now use :locals with render_markaby
* WhenOnRails: Template errors now report line number
-------------------------------------------------------------------
Fri Jun 11 10:00:01 UTC 2010 - mrueckert@suse.de
- use rubygems_requires macro
-------------------------------------------------------------------
Tue May 22 18:54:57 CEST 2007 - mrueckert@suse.de
- spec file cleanup
-------------------------------------------------------------------
Sun Oct 15 06:58:54 CEST 2006 - mrueckert@suse.de
- upgrade to version 0.5:
o XHTML Validation built in. So, if you have an invalid tag:
error. Invalid attribute: error. And two identical IDs in the
same document: error. Optional, of course. But handy!
o New Markaby::Fragment class adds much flexibility. If it
discovers you are using a tag as a string, the tag is removed
from the stream. (div { strong("Real") + " Giraffes" })
o The prevailing rule now is: if you want it escaped, pass it to
a block. If not, pass it as an arg.
o Again, escaped: h1("Me & You Have a Giraffe")
o And, not escaped: h1 { "<a href='/'>Home</a>" }
o Less method_missing, meaning: faster calls all around.
Tag methods generated based on doctype.
o The html method doesn't write the doctype tags and meta
tags. You must use xhtml_transitional or xhtml_strict methods
to do that
o The img method doesn't try to inject an empty alt tag and a
zero border. No more of that.