0
votes
0answers
11 views

Seedbank, nothing happens when doing rake db:seed anymore

I just installed seedbank gem : https://github.com/james2m/seedbank which is exactly what I was looking for! (I'm actually surprised this kind of feature is not in the core Rails, but anyway, thanks ...
3
votes
1answer
74 views

Rake build is operating in an incorrect context

I have a gem that exists simply to collect several engines together for ease of implementation, as well as to provide a few utility methods to all of the included engines. One such utility method is a ...
0
votes
0answers
56 views

rails g scaffold! uninitialized constant in development environment

I got my ror development environment setup on ubuntu 10.04, using postgresql database. I was doing a test to generate a scaffold when I got: <module:AppName>: uninitialized constant ...
0
votes
0answers
72 views

Error:rake aborted when rake db:migrate

I am very new to ruby.When i run rake db:migrate i get this.I use ubuntu 12.04,ruby-1.8.7,rails-2.3.18,gem 1.5.3 Please install RDoc 2.4.2+ to generate documentation. rake aborted! Is there ...
1
vote
4answers
2k views

Could not find rake-10.0.4 in any of the sources (Bundler::GemNotFound)

I have been trying to run my ruby application on the server recently and I keep coming across this error: Could not find rake-10.0.4 in any of the sources (Bundler::GemNotFound) I am running rails ...
1
vote
2answers
78 views

How to publish my ruby gem to my own repository?

I have written a ruby gem and I would like to have a rake task for publishing the gem to my own GemInABox repository : http://my-gem-repo.com. What is the simplest way of achieving this goal? Also, ...
-3
votes
1answer
146 views

rake says “cannot load such file — spec”

I am using: Ubuntu 12.10 Rails 3.2.12 ruby 1.9.3p194 (2012-04-20 revision 35410) [x86_64-linux] rake rake-10.0.4 When I run rake db:create I get this error message: rake aborted! cannot load such ...
2
votes
0answers
1k views

ROR can't fine rake 10.0.4 despite being in vendor/cache

So this is annoying. When I put bundle exec rake db:migrate into terminal, the following error occurs: Could not find rake-10.0.4 in any of the sources Run `bundle install` to install missing ...
1
vote
2answers
49 views

Rails 3 dynamic time based jobs

In my Rails 3 application, users are given a small package that they will only be able to hold for a short amount of time e.g 20 mins. The package's ownership is stored in a table with a users ...
2
votes
3answers
947 views

Why is my rake call causing an 'undefined method `source_index`' error?

I am trying to run bundle exec rake db:migrate then encountered the following error. bundle exec rake db:migrate --trace ** Invoke db:migrate (first_time) ** Invoke environment (first_time) ** ...
0
votes
1answer
193 views

Using Rake gem, no rakefile found

I'm trying to build a custom version of Zepto.js with the optional data module. I'm a bit new to using terminal commands, so when things don't work I'm generally unsure what to do! I'm on a Mac and ...
0
votes
0answers
78 views

Finding Rake-10.0.3

Could not find rake-10.0.3 in any of the sources /home/deployer/.rbenv/versions/1.9.3-p194/lib/ruby/gems/1.9.1/gems/bundler-1.1.5/lib/bundler/spec_set.rb:90:in block in materialize' ...
0
votes
0answers
108 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
1answer
186 views

Installation of redmine with bundler requires root password

I'm trying to install redmine on my CentOS 6.3 server. I created an user to run the program, then I tried to install it with the command bundle install --without development test postgresql sqlite ...
0
votes
1answer
323 views

RoR rake bundle dependencies

Platform: windows 7, running on JRuby 1.6.8. C:\project> rake db:migrate rake aborted! You have already activated rake 10.0.3, but your Gemfile requires rake 0.9.2.2. Using bundle exec may solve ...
2
votes
2answers
2k views

GitLab sidekiq failing test

I am following the instructions here: https://github.com/gitlabhq/gitlabhq/blob/4-1-stable/doc/install/databases.md When I try to run the tests: sudo -u gitlab -H bundle exec rake gitlab:env:info ...
1
vote
0answers
53 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
271 views

