0
votes
1answer
30 views

How can I embed errors from Haml::Engine in a web page in production on Heroku

Part of my app is accessible to me alone when I login as admin. In documents#new and documents#edit, I have a <textarea> in a form which I use to write and edit structured text using HAML. I ...
0
votes
1answer
66 views

using an %a{:href => “a uri”}some_text tag in haml

How come when I use the tag: %a{:href => "a uri"}some_text in a Haml file in my Ruby on Rails project on a Heroku server I get an error?
0
votes
1answer
97 views

Heroku does not read application.html.haml

I got a simple 'Contact Us' site that local server displays correctly. It has and application.html.haml inside views/layouts with a small header and footer. This 'yield' a container with the contact ...
1
vote
2answers
98 views

Is there any way to test HAML output in Rails Console?

I want to do something like this in console: = raw CSV.generate_line(array) And see how the output looks like. The reason being the CSV output on Heroku is adding in extra newlines in every CSV ...
0
votes
2answers
90 views

Bad Request/Bad URI on production (Heroku) but not locally

Let me preface this by saying most of this application is a giant hack put together in a short window of time under pressure so I may have deeper issues. This question will likely have some bad code ...
0
votes
0answers
46 views

Heroku serving empty head tags in rails application

I recently just merged two branches on a project that I am working on. After the merge checked out on my local server I decided to push the changes to Heroku. Once it got to Heroku for some reason it ...
2
votes
4answers
2k views

Rails CSS not Loading using Heroku

UPDATE: The full site code is here - https://github.com/eWizardII/PeerInstruction I have the following site set up here on Heroku - http://www.peerinstruction.net/users/sign_up the issue is that ...
0
votes
1answer
345 views

Heroku + Haml Problems

I am having issues with Heroku and Haml, I am able to run my app on localhost no problems, all test pass to, however when I go to run it on Heroku I get the following error: We're sorry, but ...
1
vote
2answers
135 views

Sinatra app deploys to Heroku, but Textile markup not wrapped in HAML layout

I've written a small Sinatra application (version 1.1.2) and deployed it successfully to Heroku, with just one small problem. One of the views, views/about.textile, is not wrapped properly by the ...
0
votes
2answers
366 views

Sinatra HAML Heroku in-file templates

I'm following a tutorial from http://ruby.about.com/od/sinatra/a/sinatra7_2.htm however I'm having a few problems running the app within my own environment. The problem is that the following line: ...
0
votes
1answer
700 views

How to cache HAML files in /tmp directory?

I'm having an issue with HAML where it is attempting to write to a read-only filesystem (on a Heroku-deployed app). I can only write to /tmp and /log. How can I configure HAML to write files to the ...
1
vote
1answer
803 views

Postgres error with Sinatra/Haml/DataMapper on Heroku

I'm trying to move a simple Sinatra app over to Heroku. Migration of the Ruby app code and existing MySQL database using Taps went smoothly, but I'm getting the following Postgres error: ...
13
votes
3answers
4k views

Why does a rails app on heroku serve assets via all.css and locally via individual files

I'm a rails newbie, I've been trying to figure out what is going on with the stylesheets_link_tag on heroku. If I use = stylesheet_link_tag "style", :cache => true heroku uses "all.css" and ...
5
votes
3answers
3k views

How to use haml with heroku?

I try to get haml working without the gem with sinatra (Heroku doesn't allow gem install, as far as I know) What I've done so far: clone the haml git repo inside my project add : require ...