Ruby build utility similar to make with build commands defined in pure Ruby.

learn more… | top users | synonyms

0
votes
0answers
12 views

My Ruby install \bin\ruby.exe is not getting found when running rake_task for rspec

I can run rspec directly but with a Rakefile as simple as require 'rspec/core/rake_task' task :default => [:spec] RSpec::Core::RakeTask.new do |task| end I get something like this output ...
0
votes
0answers
9 views

Diffrence in ImgKit behaviour

I want to generate image from template and i'm using next ImgKit code in rake and controller: gem 'imgkit' # in gemfile av = ActionView::Base.new(Rails.root.join('app', 'views')) template = ...
0
votes
0answers
27 views

I can't import SQL to database in Rails

To be organized I want to have a file db/seeds/countries.rb with: ActiveRecord::Base.connection.execute(IO.read("db/sql/countries_iso3166.sql")) And this file db/sql/countries_iso3166.sql has a SQL ...
-1
votes
1answer
30 views

A cron job as rake task for sinatra: best practices? [closed]

how to use gem whenever set eneviement in sinatra? A cron job as rake task for sinatra: best practices? thanks everyone..
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 ...
0
votes
1answer
27 views

uninitialized constant Rails (NameError) in Rails 3.213

When I attempt to visit the rails site I am working or attempt to run the rake I get the following error uninitialized constant Rails (NameError) /path/config/boot.rb:4:in `<top (required)>' ...
3
votes
1answer
49 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 ...
1
vote
1answer
21 views

How to add a Rake task to the default Rake task?

Somehow Rspec and Cucumber are making it into my default rake task (which is fine because I want them there). But I have tried adding additional tasks to the default task and it has no effect. What ...
0
votes
1answer
23 views

Upgrade to Rails 3 and lost ability to run Active Record database migrations

I have a corporate web application that, for various reasons, has Active Record connections to SQL Server as well as Mongoid Documents. There has been resistance to updating to Rails 3 until now (yes, ...
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 ...
0
votes
2answers
36 views

ROR - rake assets:precompile fails with 'CoffeeScript is not defined'

Hi I'm new to Rails and I've just recently setup a production environment on Ubuntu 12.04 with RVM. If it matters, I've installed ruby in multi-user mode (rvm lives in /usr/local/rvm/bin/rvm). I am ...
0
votes
1answer
9 views

Drop table in Rake task in Rails app

I would like to arbitrarily drop all tables in my Rails app via a Rake task. This is for testing/staging purposes, and rolling back migrations doesn't seem appropriate/necessary here. I've got to: ...
1
vote
1answer
27 views

newrelic_rpm: undefined method `before_save' for #<Class:0x00000004a28b28>