rake aborted! no such file to load — rush (but rush gem is installed)

Below is my stack trace for rake gems:install RAILS_ENV="production" --trace WARNING: 'require 'rake/rdoctask'' is deprecated. Please use 'require 'rdoc/task' (in RDoc 2.4.2+)' instead. at ...
0
votes
0answers
91 views

Include Rake tasks from a gem into my engine

I'm creating a rails engine, which I have written some rake tasks in. My rake tasks call rake tasks in a 3rd-party gem, which I've included as a dependency in my gemspec. When I try to run my rake ...
1
vote
1answer
632 views

I'm using Rails 2.3.14 and Rake 10.0.2 is not running, how can I fix it?

I am using Rails 2.3.14 and Ruby 1.8.7 (used RVM to install them) but my default set is Rails 3.2 and Ruby 1.9.3. I created an empty gemset but when I list the gems available I get this: gem list ...
0
votes
2answers
76 views

How to compile Ruby Extension

I have a simple extension in ext/Q/flagvalue.c My ext/Q/extconfig.rb looks like this: require 'mkmf' create_makefile('Q/flagvalue') The task in Rakefile is set-up just so: ...
1
vote
2answers
384 views

Could not find rake-0.9.2.2 in any of the sources (Bundler::GemNotFound) using windwos 7 (no rvm)

people, I'm new to ROR, not bloody new (anymore) but unexperienced with moving apps to production. To understand how the move-to-production-flow works I created a very simple rails project. Here are ...
0
votes
0answers
56 views

What is the best way to share capistrano and rake tasks?

I have a set of tasks I reuse in all my {rake,cap}-based project and I would like to put them in a common library hosted in its own git repository. I'm looking for the best way to organize my code ...
0
votes
1answer
304 views

Octopress Posix Error

I'm trying to generate a blog with octopress. When I do rake deploy I get this error: Could not find posix-spawn-0.3.6 in any of the sources Run `bundle install` to install missing gems. bundle ...
-1
votes
2answers
67 views

Rake generate - not working

I am installing redmine1.4 and following these step . I am in 5 step of installation process When I am trying to do rake generate_session_store its saying to install rdoc Please let me know do I ...
2
votes
1answer
179 views

Why can't the mime-types gem (unpacked in vendor/gems) be found?

I'm asking this with the intention of also supplying the answer, since I had a lot of trouble figuring out what was going wrong, and Google wasn't much help - however, since this is StackOverflow, I'm ...
3
votes
2answers
95 views

How should I be trying out my gem during development?

Let's say I have a gem called foo, with a file structure like so: foo.gemspec test_foo.rb lib/foo.rb lib/foo/file1.rb lib/foo/file2.rb The file test_foo.rb contains some code which I use to try out ...
2
votes
4answers
767 views

Rake aborted ! Issue installing Octopress

I m trying to install the Octopress on my windows. As per their Tutorial on their website. But when I type the command rake install It gives me the following error C:\Documents and ...
0
votes
1answer
70 views

Including gems in a rake file

I'm trying to write a rakefile outside of a rails project. I've created a new directory, added a rakefile and set a basic default task. It works. I want to use the premailer gem so in my default ...
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, ...
1
vote
1answer
185 views

apn_sender gem daemon not running

Im using apn_sender for rails 3 and i have been able to install the gem and get it working just fine by using rake apn:sender I have tried to get it started in production mode on a ubuntu box by ...
2
votes
1answer
436 views

Can't run the command — rake:install

When I run the command rake:install, I get this error message: WARNING: 'require 'rake/rdoctask'' is deprecated. Please use 'require 'rdoc/task' (in RDoc 2.4.2+)' instead. at ...
0
votes
1answer
675 views

Rake aborted! Uninitialized constant Rake::DSL

While this issue discussed here and for Rake 0.9.0 I am using rake 0.9.2.2 and still facing the issue. By going to uninstall it I get lots of dependencies messages like: childprocess-0.3.1 depends ...
0
votes
2answers
222 views

how to deploy a ruby app?

