Tagged Questions
6
votes
2answers
619 views
Rails bundler: “Could not find tilt-1.3.5 in any of the sources”
I have never encountered this problem before so I really don't know where to start looking for answers... despite Google ofcourse which seems to be an empty road concerning this topic.
When I try to ...
0
votes
1answer
59 views
Subclass Rack::Throttle
i am reading about Rack::Throttle and i want to change the default client identifier from an IP to somethng else. The documentation says it can be done
The rate-limiting counters stored and ...
2
votes
1answer
248 views
We're sorry, but something went wrong. (Heroku Error)
I've just been hit with the " We're sorry, but something went wrong. " error when deploying to Heroku.
Being fairly new to Heroku i'm having trouble identifying the issue, to troubleshoot it.
...
2
votes
1answer
372 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
1answer
60 views
How to purge Heroku-injected gems
During deployment Heroku injects some plugins
-----> Rails plugin injection
Injecting rails_log_stdout
Injecting rails3_serve_static_assets
..which are becoming deprecated
...
2
votes
0answers
153 views
Can't push to master via heroku [closed]
thanks in advance for your help.
When I try to run
$ git push heroku master
I get an error:
An error occurred while installing sqlite3 (1.3.7), and Bundler cannot continue.
Make sure that ...
1
vote
1answer
149 views
Can't install therubyracer-heroku in Ubuntu
I can't install therubyracer-heroku in Ubuntu 12.04. I have seen this error in one or two other places on the internet, but no solution. The command I run is:
sudo gem install therubyracer-heroku -v ...
0
votes
2answers
360 views
Heroku push hanging on “fetching gem metadata from rubygems” with no errors or trace of any kind
My deployment is stuck on fetching gem metadata from rubygems every time I deploy.
It worked this morning, had problems this afternoon and now it's not working again.
We tried from somewhere else and ...
2
votes
3answers
426 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 ...
3
votes
1answer
256 views
Can't make calls to heroku CLI from within a Rake task without the Heroku gem in the Gemfile
I've had an app running on Heroku for a while now and on a recent deployment saw the message that the Heroku gem was deprecated in favor of the Heroku Toolbelt. With the toolbelt, all of my Heroku ...
1
vote
1answer
651 views
Git Push to Heroku, receiving “Invalid RUBY_VERSION specified:”
I'm trying to push an app to heroku using "git push heroku master".
In my Gemfile, I have the following:
source 'https://rubygems.org'
ruby 'ruby 1.9.3'
gem 'foreman'
but when I try to push to ...
0
votes
2answers
269 views
Hartl's Chapter 7 when pushing to heroku, “pg is not part of the bundle” but it is
So I'm going through Hartl's Tutorial on RoR and I'm at the end of chapter 7. I'm trying to deploy to heroku. Everything up until the
heroku run rake db:migrate
step works, but that step gives me ...
1
vote
1answer
212 views
Running Ruby script with gems on heroku fails: no such file to load
I want to run a ruby script on heroku server. The problem is that when I run the script on Heroku it seems to see no gems!
Here is a sample test situation I have just created.
I have a simple script ...
1
vote
2answers
143 views
How does the production environment in Rails / Heroku work?
I'm trying to learn Rails by making a blog for myself and deploying it on Heroku, but I'm encountering a NoMethodError on a custom gem. Everything is working locally in Development, but I keep ...
1
vote
2answers
132 views
How to combine gems from multiple Gemfiles to run one Ruby program?
My Question
Suppose I have a directory structure like this:
app/
core/
bin/
runner
Gemfile
...
Gemfile
lib/
The "core" is an application which has ...
1
vote
0answers
365 views
Heroku run rake db:migrate error with “no such file to load — bundler/setup”
I'm trying to do a "heroku run rake db:migrate", and get this error:
es-MacBook-Pro:project e$ heroku run rake db:migrate
Running rake db:migrate attached to terminal... up, run.1
(in /app)
rake ...
3
votes
3answers
600 views
Some heroku commands couldn't find my application
I can find my apps in heroku apps command, and also do some command to read information from app like heroku addons --app appname.
But I couldn't find my apps in some command like heroku addons:add ...
3
votes
1answer
441 views
How to get Rails Heroku log backtrace from Heroku error
I using rails 3.2.3 on Heroku Bamboo stack. I got this error last night from my logs but can't diagnose exactly where and why its occurring. How can I get the entire backtrace of the error from my ...
0
votes
1answer
468 views
Heroku push rejected, failed to install gems via Bundler
I am having a problem with pushing my rails project back up to heroku. I was able to do this a few days ago. I made a few changes to my files and tried to re push using git push heroku. It starts the ...
0
votes
1answer
186 views
Deploying a Sinatra App to Heroku With Bundler — Gems not found
I am deploying a Sinatra app to Heroku. I am using Bundler for my dependencies. When I run it on my machine, it works with no problem. I launch it with this
config.ru
require "rubygems"
require ...
0
votes
1answer
1k views
deploying to heroku keeps installing sqlite3, but no sqlite3 as dependency in gemfile.lock, and no sqlite3 in gemfile
I know that I can't have sqlite3 when I deploy to heroku (I have used it in development, but since then deleted it.
jeffrey@ubuntu5:~/Documents/Sites/burma_project$ bundle show sqlite3
Could not ...
6
votes
4answers
3k views
“No such file or directory - getcwd” error on rubygems on Mac Os Lion
I'm trying to launch a heroku console that uses rubygems but I keep getting this error:
/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/rubygems.rb:471:in `expand_path': No ...
1
vote
1answer
135 views
heroku upgrade rubygems
The rubygems version on my local is 1.8.10 but on heroku is 1.3.7. I see the following errors in heroku logs.
Invalid gemspec in ...
1
vote
4answers
1k views
Heroku on Rails - Invalid DATABASE_URL
EDIT: The general advice is to use CEDAR stack.
Pretty new to RoR, Gems, Heroku and Git. Following tutorial: http://ruby.railstutorial.org/book/ruby-on-rails-tutorial
Works smoothly on localhost, ...
1
vote
3answers
1k views
Heroku push failing, perhaps timeout from rubygems
I'm trying to push to heroku using
git push heroku master
It gets stuck when trying to access rubygems:
-> Heroku receiving push
-----> Removing .DS_Store files
-----> Ruby/Rails ...
0
votes
1answer
789 views
Ruby on Heroku Memcache error
To preface I am a Ruby newbie.
When I try to run my app on Heroku with memcache I get the following error:
/app/.bundle/gems/ruby/1.9.1/gems/activesupport-3.1.0/lib/active_support/cache.rb:65:in ...
1
vote
1answer
322 views
Installing a forked github gem of Toto
Ok, this is probably simple, but I'm having a bit of a pain trying to get it to work.
So I was using the gem "Toto", which I installed using "sudo gem install toto", but I recently found a fork of ...
1
vote
0answers
158 views
Try 'gem update --system' to update RubyGems itself
here are logs
enter code here
git push heroku-dev masterCounting objects: 29, done.
Delta compression using up to 2 threads.
Compressing objects: 100% (21/21), done.
Writing objects: 100% (21/21), ...
1
vote
1answer
982 views
Bundler error when pushing to Heroku
I get this error when I'm pushing my app to Heroku and it tries to install the SystemTimer gem:
Installing SystemTimer (1.2.3) with native extensions ...
0
votes
1answer
470 views
rails heroku issue pushing
when i go to my heroku url after i do git push heroku i get an error telling me to check my logs. here is my logs
what am i doing wrong?
2011-08-05T07:36:01+00:00 heroku[web.1]: State changed from ...
0
votes
2answers
293 views
Rails Admin help
I was pushing to heroku and everything seemed to be going fine until i went to the url. I get this error at the url:
Application Error
An error occurred in the application and your page could not ...
1
vote
2answers
330 views
API polling bot on heroku
I want to create a bot which makes API request per minute to some API url. This then needs to ping a particular user if data entry has changed against his name in the API feed. I want to go for a free ...
0
votes
2answers
409 views
Heroku App Crashes - Reports Error in ActiveSupport gem
I'm having some hard time running my app on Heroku - The app runs perfect on my local machine. :(
The logs report some problem with my ActiveSupport gem. So, i've taken these measures:
1) ...
0
votes
1answer
2k views
ERROR: Failed to > build gem native extension. - Can't install taps gem
I cannot install the taps gem. I tried running:
sudo apt-get install libreadline-dev
sudo apt-get install libncurses-dev
cd ~/.rvm/src/ruby-1.9.2-p136/ext/readline
ruby extconf.rb
make
sudo make ...
0
votes
4answers
321 views
ROR Hosting having functionality like heroku and MySQL DBMS
I've bought a script which uses rails 2.3.5 and MySQL.
I deployed it on my computer and it was working fine but when I uploaded that script on heroku, some functionality does not work. When I checked ...
2
votes
1answer
656 views
Heroku + DelayedJob failing at 'rake jobs:work' and 'heroku workers 1'
I cannot get queued delayed_jobs to run on my verified heroku account. Here is the breakdown:
When I invoke delayed_job on heroku
# tropo_controller.rb in app/controllers
class TropoController < ...
0
votes
1answer
534 views
My Rails 3 Bundler gem works locally but not on Heroku for serving certain layout files. Any ideas?
I am playing around with the Social Stream gem, a social networking platform built for Rails 3, which seems to pull some of its view layout files from a gem directory, rather than locally within the ...
2
votes
1answer
851 views
Error when trying to create Heroku app on Windows
When I try to do heroku create I get the following error message:
d:/Ruby187/lib/ruby/gems/1.8/gems/heroku-2.0.1/lib/heroku/command/base.rb:83:in 'read': No such file or directory -d (Errno::ENOENT) ...
2
votes
1answer
2k views
Getting error: update rubygems while deploying/migrating to Heroku
I am getting the following error when migrating to Heroku.
Installing hoe (2.9.4) /usr/ruby1.9.2/lib/ruby/1.9.1/rubygems/installer.rb:170:in >install': hoe requires RubyGems version >= 1.4. Try ...
11
votes
2answers
2k views
rails 3 blog engine/gem that works on heroku, what to use?
I have spent some time looking for a rail3 blog engine for use on an existing site. I want the blog on the same domain as the application for SEO points eg www.site.com/blog not blog.site.com
Having ...
0
votes
1answer
686 views
Heroku / Bundler / Push issue: Could not find rake-0.8.7 in any of the sources
For the life of me I can not figure out how to fix this issue. I have looked around for the whole day and found simular issues but they all seem to be slightly different.
-----> Heroku receiving ...
0
votes
1answer
163 views
Installing Heroku gem to my root directory
How do I install the Heroku gem to my root directory? I tried sudo gem install heroku, but this doesn't seem to work. Any other suggestions? I am working with OSX.
2
votes
1answer
503 views
redcloth (MissingSourceFile) - new problem after Heroku changed to bundler 1.0.7
Our app had been working. Now I just pushed some new code into staging on Heroku for the 1st time after they moved to bundler 1.0.7. Now our app crashes and I got this error message -
...
4
votes
2answers
240 views
Why does Heroku always find unresolved dependencies?
I haven't installed any gems since the last time I deployed, but
Heroku keeps thinking there is something new I suppose, and that
significantly slows down my deployment time. How can I make sure that
...
1
vote
1answer
501 views
Should I add files that are part of the Ruby Standard Library to the `Gemfile`?
I need to do require 'openssl' in my code. Otherwise, I get NameError: uninitialized constant Object::OpenSSL. But, when I do gem list, I don't see openssl. I'm deploying a Sinatra app to Heroku stack ...
3
votes
1answer
169 views
How to use a modified third-party library in a Rails project?
Some background:
Currently, I'm using the Coderay gem (v 0.9.7) in a Rails project that I'm working on.
I downloaded the source code for that version and applied a patch for a functionality that the ...
0
votes
1answer
92 views
Rails 3: Heroku Herogit Plugin
I don't quite understand how to setup the herogit plugin recommended in the Heroku newsletter (https://github.com/jbarnette/herogit).
When I do $heroku config inside my app I already have the config ...
12
votes
7answers
3k views
Rails 3: Autoscaling workers in Heroku
What's the best way to autoscale workers in Heroku using Rails 3?
20
votes
4answers
9k views
Heroku push rejected, failed to install gems via Bundler
I am struggling to push my code to Heroku. And after searching on Google and Stack Overflow questions, I have not been able to find the solution. Here is What I get when I try "git push heroku master" ...
4
votes
1answer
1k views
Installing Heroku's Taps gem
I'm trying to use Heroku's Taps gem to get my database from their server.
When I run
$heroku db:pull
it says I need to install the Taps gem using the command:
sudo gem install taps
I run ...
