Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can't make taps gem 0.3.23 working with heroku gem 2.1.4

Anyone have an fix for this problem?

It happens on push and pull.

~ heroku db:push
Taps Load Error: no such file to load -- taps/operation
You may need to install or update the taps gem to use db commands.
On most systems this will be:

sudo gem install taps
~ sudo gem list

*** LOCAL GEMS ***

bundler (1.0.13)
mime-types (1.16)
rack (1.2.2)
rake (0.9.0)
rest-client (1.6.1)
sequel (3.20.0)
sinatra (1.0)
sqlite3 (1.3.3)
sqlite3-ruby (1.3.3)
taps (0.3.23)
~
~ heroku version
heroku-gem/2.1.4
like image 996
lajlev Avatar asked May 22 '11 14:05

lajlev


1 Answers

I had the same issue. I solved the problem by adding taps to my Gemfile and using bundle exec heroku db:push

like image 89
phatmann Avatar answered Sep 28 '22 17:09

phatmann