paggio
paggio copied to clipboard
Ruby, HTML and CSS at war.
I've noticed that Paggio doesn't load in versions of Ruby since 2.4. When monkey-patching numeric classes to handle CSS unit calculations it `raise`s when it encounters `Fixnum` which no longer...
Run Paggio through standardrb to format the code
The currently published gem has the following file permissions: ```shell [user@localhost paggio]$ tar -tvf data.tar.gz -rw------- wheel/wheel 116 2015-12-11 19:40 .travis.yml -rw------- wheel/wheel 62 2015-12-11 19:40 Gemfile -rw------- wheel/wheel 416...
How about supporting a theoretical code like this? ``` ruby class Page include Paggio::HTML def initialize(title, content) @title = title @content = content end def to_html html do head do...
``` ruby html! class: "no-js" do head do meta charset: "utf-8" end end ``` ``` ArgumentError: wrong number of arguments (1 for 0) /Users/krainboltgreene/.rvm/gems/ruby-2.1.5@de-hackerlife/gems/paggio-0.2.4/lib/paggio/now.rb:17:in `html!' views/index2.rb:1:in `' ```