Tagged Questions
3
votes
1answer
44 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
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?
2
votes
0answers
38 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
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 ...
1
vote
0answers
148 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: ...
2
votes
4answers
62 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 ...
-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
68 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
1answer
41 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
57 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
35 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
1answer
79 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
2answers
33 views
Ruby ExtensionTask: How to make it dependent of another rake task?
I am writing a native C extension in Ruby 2.0 with Rake::ExtensionTask.new('NAME'). I need to make this dependent on another task that I define
task :myTask do |t|
....
end
My question is, how can ...
0
votes
0answers
16 views
Thor test command not listed using Rake::TestTask and Thor::RakeCompat
I can't seem to get Thor::RakeCompat to work. My expectation is that I can add in rake tasks like the Rake::TestTask and it should show up as a Thor command.
This is my Thorfile. I have added a task ...
0
votes
0answers
38 views
I need to run a rake file from or after my controller file has finished in rails
I have a controller class in ruby on rails and it takes the input from a user off of a form webpage. I need my rake file to run after this file is finished, either at the end of the controller file I ...
0
votes
4answers
1k 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 ...
3
votes
2answers
244 views
bundle exec rake assets:precompile
I have been attempting to get RoR working with Passenger and Nginx. Man has it been an adventure. I have finally gotten the server running and it is hosting a test site, well sort of. I am running ...
1
vote
3answers
132 views
Running rails 3.2.13 but have not installed it?
Whenever I run:
rails -v
I get the result
rails 3.2.13
But my gemfile is as follows:
gem 'rails', '~> 3.2.12'
gem 'rake' , '~> 10.0.4'
My gemfile.lock also has 3.2.12, but for some ...
0
votes
1answer
35 views
How do I require a ruby file from child directory
I have the following structure
tests
specific tests
first_test.rb
more tests
second_test.rb
test_helper.rb
Now I am trying to require test_helper in both first_test and second_test. ...
1
vote
1answer
35 views
How to skip some test folder when running rake test
I have the following configuration for running tests of a gem:
require 'rake/testtask'
Rake::TestTask.new(:test) do |t|
t.libs << 'lib'
t.libs << 'test'
t.pattern = ...
1
vote
0answers
129 views
Rake file with Jenkins (Cucumber, watir-webdriver)
I've started with watir and cucumber a while ago and have been trying to run my project with Jenkins. I have a watir Project (watir,cucumber) in C:\project_name. I have rake file in the project also ...
0
votes
1answer
22 views
Rake - Adding to default task
I am using a third party gem that gives me the ability to execute some tests using the rake command:
rake jasminerice:run
Is it possible to include the task as part of default rake task? (i.e. when ...
1
vote
1answer
83 views
rake aborted! Operation not permitted - Carrierwave Delete tmp files that failed validation
I am using Carrierwave, s3 and fog to upload videos. I added in a file_size_validator file so that videos can't be larger than 5mb.
My understanding of how Carrierwave works (please advise if ...
0
votes
0answers
38 views
“Get Available Generators List” warning in RubyMine. How do I get rid of this?
I am using RubyMine 5.4.1 and was creating a new rails 3.2.9 application using ruby 1.9.3-p0, and received the below warning. I believe bundler was running install at the time. The warning header ...
1
vote
2answers
80 views
Unable to over-write devise routes
I am using devise and I want to customize its urls:
users/sign_in --> account/login
users/sign_up --> account/register
users/edit --> account/profile
...
Now my routes.rb looks like ...
1
vote
0answers
19 views
How can I get a full backtrace out of assets precompile?
I have an error when compiling my assets, but rake or sprockets or something in the stack is swallowing it
** Execute assets:precompile:primary
uninitialized constant ...
0
votes
1answer
22 views
the function of this command : exec rake assets:precompile
bundle exec rake assets:precompile
Anyone knows what is this command used for in ruby on rails?
0
votes
1answer
66 views
Merge point data columns Latitude and Longitude into one latlon
Here is my current rake task to import from CSV could I rewrite it to import and delete the two former columns / concatenate the data into one latlon column using space as a delimiter?
require 'csv'
...
3
votes
1answer
474 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 ...
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, ...
0
votes
1answer
42 views
Does model_name.new() in ActiveRecord create only new records or update existing as well
I have a model that I use with active record in a ruby script below. Things like level_type, name, parent.id, and pipcode get assigned to the attributes of the model for entry into the levels table. ...
1
vote
2answers
74 views
Need to get usernames and passwords from database.yml file and pass into method in rake task
Currently, I am using the pg gem in my rails rake task which is perfect for what I want to do. I create a variable pg_conn and pass in the connection details to the PGconn.connect method. I just don't ...
1
vote
1answer
74 views
ruby rake guard task
Ruby noob - I need to have guard running in my rake tasks but I can't find a way to have it run in the background. It needs to run 2nd last, therefore having the guard > shell waiting for commands ...
1
vote
1answer
49 views
What RSpec hook shall be used to perform clean up task after all tests are finished?
I have this situation in my project - I have a Singleton class representing browser used during the test:
class Browser
include Singleton
def initialize
@browser = Watir::Browser.new :ff
...
2
votes
0answers
61 views
Rake migrate Error - database doesn't exist
I have a padrino project that uses data mapper and postgres. When I run padrino rake dm:create it says that the database is created. However, when I run padrino rake dm:auto:migrate, I get the error - ...
7
votes
0answers
182 views
Rake dependency not executing but invoke works
I've been trying to run rake db:test:clone_structure, but it keeps failing to rebuild the database. I finally looked at the task itself:
task :clone_structure => [ "db:structure:dump", ...
1
vote
0answers
56 views
How to run all ruby files in specified directory with rake
I have installed, Ruby 1.8.7, ci_reporter 1.8.4, test unit 2.5.4, rake 10.0.3.
My testA.rb, testB.rb ... testZ.rb :
require 'includeA.rb'
require 'includeB.rb'
require 'includeC.rb'
require ...
-3
votes
1answer
139 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 ...
0
votes
0answers
76 views
rake aborted! undefined method `isthreadsafe' for class `Module' (pg gem)
Still pretty new to rails and postgresql. Anytime I run a rake command I get the following trace:
rake aborted!
undefined method `isthreadsafe' for class `Module'
...
0
votes
1answer
38 views
rake task return on calling task
I would like to return from a rake task in the calling task.
Does it possible?
Something like in this example, i would like to be able to call task one and one independantly but also one and two ...
1
vote
1answer
51 views
How to kill fastcgi-mono-server4.exe from a rake file?
I'm working on automated deployment using Rake of a mono asp.net website to ubuntu server with nginx.
As far as I've discovered fastcgi-mono-server4.exe can't be stopped gracefully and must be ...
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 ...



