Skip to content

Latest commit

 

History

History
74 lines (55 loc) · 2.58 KB

CHANGELOG.rdoc

File metadata and controls

74 lines (55 loc) · 2.58 KB

HEAD

  • 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

  • Introduct proxy object for the object which form_for uses, so that we can write templates like the following:

    form_for :foo do |f|
      f.text_field :bar
      f.text_field :baz
    end
    

0.6.2 / 0.6.3

  • Add basic support for the Tilt templating engine (used with Sinatra):

    require ‘markaby’ require ‘markaby/tilt’

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.

0.6

23 August, 2009

  • Canonical repo changed to 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

0.5

03 October, 2006

  • 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!

  • 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" })

  • The prevailing rule now is: if you want it escaped, pass it as an arg. If not, pass it to a block.

  • Again, escaped: h1("Me & You Have a Giraffe")

  • And, not escaped: h1 { "<a href='/'>Home</a>" }

  • Less method_missing, meaning: faster calls all around. Tag methods generated based on doctype.

  • The html method doesn’t write the doctype tags and meta tags. You must use xhtml_transitional or xhtml_strict methods to do that.

  • The img method doesn’t try to inject an empty alt tag and a zero border. No more of that.

0.3

02nd February, 2006

  • Allow Markaby::Builder.new without args.

  • Rails helper method render_markaby.

0.2

17th January, 2006

  • Public announcement.

  • DOCTYPES, head tags.

  • Works with Rails helpers.

0.1

05th January, 2006

  • Initial import.