Tagged Questions
0
votes
0answers
19 views
Datamapper:Heroku (Sinatra) DataObjects::SyntaxError - ERROR: relation “jobs” does not exist
I am writing a Sinatra DB based app with Datamapper and deploy to heroku.
This is the model:
class Job
include DataMapper::Resource
property :id, Serial, :key => true
property :user_id, ...
1
vote
1answer
28 views
Twilio Quickstart Code for SMS Conversations not incrementing
I'm using labcoder's Twilio-Hackpack-for-Heroku-and-Sinatra then am following the Ruby Quickstart on Twilio's site. I've literally copied and pasted the code and it refuses to increment the counter. ...
0
votes
1answer
43 views
hover.com + digitalocean: How to show url name instead of IP in browser address bar
I suppose this might by a very amateury question:
I started learning something new by building a small website with ruby + sinatra. I signed up at digitalocean.com, set up my VPS and got everything ...
1
vote
0answers
34 views
Mongoid error in heroku: Database should be a Mongo::DB, not a nil class
I have a Sinatra app on heroku and it keeps crashing due to this error:
app/vendor/bundle/ruby/1.9.1/gems/mongoid-1.2.14/lib/mongoid/config.rb:52 in 'master': Database should be a Mongo::DB, not a ...
0
votes
1answer
105 views
NoMethodError - undefined method 'id' for nil:NilClass with Sinatra app when deployed on Heroku
I am stuck with this problem. I have the following DataMapper model in my Sinatra app;
class Word
include DataMapper::Resource
property :id, Serial, :key => true
property :word, String
end
...
0
votes
2answers
40 views
Array with rand() works locally but not on heroku
The following works locally:
require 'sinatra'
get '/rand' do
["one", "two", "three"][rand(0..2)]
end
However, on heroku, I get a Internal Server Error.
Interestingly, this works:
get ...
0
votes
1answer
72 views
Application crashes with TypeError - nil can't be coerced into Float
I'm very new to programming and just tried to put my first project online and am getting an internal server error. I don't quite even know where to start, I'm running Ruby on Sinatra and hosting it on ...
1
vote
0answers
17 views
Resque Optimisation on Heroku
I'm using Resque for heavy data processing on Heroku.
Using NewRelic, I see that my tasks use somthing like 15% of CPU share and 50mo RAM per instance.
I could process 5 jobs using only one dyno.
...
1
vote
1answer
69 views
Heroku- Set environment variable during scheduled task
I'm trying to create a scheduled task on heroku that will set an environment variable for the application. How would I set this environment variable? Is there a way to invoke heroku config:add from ...
1
vote
0answers
79 views
How do I test if Rack::Cache is functioning with Sinatra app on Heroku with memcache?
I'm making a web app where many users will be viewing a Google map, with updates on the map pulled in through ajax requests to the server. I want the response that is sent to the users to be cached, ...
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 ...
1
vote
1answer
81 views
Heroku: Not Found & Process Exited
I'm not sure how I can debug this. Running this ruby/sinatra/thin app locally I have no issues whatsoever. On Heroku however the app doesn't seem to load, says "Not Found.". I'm not sure how to make ...
0
votes
1answer
85 views
Are my assets being served from AWS S3
Maybe a really daft question and please dont mark me down for this, but I finally got Heroku to compile its static assets in my S3 bucket with asset_sync.
Now how do i know that the assets are in ...
0
votes
1answer
100 views
Getting Heroku to precompile assets to Amazon aws s3
Almost there with my issue of getting AWS S3 to serve my heroku app its static assets
Everything works locally, i run my rake task and then the assets get precompiled to AWS ( though there is never ...
0
votes
2answers
132 views
ENV variables not being read sinatra
So i am trying to serve my static assets from Amazon s3 locally and for Heroku, I was loading a yml file but that doesn't work as Heroku doesn't accept symlinks.
So i was given the suggestion to use ...
3
votes
3answers
433 views
Environment variables locally and Heroku
I have a sinatra app in which i have a yml file to set environment variables, i call them using this method
module MyConfig
def config
environment = ENV["RACK_ENV"] || "development"
...
2
votes
1answer
417 views
Sinatra and Grape API together?
I've been reading around and I found this micro-framework called Grape for ruby. I am currently using Sinatra to handle the web interface but I would also like to implement Grape to handle the API ...
0
votes
0answers
46 views
Rails NoMethodError at /delayed_job/overview
Iam using Delayed Jobs in my Rails application deployed on Heroku and want to integrate the Delayed Job web view in my app. Iam refrencing the DelayedJobWebView to integrate the delayed job overview.
...
0
votes
0answers
67 views
Why does Mongoid on Heroku timeout with find_by works but works with where?
I am having some strange behavior with Mongoid.
Person.find_by("name" => params["name"])
times out with code=H12 desc="Request timeout", but this works:
Product.where("name" => ...
0
votes
1answer
53 views
Can you convert a Rails app to Sinatra on Heroku
Does anyone know if there is any issues with converting a Rails app to Sinatra with Heroku? I already have a Heroku app running and it is currently a simple Rails app that is basically a few views and ...
0
votes
1answer
113 views
Sinatra - downstream app not set
I'm getting this strange error: downstream app not set
However my app is responding and working well.
I've checked - and I've not found any requests to undefined routes.
(Maybe there is some tools ...
1
vote
0answers
56 views
Creating pages with Nesta on Heroku
I am looking to roll a simple CMS with Ruby and preferably Sinatra. www.nestacms.com looks like a terrific candidate.
Some key objectives:
Allow business users to add/edit/remove pages (not via ...
1
vote
1answer
171 views
heroku db:push sqlite://mydatabase.db error
**When I do "heroku db:push sqlite://mydatabase.db" I have a problem with Ruby + Sinatra + Sqlite3 + Heroku :
When i do : "heroku db:push sqlite://anotador.db"
Console log:
...
0
votes
1answer
62 views
“ No such file or directory” on ERB-Sinatra in Heroku
i'm doing and app for college in Ruby with Sinatra as frameworks, i'm using erb for templates and in local is everything ok but in heroku gives me that error:
No such file or directory - ...
0
votes
1answer
124 views
Heroku - Application Error H10 after insert config.ru in Sinatra app
I trying to deploy an app to Heroku, but when I push my config.ru file I've got errors.
Follow Heroku's log:
2013-01-16T21:04:14+00:00 heroku[web.1]: Starting process with command `bundle exec ...
1
vote
2answers
92 views
How does Sinatra know which environment to use?
I uploaded a Sinatra app to the server (heroku). But it seems like the app acts itself like it's at a localhost unlike my another Rails app which works well there.
So how do I check if my Sinatra ...
1
vote
1answer
196 views
Heroku push rejected
-----> Ruby/Rack app detected
-----> Using Ruby version: ruby-1.9.3
-----> Installing dependencies using Bundler version 1.3.0.pre.2
Running: bundle install --without development:test --path ...
0
votes
1answer
117 views
Bad Bind for Sinatra App on Heroku
My goal here is to see if I'm missing something obvious with regard to deploying a small Sinatra application to Heroku and diagnosing why a port error comes up.
I am deploying a fairly simple ...
1
vote
2answers
180 views
Heroku rake tasks failing for Sinatra app with string arguments
I've just deployed a Sinatra app to heroku and the app contains two rake tasks:
task :create_db , [:db_id , :db_name]
task :destroy_db , [:db_id, :token]
When I run
heroku run rake -T
in the ...
0
votes
1answer
86 views
Setting up Firefly (ruby link shortener) 2.0 on Heroku?
I have a working install on my local machine, but was unable to do the same on heroku.
The only changes I've made:
change hostname in firefly.yml to rxlcc.herokuapp.com
comment out other dbs in ...
3
votes
0answers
105 views
Installing binaries on Heroku, specifically FontCustom
I'm building a web app on Heroku which will allow users to select n number of SVG icons, and package those icons into a font file for them. The core of the app is a project called FontCustom. Using a ...
2
votes
1answer
324 views
How to run Sinatra job in background?
When responding to a request, is it possible to send the response and then continue processing?
Or do you need to run a background process? What is the simplest solution?
Sinatra app on Heroku, Ruby ...
0
votes
0answers
76 views
Sprockets working locally, but not on Heroku
I have a Sinatra app using Sprockets for asset management. The basic app hierarchy for assets looks like this:
/
-- app/
-- assets/
-- css/
-- js/
-- ...
1
vote
1answer
146 views
How Do I Run a Tweetstream Loop on Heroku?
I have a fairly simple Tweetstream listener built in a Sinatra app that I am trying to get running on Heroku. It gets up and running fine, but after about a minute I get the following error:
...
1
vote
3answers
132 views
Why are there lingering open connections in my Heroku-powered Sinatra app's PostgreSQL?
My web app is located at www.inflationtrends.com.
There are several calculators there. The first and third ones access a PostgreSQL database hosted by Heroku. The app itself was made using Sinatra. ...
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
1answer
234 views
sinatra redirect on error
I'm having problem with redirecting on error in Sinatra modular app.
I'm deploying on Heroku and when there is an error, application dies.
I'd like it to catch this error, redirect to error page and ...
0
votes
1answer
55 views
Is it possible for a sinatra app to use 2 databases?
We have an API in Sinatra that serves both a staging environment and a production environment. The API should talk to the staging database if the request comes from a staging server. It should talk to ...
0
votes
1answer
174 views
Accessing Sinatra application scope from Rake task
I have a global variable in a Sinatra application that I want to update with a scheduled task from my Rakefile. Note that the application is hosted on Heroku. I have set up helpers in order to access ...
0
votes
1answer
99 views
How to create a wildcard redirect with sinatra
I recently had problems upgrading to the new cedar stack on Heroku. So I worked around it by dumping my old website into a static public folder powered by the sinatra code below.
However, links to ...
0
votes
1answer
104 views
Deploy Sinatra app to heroku
I'm trying to deploy the basic sinatra app from the heroku docs. The app appears to be deploying and starting correctly, but I can't see it. What am I missing?
# Gemfile
source 'http://rubygems.org'
...
1
vote
1answer
170 views
How do I use CGI in a Heroku application written with Ruby and Sinatra?
I am trying to move information from a text form to a new web page using CGI. To do this, I set action to action="new.html" in the form. Then, in the relevant part of my .rb file, I have:
get ...
0
votes
0answers
75 views
Why would this session != params trip in Sinatra?
I am using Sinatra and using the sinatra-authentication gem for authentication, along with custom forms such as a contact form.
To help resolve CSRF issues I devised a little solution which would ...
2
votes
3answers
439 views
failed to install gems via bundler and heroku push rejected
I've tried updating the bundler and installing it, but it still fails. I've looked through everything I can find about this topic and it's not solving the problem.
Gemfile:
source ...
4
votes
2answers
358 views
How can I control caching for static assets when using Sinatra? [closed]
I'm using the latest Sinatra and I'm hosting on Heroku. Is there a way I can set the caching headers for my static assets served from the /public directory?
Sinatra serves files from the /public ...
2
votes
1answer
45 views
How can I use flash[:notice] across domains?
I have a website that is served via HTTP with a custom domain (e.g., mywebsite.com) on Heroku.
When a user wants to login, I redirect them to my Heroku application's non-custom URL via HTTPS (using ...
0
votes
1answer
200 views
Sinatra app throws an internal server error on heroku
I deployed a small sinatra app on heroku. I get an internal server error message when I try to access the page. Here is what I get from heroku logs
2012-09-29T17:24:18+00:00 app[web.1]: TypeError - ...
0
votes
2answers
229 views
Why are there open connections on my Heroku app's PostgreSQL database? How do I close them?
My Heroku app is www.inflationtrends.com.
Usually, when I run "pg:info" in Git Bash to see how many connections there are, that number is zero.
Recently, I've seen a spike in traffic -- not much, ...
1
vote
2answers
241 views
Problems getting my sinatra based app to work on Heroku
I made a simple Sinatra app to run a homepage. It's already working on my computer. Now I wanted to host it at heroku, but I can't manage it to make it run. I am not really familiar with concepts like ...
1
vote
1answer
158 views
Datamapper TEXT limited to 65k characters by default — how to raise the limit?
I have a class that needs to have TEXT up to about 300k characters and it's stored in a PostgreSQL db.
Postgres itself has no problem with megabyte blobs, (eventually I will store them in S3), but ...