Since I've updated newrelic_rpm gem from 3.5.8.72 to 3.6.1.88 on my Heroku app I've noticed newrelic is loading on my rake task giving me strange errors: rake aborted! undefined method `before_save' ...
0
votes
0answers
12 views

Rake creating a rule that uses multitask

If I create a simple rule like rule '.o' => ['.c'] do |t| sh "cc #{t.source} -c -o #{t.name}" end How can I tell Rake that I want the auto-generated tasks to be parallelizable?
0
votes
0answers
11 views

Error Rake while Redmine upgrade [migrated]

I'm upgrading redmine from 1.3 to 2.3 System Evnviorment is Ubuntu, redmine 1.3 installed by package 2.3 is checked-out manually via svn in another folder then in migrating database.. # rake ...
0
votes
0answers
4 views

Rails: uninitialized constant Socialization::ActiveRecordStores

I want to implement follow feature in my app. I was looking for this on google and found github.com/cmer/socialization. I am testing it with demo app given by cmer. I followed these steps: $ cd ...
0
votes
4answers
38 views

Please install mysql2 adapter

I'm new of rails, and i have this big problem. I'm running rails 3.2.9 and Ruby 1.9.3, I did a porting of a rails app from linux to windows, but in windows i'm having a lot of problems with mysql2 ...
1
vote
1answer
21 views

Could not find table by rake routes on production server

When checking routes on production server with rake routes, there is an error of Could not find table 'authentify_engine_configs' which is a table in the database. What could cause this error? The ...
3
votes
1answer
73 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
1answer
59 views

Ruby on rails where is the real issue?

After 2 years I want to working with ruby on rails again, I've tried to start my project again, but it wasn't working, I followed my instructions what I written 2 years ago. I think the application ...
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
1answer
20 views

Temporarily change current directory in Rake

I would like to run multiple commands need to be (or is easier to be) in another directory, then once they're done, return back to the previous working directory. I'm envisioning something similar to ...
0
votes
1answer
40 views

Run rake db:drop without failure if database doesn't exist

This comment says: db:drop can run without failure when db does not exist This is exactly what I need: I need to run db:drop but without throwing an exception or halt my whole process if the ...
0
votes
1answer
38 views

rake db:migrate alter table name

I wanted to change the name of a table I creted with rake db:migrate from financialss to financials. I created a file in my migrate directory called changeme.rb that looks like this. class ...
1
vote
0answers
208 views

How to install json 1.8.0 on windows

Let me explain the context first, I want to create a server for Redmine. While following the steps of this site: ...
0
votes
1answer
14 views

thinking-sphinx3 duplicate feedback

At some point during installation of thinking-sphinx 3 all rake commands relating to thinking-sphinx tasks return two lines of feedback. Example MacBook-Pro-di-jerdvo:saim jerdvo$ rake ts:configure ...
2
votes
4answers
69 views

difference between running rake command with and without bundle exec

What is the major difference between running the rake command with and without bundle exec? I have seen few posts stated that when you run the command with bundle exec then it will be run on scope ...
0
votes
0answers
7 views

Rake VPATH counterpart

In Rakefile we can define rules that is similar with implicit rules in Makefile. So what is the counterpart of VPATH in Rakefile? How to tell Rake where to find the source codes not just in the ...
0
votes
0answers
34 views

Cannot run rake task in cron

I'm using whenever gem and my cron job like this: schedule.rb set :path, "/home/user/www/my_app/current" ... every 60.minutes do rake "ts:rebuild", :output => ...
0
votes
0answers
24 views

Rake is looking for a file that is long gone

My app works and tests correctly locally. When I check it into git and a build is triggered by drone.io (a very cool service btw.) The service basically does: bundle install bundle exec rake ...
0
votes
0answers
25 views

RailsTutorial Chap 6, Rake Aborted

in the railstutorial chap.6 when I try to migrate I get this error: MacBook-Pro-de-Stephane-Cedroni:sample_app stephanecedroni$ bundle exec rake db:migrate == AddIndexToUsersEmail: migrating ...
-1
votes
0answers
21 views

redmine rake db:migrate no implicit conversion of Fixnum into String

rake aborted! no implicit conversion of Fixnum into String Tasks: TOP => db:create (See full trace by running task with --trace)
1
vote
0answers
7 views

Rake::Tasks sources missed

I just start using Rake instead of Make for building my projects, and would like to use some kind of "task template" for automating the building. Consider the following snippets: task :test1 => ...
0
votes
1answer
24 views

rake db:test:prepare or :clone dont create test database

As topic says, if I do a rake db:test:prepare or rake db:test:clone no test.sqlite3 gets created. Also did a db:migrate before Terminal dont give any output. Thats my database.yml sqlite: ...
-1
votes
1answer
28 views

Rake: warning: string literal in condition

I have the following line of code and every time I run any rake command I get the warning. Is there a way to fix this so that it doesn't warn me? not(system %Q{git clone ...
-1
votes
0answers
75 views

Ruby postgres error during rake db:create [closed]

± rake db:create rake aborted! dlopen(/Users/gagelax15/Projects/instant-gratification/vendor/ruby/2.0.0/gems/pg-0.15.1/lib/pg_ext.bundle, 9): Library not loaded: ...
0
votes
0answers
21 views

Issue with Jenkins, rake on new windows 7 machine

We have setup a new Windows 7 machine as Jenkins slave. We use rake to execute the tasks in parallel. Execution with rake has been tested successfully with Jenkins on other windows 7 machines but it ...
0
votes
0answers
31 views

rake assets:precompile - rake aborted - ember framework rails app

Here is the error Unexpected token: name (x) (line: 50526, col: 3, pos: 1424910) Error at new JS_Parse_Error (<eval>:1605:10542) at js_error (<eval>:1605:10867) at croak ...
0
votes
0answers
20 views

Gem or Rake task, etc. to get a high level overview of existing Rails project in Git?

I'm diving into a large existing Ruby on Rails 3.2 project using Git for version control and am looking to get a quick overview of the project, especially what sections of the code are being most ...
0
votes
2answers
21 views

Rake is running latest migration then claiming it hasn't run

I've got a working migration on dev and I'm trying to migrate in test. rake:migrate works up until the latest migration that I added today. I was running db:migrate and it the output was inclusive ...
0
votes
0answers
14 views

How do I keep compiled assets when rake fails so I can debug?

I have a bug that I am trying to track down, but it is proving difficult. When I run: $ bundle exec rake assets:precompile I get the following error: rake aborted! Invalid CSS after "}": expected ...
1
vote
1answer
64 views

rake db:create:all FATAL : password authentication failed

I am trying to follow this railscast tutorial. Now I am in the step, where you create the database with rake db:create:all, but I got this error message : FATAL: password authentication failed for ...
0
votes
1answer
31 views

difference between console email and rake email attachments

I'm generating an invoice pdf via wicket_pdf and this works. This pdf will be used as attachment in an email in a later step of process. # user.rb def send_last_invoice_email!(invoice) ...
0
votes
1answer
46 views

rake db:migrate rake aborted! unable to determine name from existing gemspec

I am trying to rake db:migrate. I cloned a repository and tried to rake db:migrate, but get this error : rake aborted! Unable to determine name from existing gemspec. Use :name => 'gemname' in ...
-5
votes
1answer
41 views

Ruby on rails Routing error — displaying my table [closed]

Routing Error No route matches {:action=>"[#, #, #, #, #, #, #, #, #]", :controller=>"domain"} Try running rake routes for more information on available routes.
0
votes
1answer
24 views

Error when adding foreign key in ActiveRecord Migration

I have the following db/migrate ruby file. When I tried rake db:migrate, it gave error. class CreateEmployers < ActiveRecord::Migration def self.up create_table :employers, ...
0
votes
1answer
24 views

what is the proper syntax for seeding a database with an array?

I am a rails noob and I am trying to seed my database with an array and then a loop to fill assign the relevant code to the relevant variable. However, it isn't working. Please help. ...
0
votes
1answer
35 views

Output what commands a rake task is executing

I just want to better understand how some of the built in rake tasks are operating, in particular rake db:create. Is there a way I can view the sql commands being executed to create the database? I ...
0
votes
1answer
58 views

Rails App RAKE ROUTES does not return anything

I built a rails app that I had working locally. In deploying it to my web host, I changed from sqlite to mysql2 and updated some other gems. The app is up on the web host, but now it doesn't run ...
11
votes
5answers
270 views

How to integrate a standalone python script into a Rails application?

I've got a program that has a small file structure going on and is then ran using python do_work.py foo bar I want my rails users to press a button and have this happen for them, with the result ...

1 2 3 4 5 46