Skip to content

Instantly share code, notes, and snippets.

@adam12

adam12/Gemfile Secret

Created August 22, 2014 21:25
Show Gist options
  • Save adam12/46a45a7dc0c9d59e50c7 to your computer and use it in GitHub Desktop.
Save adam12/46a45a7dc0c9d59e50c7 to your computer and use it in GitHub Desktop.
tilt-forme-test
require "bundler/setup"
require "tilt"
require "forme/erb"
template = "form.erb"
def env; nil; end
include Forme::ERB::Helper
p Tilt.new(template).render(self)
<% form(:action => '/baz') do |f| %>
<%= f.input(:text, :name => 'bar') %>
<% end %>
source "https://rubygems.org"
gem "tilt"
gem "forme"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment