Ruby build utility similar to make with build commands defined in pure Ruby.
3
votes
1answer
38 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
20 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
15 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
26 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
5 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
16 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
11 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
35 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
14 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 ...
2
votes
0answers
35 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
56 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
43 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
16 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
36 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 ...
0
votes
0answers
107 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
59 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
31 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
24 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
11 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
22 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
25 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
57 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
20 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
24 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
19 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
19 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
13 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
56 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
29 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
40 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
40 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
22 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
22 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
30 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
56 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
268 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 ...
0
votes
1answer
25 views
Rake task occasionally fails, undefined error
I check out a fresh commit in a repo that works for everyone else. I run a rake task, which calls this code and throws an undefined error, even though Gem.source_index appears to be defined.
module ...
0
votes
0answers
33 views
Rails 3: unit test works with ruby but not rake
I have the following class in a Rails 3 app:
class AssetAttribute < ActiveRecord::Base
...
def self.ANNOTATION
self.find_by_table_name('annotations')
end
...
end
In another class, I ...
0
votes
0answers
22 views
using rake to run nested rspec modules
I have a project with the following structure
root
---- module1
---- ---- spec
---- module2
---- ---- spec
---- moduleN
---- ---- spec
the sub-modules names are dynamic, new ...
1
vote
0answers
45 views
Using rspec-spies `have_received` matcher
Looking at this blog post, I'm trying to set up my ability to use the matcher Object.should have_received(:action).with(*params) and can't seem to get it. To break things down, I wrote a really really ...
0
votes
1answer
78 views
Ruby filter binary data
I working on search in ms words files using sphinx xmlpipe and rake task for geting formated xml for him. That when i get problems. Basicly what i do is detect file type with MIME::Types.type_for and ...
0
votes
1answer
47 views
rake assets:precompile Connection Refused EC2
So all of a sudden, when I attempt to execute rake assets:precompile, it has stopped working.
$ RAILS_ENV=production rake assets:precompile --trace
$ RAILS_ENV=production rake assets:precompile ...





