3
votes
1answer
35 views

Cannot use locally installed gems

I am trying to run a Ruby on Rails website on a shared hosting. When I get to rake db:create (or rake at all) following this tutorial http://guides.rubyonrails.org/v2.3.8/getting_started.html I get ...
0
votes
1answer
9 views

“file too short” on bundle install

I'm getting occasional "file too short" messages when running bundle exec rake: rake aborted! /var/lib/jenkins/.rvm/gems/ruby-1.9.3-p327/bundler/gems/amatch-0f95f4ce269f/lib/amatch_ext.so: file ...
3
votes
1answer
440 views

rake tasks fail with invalid byte sequence in US-ASCII

After upgrading to ruby 1.9.3 one of my apps is working fine but the second one I am trying to convert fails at the "assets:precompile" stage when I try to deploy with capistrano. Here is the ...
6
votes
1answer
2k views

NoMethodError: private method `open' called for Gem::Package:Class An error occurred while installing rake (10.0.3), and Bundler cannot continue

I am trying to work on a ruby on rails project I synced from github. Even though rake-10.0.3 gets installed successfully, 'bundle install' fails. I am new to rails and not sure how to proceed on ...
0
votes
1answer
35 views

Bundler::RubyVersionMismatch when shelling out to a command that invokes Ruby

A Bundler::RubyVersionMismatch error is emitted (from Bundler-managed code) when shelling out to a command which itself uses another version of Ruby. This happens when a Ruby version is specified in ...
-2
votes
1answer
93 views

errors with rake db:create command in ruby on rails

when I have typed command rake db:create, following errors were displayed on terminal rake aborted! cannot load such file -- active_support/core_ext/class/inheritable_attributes ...
0
votes
0answers
18 views

Getting error about 'man:clean' when building bundler

I've tried git cloning and then building the bundler gem manually, but it says $ rake1.9.1 build --trace ** Invoke build (first_time) rake aborted! Don't know how to build task 'man:clean' ...
0
votes
0answers
107 views

Ruby 1.8.7, bundler, :path, and '/usr/lib/ruby/gems/1.8/specifications/bin/rake'

Ruby 1.8.7, Bundler version 1.0.21. I'm trying to construct my Gemfile so that my Rails app running under mod_passenger will find some of its gems bundled with the app (like verionomy), and others ...
0
votes
0answers
50 views

Bundler's rake release with geminabox?

Is there a way to configure bundler so that when I do rake release it would submit the gem to my own gem server (a gem in a box instance) rather than to rubygems? Ideally this configuration would be ...
1
vote
0answers
52 views

how do I require 'rake' to be able to use FileList in .gemspec?

I am using :path => '/path/to/gem' functionality of bundler to build and use a modified upstream gem, which uses Rake::FileList in its .gemspec. At this stage, the bundle I'm installing is not yet ...
0
votes
0answers
105 views

What do the following errors relating to Capistrano mean from Rake and Generator in RubyMine?

I am new to ruby development and I am in the process of learning. I recently added the following gem's to my gem file for Capistrano but when Bundler runs I get the errors below. Get available ...
2
votes
3answers
4k views

Could not find rake 10.0.3 in any of the sources, when working with Whenever and Capistrano

I'm trying to use the gem Whenever with Capistrano over my Rails app on 3.2.8, working with RVM and a gemset for that Rails version. I'm getting the following error: Could not find rake-10.0.3 in any ...
0
votes
1answer
232 views

Building ember.js fails on OS X 10.8.2

On a Mac OS X system (10.8.2), with these tools installed: Ruby, 1.9.3p362 (2012-12-25 revision 38607) [x86_64-darwin12.2.0], via brew Bundler, 1.2.3 via gem install bundler rake, 10.0.3 via gem ...
1
vote
1answer
77 views

How to make crontab use the correct rake and refer to gems in vendor/bundle

I would like my cron job, which calls a rake task, to use the gems installed in either [rails_app]/vendor/bundle or [rails_app]/vendor/cache. Currently, my system gems are out-of-date, but I cannot ...
1
vote
1answer
66 views

Advice on architecting my first real Ruby project [closed]

(Coming from java/perl/php, i fell in love with ruby) I'm trying to write the following application while discovering the ruby way of designing an application. (Note: I'm not looking for code). I'm ...
0
votes
0answers
130 views

cron job fails with “is not checked out. Please run `bundle install` (Bundler::GitError)”

I seem to have a similar problem as this post, where Bundler complains of a gem not being checked out. However, mine shows an error when running a rake task using a cron job. (Otherwise, the site ...
0
votes
1answer
273 views

Ruby on Rails bundle exec rake assets:precompile error - no such file to load — gelf

When I run RAILS_ENV=production bundle exec rake assets:precompile I get: Rake aborted! no such file to load -- gelf Tasks: TOP => environment (See full trace by running task with --trace) rake ...
0
votes
1answer
353 views

Running rake db:migrate gives “Could not find coffee-script-source-1.3.3 in any of the sources” error

I just made a fresh Rails app (Rails v3.2.8) and tried running rake db:migrate with one migration, but I always get this error: Could not find coffee-script-source-1.3.3 in any of the sources Run ...
0
votes
1answer
39 views

Missing gems & db:migrate Issues

I'm trying to work through this tutorial by Andrew Perkins. When I get to rake db:migrate I get this error and similar subsequent errors every time I install the missing gems. Could not find ...
0
votes
1answer
260 views

Why does Timecop.freeze only work when I run my full spec suite?

I've got a large rails test suite and I'm using Timecop just once. it "should not include votes from today" do assert_equal 8, @answer.todays_score end it "should include today's votes tomorrow" ...
0
votes
1answer
279 views

Bundle install in subdirectory

I want to setup a rake task that runs 'bundle install' in a subdirectory of the rake file. sh "bundle install -somesortofoption #{DIRECTORY}" I get an error if I do: sh "cd #{DIRECTORY} && ...
0
votes
2answers
272 views

Rails: Bad Interpreter

I've recently faced this problem in rails. Almost every code I've entered return an error, saying there's a bad interpreter. The following are some of the errors I've been facing lately: bundle ...
4
votes
2answers
3k views

Could not find rake-0.9.2.2 in any of the sources

This is an odd one. I'm getting this error when I run rake to do tests but not when I migrate. I'm running RVM, the shell dump below should give any information you need. Any help would be greatly ...
1
vote
2answers
112 views

Why is Ruby bundler (w/ whiskey_disk and RVM) complaining that an installed Gem is not >=0?

This is my error message: Running rake deploy:post_setup... rake aborted! You have requested: nokogiri >= 0 The bundle currently has nokogiri locked at 1.5.5. Try running `bundle update ...
0
votes
1answer
154 views

