Displaying 20 results from an estimated 300 matches similar to: "CCrb configuration for many projects"
2011 Feb 19
1
undefined method `map' for nil:NilClass for rails 2.3.2
Hai guys!
When i try to do rake gems:install and rake gems:refresh_specs in my app
below error is occurred. please give some solution for this.
config.gem: Unpacked gem authlogic-2.1.3 in vendor/gems has no specification
file. Run ''rake gems:refresh_specs'' to fix this.
rake aborted!
undefined method `map'' for nil:NilClass
enivorment.rb
RAILS_GEM_VERSION =
2009 Jul 20
9
rake error
When I run rake test:units I get this error:
292 tests, 350 assertions, 2 failures, 13 errors
rake aborted!
Command failed with status (1): [/usr/local/bin/ruby -I"lib:test" "/
usr/loc...]
This error just showed up yesterday --- I have no idea how I caused
it. Here is my gem list in case that helps:
actionmailer (2.3.2, 2.2.2)
actionpack (2.3.2, 2.2.2)
activerecord (2.3.2, 2.2.2)
2009 Sep 15
3
how to run all tests AND metric_fu
i want to use cruisecontrol.rb to run ?rake test? (every time a new
revision is in the svn repo) and ?rake metrics:all? (let?s say every
24 hours). how do i have to configure cruisecontrol.rb? both rake
tasks work. however, when i configure cruisecontrol.rb as described on
the metric_fu website, i.e. add ''project.rake_task = ?metrics:all?
project.scheduler.polling_interval =
2008 Sep 19
0
ANNOUNCE: Roodi 1.3.0 - Automated ruby code checking
Hi all,
Roodi (Ruby Object Oriented Design Inferometer) version 1.3.0 has been
released. It parses your Ruby code and warns you about design issues
you have based on the checks that is has configured. If you''ve ever
used checkstyle for Java, you''ll notice the similarities. You can see
it at:
http://roodi.rubyforge.org/
or just:
gem install roodi
It now contains 13
2007 Jul 06
0
CCRB and ci_reporter XML output: How do you display custom build artifacts
Hi,
I''ve installed ci_reporter (having previously installed CruiseControlRB), as both a gem and a rails plugin. The tests are invoked by an explicit project.command (rake ci:setup:testunit test - I probably shouldn''t need to do this explicitly but I''m semi-following ci_reporter instructions here) from cruise_config.rb. At the completion of the tests I see XML files
2006 Feb 14
7
Action when database changes
Hello,
Is it possible to trigger an action in a controller when
a table from database changes?
I thought about using an utility like cron (railscron) to
check every, e.g. 2 s, if the table changed, but I am wondering
if there is a solution a bit more ''elegant'': to trigger an action
exactly when the change is made.
Best regards,
--
Kuba Nowak
2012 Oct 24
8
[Bug 56347] New: NVPlatformProbe routine does not mark the entity as Shared for ZaphodHeads.
https://bugs.freedesktop.org/show_bug.cgi?id=56347
Priority: medium
Bug ID: 56347
Assignee: nouveau at lists.freedesktop.org
Summary: NVPlatformProbe routine does not mark the entity as
Shared for ZaphodHeads.
QA Contact: xorg-team at lists.x.org
Severity: normal
Classification: Unclassified
OS:
2007 Nov 24
12
orphan habtm rows
HI,
i use models User and Groups connected with many to many association, so
i have users table, groups and groups_users.
lets say i create one user and one group. next i add a group to user. so
now my table groups_users has one entry i.e.
group_id | user_id
_________|________
1 | 1
ok, when i delete both my group and user, above entry is not deleted,
thus leaving alone without
2008 Feb 17
15
A bug in wxRuby. Segmentation fault in random situations.
Hello,
I wrote an application in wxRuby:
ruby 1.8.6
wxruby 1.9.4 installed from gem
windows xp sp2
After several minutes of running it crashes with the following error:
"c:/ruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27: [BUG]
Segmentation fault
ruby 1.8.6 (2007-03-13) [i386-mswin32]
This application has requested the Runtime to terminate it in an unusual way.
Please contact
2006 Apr 01
3
acts_as_taggable, wrong number of arguments
Hello,
When I try:
@tagged_items = Problem.find_tagged_with :all => ''kuba''
or
@tagged_items = Problem.tags_count :limit => 100
I get this error:
ArgumentError in Volume#index
wrong number of arguments (2 for 3)
RAILS_ROOT: script/../config/..
Application Trace | Framework Trace | Full Trace
2007 Aug 27
3
Problem with ListCtrl#get_item
Hello,
I have a problem with getting items from ListCtrl.
Although my ListCtrl is in LC_REPORT mode, it has columns set up,
every cell is set with set_item and everything displays fine, this
code:
x = myList.get_item(row,col).get_text()
always returns an empty string.
For example:
myList.set_item(0,0,"Hello")
x = myList.get_item(0,0).get_text()
now x equals "" !
I
2011 Nov 02
12
[Bug 8566] New: Spotlight comments (extended attributes) are not synced
https://bugzilla.samba.org/show_bug.cgi?id=8566
Summary: Spotlight comments (extended attributes) are not
synced
Product: rsync
Version: 3.0.9
Platform: All
OS/Version: Mac OS X
Status: NEW
Severity: normal
Priority: P5
Component: core
AssignedTo: wayned at samba.org
2013 Mar 29
28
[Bug 62914] New: ZaphodHeads doesn't work after upgrading to xorg 1.14
https://bugs.freedesktop.org/show_bug.cgi?id=62914
Priority: medium
Bug ID: 62914
Assignee: nouveau at lists.freedesktop.org
Summary: ZaphodHeads doesn't work after upgrading to xorg 1.14
QA Contact: xorg-team at lists.x.org
Severity: critical
Classification: Unclassified
OS: Linux (All)
Reporter:
2010 Jan 07
0
flyerhzm-metric_fu = metric_fu + rails_best_practices
I have forked metric_fu and add rails_best_practices to it.
rails_best_practices is a great gem to check your rails app codes and
give you some good suggestions for better rails codes.
The repository of flyerhzm-metric_fu is here: http://github.com/flyerhzm/metric_fu
The repository of rails_best_practices is here:
http://github.com/flyerhzm/rails_best_practices
--
You received this message
2006 Apr 09
1
http request, hash table
Hello,
My problem is that I cannot figure out how to format data in the http
post request
using external C++ application, so then I could write in my controller:
@myHash = params[:person]
print ''Name: '', @myHash[:name]
or
@name = params[:person][:name]
Thanks in advance!
--
Jakub P. Nowak
2007 Nov 07
6
Rich (or any) GUI Components for Rails
HI,
I Find rails great but theres lack of rich components, i mean any
components except standard html controls..
I cant build everytime my table with all features, we are crud right ?
So any component repository planned ?
Maybe rails isnt good solution for my requirements ?
I heard that components facility is now depreciated in rails... why ?
So far im programming asp.net and im using
2008 Sep 19
0
metric_fu for use in cc.rb
Hi all,
I looked on the mailing list for metric_fu, but didn''t find it -- so at the
risk of being redundant, it looks really useful.
"Metric_fu is a set of rake tasks that make it easy to generate metrics
reports. It uses Saikuro <http://saikuro.rubyforge.org/>,
Flog<http://ruby.sadi.st/Flog.html>,
Rcov <http://eigenclass.org/hiki.rb?rcov>,
2008 May 02
3
CruiseControlRb behind apache
I managed to find this in the archives, so far: http://www.nabble.com/Setting-up-CCRB-behind-apache-proxy-tt14016053.html#a14099749
Found a better alternative to doing this in my .htaccess instead of
messing with the httpd.conf, in case someone is interested:
--- snip ---
RewriteEngine On
### for cruisecontrol
RewriteBase /
RewriteRule ^(.*)$ http://localhost:3333/$1 [P]
AuthType Basic
2007 Oct 03
9
WxRuby Newbie Application Hanging
I have a WxRuby application that takes a few inputs from the user and
uses that information to search through a large file for matches. The
application works very well, with one exception. If I click anywhere
in the frame while the application is searching through the long file,
the application hangs. Has anyone experienced anything similar to
this? Any suggestions on how I can fix this?
Thanks
2008 Mar 20
2
"can't activate activesupport" error
Hi,
I''ve got a production server with rails 1.2.3 installed. Previously my
app had frozen rails 1.2.3 as well. I decided to update frozen rails
to 1.2.6.
Deployment went fine until rake task was executed, which resulted in
the following error:
rake aborted!
can''t activate activesupport (>= 1.4.4), already activated
activesupport-1.4.2]
On the server there''s