Rakefiles are Rake's version of Makefiles.
0
votes
1answer
10 views
How to create issue in BitNami Redmine Stack using Gmail?
I spent a lot of time to find out a really working solution for this problem. I read all the documents, blogs, forums and etc about this, but nothing worked. Let's go straightly to the question.
I'm ...
1
vote
1answer
31 views
How to break up rakefile?
I'm trying to add some rake tasks to an Octopress Rakefile, and I'd like to put the tasks in another child rakefile, but when I import the child rakefiles, they can't access the constants at the top ...
0
votes
1answer
15 views
how to tell warbler to not read local rakefile
Is there a way to run warble war in such a way that it will not read the local Rakefile? In other words, I want to be able to have a borken Rakefile, but have it not affect warbler at all.
0
votes
1answer
75 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 ...
2
votes
1answer
56 views
Remove sensitive information from a Rakefile
What are the recommended procedures for removing sensitive information from a Rakefile?
For example, my project's Rakefile looks like:
# -*- coding: utf-8 -*-
$:.unshift("/Library/RubyMotion/lib")
...
0
votes
0answers
19 views
Namespaces in rakefiles
I was wondering, what happens when in rakefile you have the following line:
task : myTask => ["name1:name2:name3"]
Will it do all the tasks in namespaces name1, name2, and name3?
Thank you
0
votes
1answer
46 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 ...
0
votes
0answers
106 views
Rakefile not rebuilding dependency files when 'import'ed, though 'rule' is defined for them
I have written a regular Rakefile for compiling a C program. To solve the header dependency promblem, I imported dependency files corresponding to each C source file and defined a rule for rebuilding ...
0
votes
0answers
124 views
Deploying Jekyll with a rakefile & rsync
I'm running into trouble trying to use a rakefile to deploy a Jekyll site. Following the instructions here, I've set up ssh keys and can get into my server without entering a password, so that works. ...
0
votes
1answer
20 views
Rake - capture :task_name as an option?
I am watching a Peepcode screencast Play by Play: Jim Weirich.
He executes a rake task that appears to pass the final task name as an option.
See how the task :demo creates a "demo" folder. How ...
0
votes
1answer
77 views
How to include loadpath/dependency in rakefile
I have installed, Ruby 1.8.7, ci_reporter 1.8.4, test unit 2.5.4, rake 10.0.3.
My testA.rb :
require 'includeA.rb'
require 'includeB.rb'
require 'includeC.rb'
require 'includeD.rb'
Begin of the ...
1
vote
0answers
33 views
Rakefile autoconf equivalent
I'm planning on using rake to replace my existing Makefile setup; while building everything is fine, is there an equivalent of autoconf's ./configure script(s)?
I don't want to start rolling my own ...
0
votes
2answers
21 views
Is it possible to use shorthand for multiple tasks in same namespace in task requirements?
Here is an example Rakefile
namespace :install do
task :baz do
...
end
task :quux do
...
end
end
task :foo => ['bar:baz','bar:quux'] do
...
end
Is it possible to ...
1
vote
1answer
199 views
Mysql2::Error: The used command is not allowed with this MySQL version: LOAD DATA LOCAL INFILE
This is my full script.
Am trying to make a rake task which collects data from the files in the directory and loads them in the mysql.
I fixed the local-infile = 1, Nothing works. It just gives me ...
0
votes
1answer
865 views
Setting/getting Ruby environment variables
I have a Rakefile which has tasks for deploying or building an application. This Rakefile is used in both production and development.
I would like the build task to know what the environment is. Can ...
0
votes
1answer
241 views
Can I pass an argument to rake db:seed?
Part of my seeds.rb loads a lot of data into the database. I want to be able to selectively load this data. E.g.
$ rake db:seed
or
$rake db:seed[0]
would just load the necessary data to run the ...
0
votes
1answer
103 views
rake task: Undefined method for Class
I have added a new task to my RakeFile (I know the new way of doing it is to add your task to lib/tasks, but other tasks are in the RakeFile and I dont wish to refactor just yet.) The task that I ...
0
votes
0answers
152 views
rake aborted! no such file to load — sqlite3 rake aborted! invalid meta-code syntax:
This is my 1st RoR application
Ruby version = 1.9.3p125
Rails version = 3.2.9
Gem version = 1.8.16
I'm trying to create a simple application getting values from text boxes and radio ...
1
vote
3answers
1k views
Octopress errors - rake preview, watch or generate
I followed all instructions in Octopress Documentation:
sddhrthrt@thinkpad:~/octopress$ rake generate
## Generating Site with Jekyll
directory source/stylesheets/
create ...
0
votes
1answer
130 views
Load rake files and run tasks from other files
Currently I'm trying split up my rake files to organize them better. For this, I've added a rake folder to my assets dir, that holds one rake file for each group of tasks.
As I'm coming from PHP, ...
0
votes
1answer
69 views
rake db:create issue
I have just started working on one project, and I have configured my system according to the requirement of the project i.e.
rails v => 2.3.11
ruby v => 1.8.7
When i run command "rake ...
0
votes
1answer
118 views
RakeTask Issue, Rails, “Dont know how to build task”
I am a newb and when running the below rake task keep getting the error message "Don't know how to build task 'create_postgis_template'" Any suggestions would be greatly appreciated!
My rake file ...
0
votes
2answers
81 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
1answer
190 views
Rakefiles and Gemfiles
So I understand the basic concepts of a Rakefile and a Gemfile (rakefiles are basically just dependency lists and shell commands to compile and link the application while gemfiles specify gem version ...
2
votes
0answers
68 views
Run both TestUnit and RSpec when using rake
I started my project using TestUnit but now i'm looking to use RSpec instead.
To avoid re writing all the tests, it will be usefull if i could cohabit both of them when i'm launching rake.
Below my ...
2
votes
2answers
480 views
Copy files preserving directory structure with rake
My goal is to copy a set of files specified by a pattern to the target dir. The files in source directory can have subdirs.
I tried:
cp_r(Dir.glob('**/*.html'), @target_dir):
and
...
1
vote
1answer
43 views
How do I copy a file from a gem to my rails application using rake
I have a gem with a default configuration YAML file, some_config.yml. I want to create a rake task to copy that file into the config/ directory of my rails application. How can I achieve this?
1
vote
1answer
50 views
Detect bundler installed groups
We're using bundler, and on deploy server application is installed without some gems
bundler install --without test
In this case some code should be deactivated (like loading rspec && ...
0
votes
1answer
75 views
Array of file names: how to move 2 certain files (if present) to the front?
In a build.rake file I have an array holding names of JavaScript files:
JS_FROM_INDEX=`./bin/extract_files -e js index.html`.split
It holds these files:
js/config.js
js/vendor/dollar.js
...
0
votes
1answer
145 views
How do I start redis as a rakefile task
I am trying to create a rakefile that runs both redis and irb. I have figured out how to run IRB (the first task runs), but when I try to run the redis task I see the error:
rake aborted! wrong ...
2
votes
1answer
440 views
Rake task for running a server in an independent thread then killing the thread when the task is complete?
How do I launch a thread within a rake task then kill the tread when the task is complete.
Essentially I am writing a rake task to test a jekyll site. I would like be able to launch the server, do ...
1
vote
0answers
98 views
How can I call a rake task on a git submodule?
I have a project including a number of vendored javascripts, e.g. jQuery. I'm including these scripts as git submodules. However, for my build process, I need the built script, not the whole ...
3
votes
1answer
229 views
can't uninstall rake 0.9 on rails 2.3.8
I'm working on a legacy Rails 2.3.8 project and setting up a dev server.
I get errors when I try to run rake, and I realized I have the wrong version of Rake installed, in the Rakefile it says:
...
3
votes
0answers
175 views
Building a C++ project using rake in Eclipse
I have a C++ project that I build using rake rather than a make. To set this up in Eclipse I disabled the CDT and Scanner builders and created a rake builder pointing to the rake executable. This ...
0
votes
3answers
307 views
Automatization of javascript building
I want to use Google Closure Compiler(GCC further) for joining my js-files and compressing before deploy. It's ok, if I will need to run some script. But how can I write a file with options for GCC? I ...
0
votes
3answers
849 views
Generate Rake test tasks dynamically (based on existing test files) in a Rakefile
I'm generating test tasks dynamically based on existing test files in a Rakefile. Consider you have various unit test files named after the pattern test_<name>.rb. So what I'm doing is creating ...
0
votes
1answer
85 views
how can I improve my Rakefile (deployment)
I'm writing my first Rakefile. The first things that I see in the doc is "there is no special format for a Rakefile" and "there is no special syntax in a Rakefile".
Ok, so I had to come up with ...
0
votes
1answer
137 views
rake script weird in cmd.exe, works fine in ruby.exe
I have this rakefile that works fine when called from a "Start Command Prompt with Ruby" instance, but fails when called with rake.bat. This means I can't get it to work on Jenkins at all using the ...
0
votes
1answer
449 views
ruby rake utility on the command line
So I am very new to Ruby, but I have written a few rake files to get the hang of things, and they worked perfectly well. Fast forward through a vacation, and now I can't get them to run at all, even ...
0
votes
1answer
236 views
Using Hudson and Rails
I'm trying to use the rails plugin with hudson, but i'm getting the following error, and I have no idea how to do this, follow the stack:
Updating URL revision: Jan 18, 2012 1:01:56 PM depth:infinity ...
1
vote
1answer
321 views
Rakefile: how to get fileutils calls to output their actions?
I have a Rakefile which, on my own-built Ruby 1.9.3 installation, correctly outputs the unix shell equivalent when I use a fileutils method such as cp, mkdir etc.
However, on the stock Ruby that ...
1
vote
1answer
169 views
Why can't i run rake -f?
I really have no idea what im doing. I'm trying to get rake to work so I can run rake workers:start but without having to have the working directory be the same as the folder of the rake file.
for ...
0
votes
1answer
119 views
rake - how does the “directory” keyword work?
It's been stated in several places that "directory" keyword can be used as a shorthand. Apparently, it can be indicated as a dependency, so that it will be created if not already present.
...
0
votes
2answers
554 views
Exclude files from FileList on Ruby
i have a rakefile with the following SRC = FileList['md/*.md'] but i want to exclude some files
I have tried
SRC = FileList['md/*.md'].exclude("md/header.md")
SRC = ...
1
vote
2answers
390 views
Specifying file prerequisites for Rake task
I've got a helper class that scans my entire project directory and collects a list of source files and the corresponding (target) object files. The dependencies on the compile task is defined after ...
0
votes
1answer
130 views
rakefile.rb doesn't work correctly
I have the following task
task :default => ['build_html']
desc 'Generar documentacion desde markdown'
task :build_html do
SRC = FileList['*.md']
directory 'html'
SRC.each do |md|
...
0
votes
1answer
59 views
Platform dependant Rakefile
I'm writing a Rakefile that, at some point, starts Jetty. The Rakefile should be platform independant so I can use it in my windows and my mac. To start jetty there are two scripts provided: jetty.sh ...
0
votes
1answer
217 views
activerecord-jdbc-adapter tests failing with wrong number of arguments to rake call
This very likely a setup issue on my part.
I am trying to run the tests for the activerecord-jdbc-adapter but they are failing, see log below.
I am using JRuby 1.6.4, tried on both OSX and Ubuntu.
...
8
votes
4answers
723 views
How can I use a comma in a string argument to a rake task?
I have the following Rakefile:
task :test_commas, :arg1 do |t, args|
puts args[:arg1]
end
And want to call it with a single string argument containing commas. Here's what I get:
%rake ...
2
votes
3answers
111 views
What can rakefiles be used for?
I understand the utility of the rake command, but what kinds of custom actions are typically defined in the Rakefile? I'm new and trying to figure out when it's appropriate to use this feature. I've ...