Ruby on Rails: rb_class_superclass not located in msvcrt-ruby191.dll (ruby-prof error?)

So, long story short, I had o format and reinstall my OS hence all my dev utilities. git env sorted. DevKit was fine. Sphinx/mysql fine. Bundle installed perfectly. Everything is gravy until I go to ...
0
votes
1answer
150 views

What is the path to load a rake task for a new gem

I try to create a new rubygem with bundler and intent to load the rake task from rubygem folder ~/work/bezier/lib/task/. But the pwd seems to be in the /Users/wizztjh/work/bezier_server, what is the ...
0
votes
1answer
102 views

Rake running wrong version with Rails vim plugin

I am using vim on Fedora with the Tim Pope Rail plugin - I want to run tests with :Rake and I get an error with rake 0.9.3.beta.1 I know that bundle exec rake will cure this but I want to run my ...
1
vote
1answer
129 views

Calling an external rake task from Rails: dependency issues

I am currently developing a standalone ruby application alongside a Rails application that works as its frontend. I am managing the dependencies of the Ruby app with Bundler, so there are two ...
1
vote
1answer
91 views

Everything crashes when I use “bundle exec”

I'm making a gem, and I added a Gemfile to my repository. When I run $ rake test Everything goes fine. The test command I wrote myself, and it just executes all the tests in my test folder. So, ...
0
votes
1answer
293 views

Why is bundler not able to install rake even though rake appears to be present?

I'm having some trouble with rbenv and bundler. When I bundle install on my app, I get an error saying that an error occurred while installing Rake. I'm thinking this has something to do with rbenv ...
2
votes
1answer
46 views

Another place that project tool configuration files can be placed other than root?

When using multiple tools like Guard, Rake, and Bundler which store their configuration files in the projects root, the root folder starts to become cluttered with development debris like: Guardfile ...
0
votes
3answers
739 views

Run Chef's Knife from Rake

I have a rails web application that allows users to run automated tasks with multiple servers. I wired up a rake task to run every 5 minutes (whenever gem) and check for jobs that need to be executed ...
2
votes
1answer
825 views

Bundle exec rake db:migrate does not work (and neither does rake db:migrate), Ubuntu

I am running a Rails 3 app on Ubuntu (EC2), I have rake locked at version 0.8.7 and when I do rake db:migrate I get the usual: You have already activated rake 0.9.2.2, but your Gemfile requires ...
3
votes
2answers
4k views