I'm a Ruby beginner who get a web app in Ruby which I want to start. I have installed Ruby Enterprise, Rails (and Unicorn, nginx). I have in the web app root folder: Capfile, Gemfile, Gemfile.lock, ...
0
votes
1answer
102 views

Ruby 1.9.1-p243 - Building a gem using a gemspec that gets updated in run-time

I'm building a rake task that pulls down a repo, runs some specs and builds a gem if they all pass. The gemspec file comes with the original checkout of the repo, and I'd like to bump the version ...
0
votes
1answer
97 views

While installing rake 0.8.7 for Rails on a new computer, I get “unable to convert ”\xFC“ from ASCII-8BIT to UTF-8”

What does this mean? Is my system set for UTF when it should be ASCII or something?
4
votes
1answer
255 views

I don't want “rake install” to publish to Rubygems

I'm running: rake install on a project built with bundle gem <project_name> I've published the gem to Rubygems. However, sometimes I'm on a VPN and I don't want rake install to try to also ...
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 ...
0
votes
2answers
129 views

Feasibility of vendoring binary executables within a gem?

I've written a sprockets processor for losslessly compressing jpgs and pngs, you check it out it here: https://github.com/botandrose/sprockets-image_compressor However, I can't use this gem on ...
0
votes
1answer
1k views

Rails app rake db:migrate aborted - syntax error

I keep getting the following error when running rake db:migrate: rake aborted! syntax error on line 18, col 9: ` adapter: mysql' Tasks: TOP => db:migrate => environment (See full trace by ...
0
votes
2answers
1k views

Ruby on Rails : Rake db:create -> Could not find gem

I begin with ruby on rails and I'm trying to create my first blog. So i ran: rails new blog -database=mysql There was an error: Gem::InstallError: The 'json' native gem requires installed build ...
1
vote
2answers
261 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
1answer
128 views

specifying rake tasks to be run during gem install

how do I specify that a rake task should be executed from within the gem installation process. For example, if my Rakefile contains spec = Gem::Specification.new do |s| s.name = 'my_gem' # all ...
1
vote
1answer
158 views

What is the state of the art/best practice for implementing ruby rake test for gems?

I would like some guidance as to the state of the art in writing ruby tests and invoking them from rake for a gem. I have been reading on the internets and reviewing code but have seen many ways to do ...
0
votes
2answers
183 views

rake error in ubuntu

I was trying to do the following command but it shows the following error: $ sudo rake dtach:install /home/uday/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/site_ruby/1.9.1/ rubygems.rb:314:in `bin_path': ...
1
vote
0answers
415 views

Uninitialized Constant Mysql2 - Windows

Here's my system specs: Windows 7 Ultimate 32bit Ruby 1.9.2 Rails 3.1 MySQL 5.5 I have created a new rails app using compass and when I do: rake db:create --trace I get the following results: ** ...
0
votes
2answers
433 views

Resque with Redis To Go can't work as expectation

I need to use Resque to enqueue my jobs on Heroku. As it's my first time to use it, I follow the instruction on this site:Resque with Redis To Go. When I run the command: $ rake resque:work QUEUE=* ...
1
vote
0answers
160 views

Compiling C extensions in dep_selector Ruby gem with Rake on FreeBSD

I am trying to install Ruby gem: dep_gecode. It compiles some C extensions, but the compilation fails because the cpp compiler isn't run with properly set include folders. When I run rake install it ...
1
vote
1answer
2k views

The specified module could not be found (MySQL)

what to do for following error on windows: C:\work\exchange2>gem list *** LOCAL GEMS *** actionmailer (2.3.11) actionpack (2.3.11) activerecord (2.3.11) activeresource (2.3.11) activesupport ...
5
votes
3answers
5k views

Deactivate a Gem - “you have already activated rake 0.9.3.beta.1, but my Gemfile requires rake 0.9.2”

Please help! I'm new to rails. I'm tring to run a migration but I keep getting the error message that rake aborted! undefined method 'prerequisite' for nil:NilClass It seems that somehow I activated ...

1 2