0
votes
1answer
60 views

How to set sinatra-authentication to use erb instead of haml?

I'm trying to set up the sinatra-authentication gem in a simple sinatra app, and running into an issue where sinatra can't find the correct views. I understand that sinatra-authentication uses haml ...
2
votes
4answers
78 views

How will be the best way to render array of arrays in erb template?

I have an array [["Company Name", "Field6"], ["Email", "Field5"]] And from that array I am creating array of fields with values: [ [{:label=>"Company Name", :value=>"gfdgfd"}], ...
0
votes
1answer
37 views

Id format of Sinatra's form inputs

We try to write nested forms in Sinatra. We can pass easly some values as model fields: id="user[name]" But what if we want to submit also related models? Assume we want to add a user and his 3 ...
0
votes
1answer
41 views

Setting Sinatra template options works locally, broken on Heroku

My Sinatra web site uses an admittedly ghetto way of switching between two languages, which works perfectly on my local machine, but not on Heroku. My app.rb is as follows: require 'sinatra' get ...
0
votes
2answers
56 views

How do I output a multidimensional hash in ERB files?

I need some help printing the values of my hash. In my "web.rb" file I have: class Main < Sinatra::Base j = {} j['Cordovan Communication'] = {:title => 'UX Lead', :className => ...
0
votes
2answers
324 views

Infinite template loading using Angular JS routeprovider

Fixed It checking for an xhr request fixed the infinite loop get '/about' do erb :about, layout: !request.xhr? end I am using angular js and sinatra to create a page. Angular is handling my ...
1
vote
1answer
125 views

Sinatra's way to render multiple .erb files

I have a web project that will render an HTML file, that is based on various .erb files. I'm not sure about the best way, to do this, since each .erb file need to get specific information, such as ...
1
vote
1answer
48 views

How to correct in the Sinatra show block

Sorry, I will not use the specific expression in English. index.erb <h1>Hello World.</h1> <ul> <li>item1</li> <li>item2</li> </ul> <% ...
1
vote
2answers
37 views

Is there any way to instantly see the edit to the erb file?

I am using Sinatra and erb on Passenger/Apache. Every time I made edit to the erb file, I have to restart Apache and refresh in the browser. Is there any way to edit the file and sinatra can ...
2
votes
3answers
139 views

in sinatra using erubis, default setting escape_html is true. sometimes hava to unescape

In Sinatra, using erubis, the default setting for escape_html is true. But sometimes I want to to unescape, because, I do not want to add too much escape_html. Don't repeat yourself. :) helpers: ...
0
votes
1answer
214 views

Can't add CSS on ERB file, Sinatra

I'm trying to add Twitter Bootstrap CSS to an ERB file and run with Sinatra, but CSS don't show up. My code: <link rel="stylesheet" href="/lib/bootstrap/css/bootstrap.min.css"> my folder ...
0
votes
2answers
175 views

Configuring erb directory in Sinatra

app/controllers/app.rb require 'sinatra' get '/' do erb :index end app/views/index.erb <html> <body> <p>Hello World</p> </body> </html> ...
0
votes
2answers
127 views

How to update checkbox if not selected?

I have some checkboxes and their name maps to a column in my activerecord model. Problem is, when the checboxes are selected, they appear in the params array in Sinatra, which works fine. But when ...
1
vote
1answer
207 views

Sinatra easily get current path

I am using Sinatra and in erb, every time I had to generate a link, I have to hardcode it like this: <li><a href=<%="/admin/users?page=#{i}"%>><%=i%></a></li> Is ...
0
votes
2answers
34 views

Accessing the name of the page in ERB

I am building a website with Sinatra and ERB templates. Within the ERB I would like to access the name of the page being loaded and change a small part of the layout accordingly. For example, my ...
2
votes
1answer
115 views

Access OmniAuth helper in Sinatra view

I'm new to this, so forgive me if I'm being stupid! I'm using OmniAuth for Sinatra to help authenticate users. In my layout.erb, I'd like to access the current_user helper to check if the user is ...
1
vote
1answer
129 views

How can I pass function parameters to an erb view with sinatra?

I currently have this: get '/myapp/get/:func' do erb :server, :locals => {:func => params[:func]} end And then in my server.erb file I have this: if (func == "myFunc1") myFunc1 elsif ...
0
votes
2answers
128 views

How do I encourge Pony to NOT use my layout when using Pony to send an email using a tempalte

Im sending like this : Pony.mail :to => 'me@mine.com.au', :from => 'me@mine.com.au', :subject => 'Howdy, Partna!', :body => erb(:email) Its working really well, ...
0
votes
1answer
54 views

superfluous output of yield_content

I see strange output in my pages when I use yield_content. Please see below. Notice the [#<Proc:0x850a14c@/home/akonsu/project/index.erb:1>] part. What is this? layout.erb: <!DOCTYPE html> ...
3
votes
2answers
130 views

erb & HTML, what should I name input is, name, and value?

I haven't programmed in a few years and I'm creating a small quiz to help me drill some vocab terms for schoolwork. In my file quiz.erb, I have the following: <%= question %> " ...
0
votes
1answer
119 views

String operations not working in Sinatra / ERB

Trying to truncate a string in Ruby/Sinatra in an .erb page. I have been trying variants of: <%= @caption_str.truncate(20) %> <%= @caption_str[0..20] %> But keep getting error messages ...
0
votes
2answers
484 views

How can I use erb templates with static files in Sinatra?

I am porting a plain HTML/CSS/JS site to using Sinatra for its backend. The main thing I'm interested in is templates. For now, I have a views directory with HTML files named like "index.html.erb" and ...
0
votes
1answer
129 views

How do I load more table rows while scrolling?

My guess is that I must add a 'post do' statement to my .rb file, though I'm still new to Sinatra and unfamiliar with how to load more content once the browser has scrolled to the bottom of the page. ...
1
vote
2answers
622 views

How do I use .html.erb as a file extension for my views with Sinatra?

If I have the following Sinatra code: get '/hi' do erb :hello end This works great if I have a file called views/hello.erb. However if I have a file called views/hello.html.erb Sinatra can't ...
1
vote
1answer
132 views

In Sinatra Can I Use Variables in a Route & View?

So I'm learning to use Sinatra (the very basics) and I understand the following basic code: get '/derp' do haml :derp end I quickly got to thinking: if I have a dozen pages, do I have to write ...
0
votes
1answer
172 views

How to improve Sinatra performance using HAML?

I found that when I use HAML in my Sinatra app to render templates it is 10x times slower than ERb. Is it any solution to improve app performance with HAML rendering? P.S. I run Sinatra in ...
0
votes
1answer
169 views

What is the erb equivalent of macros in jinja2?

In jinja2 I can specify frequently used template code in macros, essentially like template functions: {% macro input(name, value='', type='text', size=20) -%} <input type="{{ type }}" name="{{ ...
1
vote
1answer
256 views

undefined method `password_hash' error with datamapper

I'm trying to build [Ryan Bates' "authenticaion from scratch"][1] using sinatra but authentication does not work. I get a "undefined method password_hash" error. Everything else is working. I checked ...
0
votes
2answers
638 views

Passing variable from Sinatra module to view?

I have function in a module in the lib dir of my Sinatra app, that I want to be able to pass a variable back to a view. Trying to pass it like : @errorMessage = params["testing error"] erb :error ...
0
votes
0answers
306 views

Sinatra using ERB doesn't serve background image

I have created a simple Sinatra program to copy pictures off memory cards for a friends wedding. I am using ERB files (CSS or HTML) for a web front-end. I am able to get images to display but I ...
0
votes
1answer
244 views

ERB is not getting some values of a local hash

I am using Sinatra and rendering views with ERB. I have the following action get '/user/:id' do u = @users.retrieve( params[:id] ) u[:mykey] = [1,2,3] erb( :user, :locals => { :user => u ...
1
vote
1answer
289 views

Can't get Sinatra's PUT method to work with an ERB form

(I'm new to Sinatra) I have, in my index.erb the following form: <form method="post" action="play"> <input type="hidden" name="_method" value="put" /> <input type="button" ...
0
votes
1answer
115 views

Ruby Sinatra: Can I update a view template multiple times within one client request

I want to do this: get '/test' do @dog = 'WOOF' erb :test sleep(1) @dog = 'BOWWOW' erb :test sleep(1) @dog = 'ARF' erb :test end Is it possible to do something ...
7
votes
3answers
2k views

Conditionally set CSS class

How to convert this ERB code: <div <%= 'class="highlight"' if job.done %>> into Haml code?
0
votes
5answers
249 views

Can I concatenate the result of two helper methods in single erb output

I created a helper to output some text using erb <%= helper_method %> but if i tried to put it 2 times it will not work ..for eg.. <% = helper_method helper_method %> I am ...
0
votes
3answers
410 views

How do I strip HTML whitespace in ERB templates?

Is there a way to strip HTML whitespaces in ERB templates, using Sinatra? The Slim engine does it out-of-the-box, but I don't know how can ERB do the same.
2
votes
2answers
837 views

Unwanted whitespace in Erb view

Here's my sinatra code: get '/' do foo = 'not bar' erb :index end My layout.erb <html> <head></head> <body> <%= yield %> </body> </html> ...
10
votes
3answers
6k views

Passing parameters to erb view

I'm trying to pass parameters to an erb view using Ruby and Sinatra. For example, I can do: get '/hello/:name' do "Hello #{params[:name]}!" end How do I pass :name to the view? get ...
0
votes
1answer
124 views

CSS not showing up with ERB

I've just hosted something on Heroku, and whenever I opened the app it worked just fine with the css being linked as such: <link rel="stylesheet" href="/css/style.css"/> The problem ...
0
votes
1answer
290 views

Erb template not rendering when used with ensure exception handling

I have come across a issue when writing some sinatra code I have the follow block of code begin # do stuff here rescue SomeException::Class => ex flash.now[:err] = "some error " + ...
1
vote
1answer
573 views

SyntaxError using Case Expression on Sinatra 1.2.0 and Ruby 1.9.2

I'm using Sinatra 1.2.0 with Ruby 1.9.2 (I need to work with this version of Ruby for this project) and I don't know why I keep getting this SyntaxError. I can reproduce this error when using the ...
1
vote
1answer
315 views

Datamapper update enum value through form

I have a model like this: class Project include DataMapper::Resource property :id, Serial property :title, String property :slug, String property :status, Enum[:open, ...
4
votes
1answer
5k views

ruby 1.9 + sinatra incompatible character encodings: ASCII-8BIT and UTF-8

I'm trying to migrate a sinatra application to ruby 1.9 I'm using sinatra 1.0, rack 1.2.0 and erb templates when I start sinatra it works but when I request the web page from the browser I get this ...
1
vote
2answers
1k views

Relative path issue within Sinatra view

I am using the following code to check existence of a file before publishing an image in my erb file. This is a ruby/sinatra app - not rails. <% @imagename = @place.name + ".jpg" %> <% if ...
0
votes
3answers
750 views

Ruby w/ Postgres & Sinatra - Query won't order right with parameter?

So I set a variable in my main ruby file that's handling all my post and get requests and then use ERB templates to actually show the pages. I pass the database handler itself into the erb templates, ...
6
votes
2answers
6k views

Erb with Sinatra in ruby

So I have a webserver I've built using sinatra, the meat of which goes like this: set :variable,"value" get '/' do erb :index end And, of course, the template in views/index.erb which looks ...
5
votes
4answers
2k views

Can I inherit an erb template?

Is there any way to have a template inherit another template? I'm not using Rails.
4
votes
3answers
3k views

Yield in view for multiple blocks

I am writing a small Sinatra-based app and would like each view to be able to insert various items into the layout, for example the page title or extra CSS/javascript references in the head. ...