# Render Me Pretty Let's say you have an error in your ERB template: ``` line 1 <%= sdsd %> line 3 ``` Normally, when render it with ERB you get an error message that looks something like this: ```sh NameError: undefined local variable or method `sdsd' for # (erb):2:in `get_binding' ./lib/render_me_pretty.rb:71:in `render' ./spec/lib/render_me_pretty/erb_spec.rb:41:in `block (3 levels) in ' ``` Instead, this library produces an output with an error pointing out the original line in the ERB template like so: ``` NameError evaluating ERB template on line 2 of: spec/fixtures/invalid.erb 1 line 1 2 <%= sdsd %> 3 line 3 ``` The output also colorizes the error line in red so it stands out. ## Usage Here's a simple example: ```ruby erb = RenderMePretty::Erb.new("/path/to/tempate.erb", a: 3) } erb.render(a: 4) ``` A few more examples are in the [erb_spec.rb](spec/lib/erb_spec.rb) ## Installation Add this line to your application's Gemfile: ```ruby gem 'render_me_pretty' ``` And then execute: $ bundle ## Contributing Please fork the project and open a pull request! I'd love your pull requests. Contributions are encouraged and welcomed! 1. Fork it 2. Create your feature branch (`git checkout -b my-new-feature`) 3. Commit your changes (`git commit -am 'Add some feature'`) 4. Push to the branch (`git push origin my-new-feature`) 5. Create new Pull Request