Displaying 20 results from an estimated 300 matches similar to: "[PATCH] out of tree build: ruby"
2011 Nov 29
1
[PATCH] out of tree build: ruby (second take)
---
ruby/Rakefile.in | 20 ++++++++++----------
1 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/ruby/Rakefile.in b/ruby/Rakefile.in
index da9f3f1..2587476 100644
--- a/ruby/Rakefile.in
+++ b/ruby/Rakefile.in
@@ -24,10 +24,10 @@ require 'rake/gempackagetask'
PKG_NAME='@PACKAGE_NAME@'
PKG_VERSION='@PACKAGE_VERSION@'
2011 Nov 20
1
[PATCH] out-of-tree build: ruby
---
ruby/Makefile.am | 4 ++--
ruby/Rakefile.in | 18 +++++++++---------
ruby/run-bindtests | 2 +-
3 files changed, 12 insertions(+), 12 deletions(-)
diff --git a/ruby/Makefile.am b/ruby/Makefile.am
index 112512b..032ace2 100644
--- a/ruby/Makefile.am
+++ b/ruby/Makefile.am
@@ -62,7 +62,7 @@ RUBY_SITEARCH := $(shell ruby -rrbconfig -e "puts
2006 Feb 15
6
Problem creating appdoc documentation
Hello, can anyone help me.
After a few weeks I returned to the rails to play with it. But I
recognize that I''m now not abble to build appdoc. The same thing that
few weeks ago worked without an problem now give me an error:
unrecognized option `--line-numbers --inline-source''
$ rake --trace --verbose reappdoc
(in /home/radek/src/firma/giga-net/ncc/work)
** Invoke reappdoc
2006 Jun 07
0
revised rake doc:app executes twice
I''m trying to create a new rake task that will generate slightly customized RDoc
documentation for my Rails app. So I''ve created a new task (shown below) in
lib/tasks/doc.rake. It generates documentation OK, but it executes the task
twice every time I ''rake doc:custom''.
namespace :doc do
desc "Generate customized documentation for this application"
2005 Dec 20
0
Patch lovin'' for #2018? ("rake appdoc fails on Windows systems")
Gurus (Guri? heh),
We got burned today by #2018 ("rake appdoc fails on Windows systems"),
and did a bunch of ferreting around (starting at the problems in
rdoc,rake,rdoc.bat) and ultimately came back to the conclusion that the
cleanest way to fix the problem is just a variation on a suggestion
already posted in that ticket.
I wrote up a patch against trunk from the suggestion there and
2011 Jan 05
0
Fwd: Review of libguestfs ruby bindings
Chris helpfully reviewed the libguestfs ruby bindings. His
findings are below.
Rich.
Date: Wed, 5 Jan 2011 16:36:42 -0500
From: Chris Lalancette
Subject: Review of libguestfs ruby bindings
Hey Rich,
What follows is a quick review of the libguestfs ruby bindings. I hope
you find it helpful.
Overall directory structure - looks reasonable enough. One thing that you
*could* do is remove
2006 Feb 02
4
rails-1.0.0 gem rdoc problem
Just got a brand new install of ruby-1.8.4 and new gems downloaded,
specifically rails-1.0.0. Seems rails does not generated rdoc for gem_server.
Looking into the problem, it seems that there is an error when doing ''rake rdoc''
for rails-1.0.0.
% rake rdoc
(in /opt/local/ruby-1.8.4/lib/ruby/gems/1.8/gems/rails-1.0.0)
rm -r doc
unrecognized option `--line-numbers --inline-source
2011 Dec 07
1
[PATCH] hivex: Fix Ruby bindings for 1.9; let the user explicitly choose ruby, rake
---
configure.ac | 15 +++++++++++++--
generator/generator.ml | 12 ++++++++++--
ruby/Makefile.am | 11 ++++++-----
ruby/Rakefile.in | 2 +-
ruby/run-ruby-tests | 4 ++--
5 files changed, 32 insertions(+), 12 deletions(-)
diff --git a/configure.ac b/configure.ac
index 8651c7b..33c09db 100644
--- a/configure.ac
+++ b/configure.ac
@@ -312,8 +312,19 @@
2006 Dec 14
1
Patch: make rdoc of lib/mocha/object.rb instead of lib/stubba/object.rb
Index: Rakefile
===================================================================
--- Rakefile (revision 73)
+++ Rakefile (working copy)
@@ -23,7 +23,7 @@
task.rdoc_dir = ''doc''
task.template = "html_with_google_analytics"
task.options << "--line-numbers" << "--inline-source"
-
2014 Jan 16
2
[PATCH] hivex: ruby: Minor fix for building with Ruby 1.8
---
ruby/Rakefile.in | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/ruby/Rakefile.in b/ruby/Rakefile.in
index 204e37c..5ad1502 100644
--- a/ruby/Rakefile.in
+++ b/ruby/Rakefile.in
@@ -22,7 +22,7 @@ require 'rake/testtask'
# Used to be rake/rdoctask. Now it's rdoc/task.
begin
require 'rdoc/task'
-rescue
+rescue LoadError
require
2011 Dec 06
1
[PATCH] let the user explicitly choose ruby and rake programs
---
configure.ac | 4 +++-
ruby/Makefile.am | 11 ++++++-----
ruby/Rakefile.in | 2 +-
ruby/run-bindtests | 2 +-
ruby/run-ruby-tests | 4 ++--
5 files changed, 13 insertions(+), 10 deletions(-)
diff --git a/configure.ac b/configure.ac
index ea0aec4..130db51 100644
--- a/configure.ac
+++ b/configure.ac
@@ -769,8 +769,10 @@ AC_ARG_ENABLE([ruby],
2014 Jan 16
0
Re: [PATCH] hivex: ruby: Minor fix for building with Ruby 1.8
On Thu, Jan 16, 2014 at 09:01:27PM +0100, Hilko Bengen wrote:
> ---
> ruby/Rakefile.in | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/ruby/Rakefile.in b/ruby/Rakefile.in
> index 204e37c..5ad1502 100644
> --- a/ruby/Rakefile.in
> +++ b/ruby/Rakefile.in
> @@ -22,7 +22,7 @@ require 'rake/testtask'
> # Used to be rake/rdoctask.
2006 Apr 18
0
extend doc:app rake task to Include lib/*?
I''ve never really done much with rake and I''m trying to figure out how
to add some options to the doc:app task. For instance I''d like to
include documentation for files in the lib directory. I can''t seem to
figure out the proper way to do it short of changing the
lib/tasks/documentation.rake in the rails distribution. After poking
around in the rails tasks, I
2012 Mar 14
3
solution for rake db:create
I ran into the following error:
WARNING: ''require ''rake/rdoctask'''' is deprecated. Please use
''require ''rdoc/tas k'' (in RDoc 2.4.2+)'' instead.
at /usr/lib/ruby/vendor_ruby/rake/rdoctask.rb
rake aborted!
uninitialized constant Gem
----
Following that advice (which I also found by searching the web for the
error
2012 Jun 26
2
Error with rake command
I am using Rails 2.3.8 application and when I enter rake command it
gives following error :
ms@ms-HP:~/OpenStreetView$ rake
WARNING: ''require ''rake/rdoctask'''' is deprecated. Please use ''require
''rdoc/task'' (in RDoc 2.4.2+)'' instead.
at /home/ms/.rvm/gems/ruby-1.9.3-p194@global/gems/rake-0.9.2.2/lib/rake/rdoctask.rb
rake
2006 Jan 04
1
Newbie question abour Rake
I''m learning about rake, and have what is probably a silly question.
When I run rake from my rails app''s top directory, what rakefile is it
really running?
I have rails 1.0, and in my top-level directory there is a small file
called "Rakefile", which basically just includes a few other files:
require ''rake''
require
2008 Nov 05
1
My rake is broken - "no such file to load..."
Hey folks
After doing an update from our svn server, rake is no longer working for
me, though it''s fine for my team-mates. I get this error:
no such file to load -- spec/rake/spectask
/home/max/work/e_learning_resource/trunk/Rakefile:10:in `require''
when i try to do any rake task. The file it mentions looks like this,
with line 10 being the last line:
#Rakefile
# Add
2010 Jun 30
0
rake TestTask problem with t.options
I am trying to understand some rake stuff better ..
I have a test that works fine if I do:
"ruby test/integration/tcp_test.rb -n test_job_create"
but if I try to do it in a rake file like below, it errors out. It
seems the t.options is the problem because I can get it to work
without that:
/usr/bin/ruby -I"lib" "/usr/lib/ruby/gems/1.8/gems/rake-0.8.7/lib/rake/
2013 Jan 03
1
Error with rake command
Getting error with rake db:migrate command:
ERROR: "rake/rdoctask" is obsolete and no longer supported.Use Rdoc/task
(available in RDoc 2.4.2+) instead.
Help me please
--
Posted via http://www.ruby-forum.com/.
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to
2011 Nov 22
7
rake aborted with ruby on rails
when i run * rake db:create*
*
*
WARNING: ''require ''rake/rdoctask'''' is deprecated. Please use ''require
''rdoc/task'' (in RDoc 2.4.2+)'' instead.
at
/home/vishnu/.rvm/gems/ruby-1.8.7-p352-D9TI4Ms3gBgeRYYz77F+sQ@public.gmane.org/gems/rake-0.9.2.2/lib/rake/rdoctask.rb
DEPRECATION WARNING: Rake tasks in