Rails mysql2 error: “rake aborted! Please install the mysql2 adapter…”

I am running this on a Windows 7 (64 bit) machine. I installed RoR using the one-click installer. I've updated my database.yml file to use mysql2: development: adapter: mysql2 encoding: utf8 ...
2
votes
2answers
2k views

rake aborted! Bundler could not find compatible versions for gem “bundler”

Bundler 1.1.1 doesn't seem to be compatible with rake. I have no idea what is going on, I'm trying to install webistrano and when I ran the following command RAILS_ENV=production rake db:migrate ...
0
votes
3answers
1k views

After installing rbenv and changing Ruby version, Rake no longer runs

After installing Rbenv and Ruby 1.9.2 and 1.8.7, and setting the current project to use 1.9.2 (it previously used 1.8.7), Rake will no longer run. Running rake routes gives the messages: Could not ...
1
vote
0answers
298 views

Bundler 1.0.21 & Ruby 1.9.3 — “$ bundle config” |-> returns “invalid byte sequence in UTF-8 (ArgumentError)”

I'm quite new at all of this stuff, so I may have made some simple (and/or horribly disastrous) mistakes. In what follows, I describe the web of issues I'm confronting, but I get the impression that ...
0
votes
2answers
938 views

rails 3 rake routes not working, no routes shown as output

When I execute bundle exec rake routes --trace the output is: NOTE: Gem.source_index is deprecated, use Specification. It will be removed on or after 2011-11-01. Gem.source_index called from ...
0
votes
2answers
1k views

Gemfile.lock has different version of Rake in deployment environment

In short, the error message looks like following: $ bundle install rake aborted! You have already activated rake 0.9.2.2, but your Gemfile requires rake 0.9.2. Using bundle exec may solve this. And ...
3
votes
2answers
1k views

Rack error on server with each cap:deploy

Each time i run on my local machine cap:deploy i get next error when i open my web-page: Ruby (Rack) application could not be started Error message: git://github.com/ctran/annotate_models.git (at ...
1
vote
1answer
757 views

Only load rake rasks in a certain environment?

Right now, I'm using bundler to manage my gems. Bundler loads different gems for different environments. I have some rake tasks that use testing gems (rspec), but these cause problems in production ...
0
votes
1answer
189 views

Load files from Gem in Rake task

Using Bundler, Rails 3.1.0 and RVM-gemsets I want to load files from a defined Gem. Gem.datadir(gem_name) seems to be the right candidate but does not seem to work with RVM-gemsets. Addition: In my ...
20
votes
1answer
2k views

Use bundle exec rake or just rake?

I learned Rails using just the rake command like rake db:migrate; however, I just read that use should be using the bundle exec rake ... instead of just plain rake and now I am confused about which to ...
1
vote
2answers
257 views

Execute tests for another app from a rake file

I'm trying to execute cucumber tests for a project within a rake file in another project. Currently I am trying this: system "cd /path/to/project;rvm use --create 1.9.2-p290@test; cucumber ...
1
vote
3answers
6k views

Could not find rake-0.9.2 in any of the sources

I have no idea why I am getting this? $ which rake /Users/kamilski81/.rvm/gems/ruby-1.9.2-p290@depot/bin/rake [~/Sites/work/depot, kamilski81@mac] $ ...
2
votes
1answer
1k views

Rake error fixed by bundle exec, but deployment not working

I pushed an update to my Rails app production server, and in the update there was a new database migration. I ran rake db:migrate and got the common error seen here. I ran the rake again in bundle ...
2
votes
2answers
3k views

Don't know how to build rake db:migrate on Ubuntu natty?

I'm not sure how to deploy an application using Capistrano but I figured I'd try to at least load all the files I need on my deployment server, so I did a git pull on Github and installed all the ...
2
votes
3answers
1k views

can't activate mysql2 (~> 0.3.6), already activated mysql2-0.3.2 in Rails 3.1

I'm just trying to get the most basic of basic shell of a rails app running under 3.1, and I'm getting this weird error when I run bundle exec rake db:migrate- Please install the mysql2 adapter: `gem ...
5
votes
1answer
3k views

how do you activate or set the default rake?

I have seen many You have already activated rake 0.9.x, but your Gemfile requires rake 0.x.x errors. Of course, they can be solved (temporarily or always) by some methods like the following. ...
54
votes
4answers
14k views

What does bundle exec rake mean?

What does bundle exec rake db:migrate mean? Or just bundle exec rake <command> in general? I understand that bundle takes care of maintaining things in the Gemfile. I know what the word "exec" ...

1 2