Displaying 20 results from an estimated 100 matches similar to: "rake tasks"
2007 Oct 18
0
rake spec:models failing
Hi there,
I''m having trouble with `rake spec:models`. It''s failing on:
- 1 old rspec/rails project
- all new rspec/rails projects
But, it *is* working fine on my other (older) rspec/rails projects. All
projects are on rspec & rails 1.0.8, Rails 1.2.3, os X ppc
Here''s a fresh rspec/rails project with failing rake task
$ rails test_app -d postgresql
$ cd
2005 Jul 07
1
Rails 0.13 failing on Win XP
Hi all,
Since 0.13 just got out, I decided to live a little on the edge and
upgraded my working 0.12.1 Rails apps to 0.13. Which made them crash
with a bang!
After a little investigation it looks like even a fresh app will crash
with a message: "allocator undefined for proc"... I''m on Win XP,
everything was fine under Rails 0.12.1
Any help would be highly appreciated.
--
2011 Nov 25
4
Sprockets File not Found Exception.
Hi Everyone,
I was trying out some sample applications for Rails. I created some
controllers and pages. But when i try to access one of them i get an
exception on the webpage:
---------------------------------------------------------------------
Sprockets::FileNotFound in Pages#home
Showing c:/railscode/test_app/app/views/layouts/application.html.erb
where line #6 raised:
couldn''t
2008 Feb 26
3
app stats
Hi
Does anyone know if theres any app unit testing stats available for
any rails apps in comparison with other mvc frameworks, like django or
fusebox?
Thanks
Eoghan
--~--~---------~--~----~------------~-------~--~----~
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
2010 Jul 27
0
Rails 3.0.0.rc1 update - issue w Bundler 1.0.0.rc.1 and ruby 1.9.2.rc1
I upgraded my rails 3 version (now using bundler-1.0.0.rc.1
but bundle install in my test_app raises an error :
bundle install
Fetching source index for http://rubygems.org/
Using rake (0.8.7)
...
Using railties (3.0.0.rc)
Using rails (3.0.0.rc)
Updating .gem files in vendor/cache
/Users/yves/.rvm/rubies/ruby-1.9.2-rc2/lib/ruby/1.9.1/rubygems/package/
tar_input.rb:111:in `initialize'': No
2013 Feb 18
3
Dialplan / check / tool
Hi,
I am wondering, if there is any tool available, which performs a check
for suspicious entries in the dialplan. For example a non existing
AGI-Script or a double assigned extension ike that:
[context]
exten => *100*,1,AGI(test_app.pl)
...
exten => 190,1,Answer()
...
exten => *100*,1,AGI(never_reached.pl)
...
A "normal dialplan reload command" would echo no warning or
2010 Oct 28
2
ActiveRecord JDBC error Generated keys not requested
I''m getting the following error while connecting to mysql using
activerecord-jdbcmysql-adapter (1.0.2). Rails 3.0.1.
ActiveRecord::JDBCError: Generated keys not requested. You need to
specify Statement.RETURN_GENERATED_KEYS to Statement.executeUpdate()
or Connection.prepareStatement().: SET SQL_AUTO_IS_NULL=0
This occurs not matter what application I run it in to e.g. rake,
rails
2006 Mar 26
0
Added lp, access denied ?
Hi all,
I have kubuntu running samba as a file server, I have my wifes kubuntu machine
as a cllient and my works XP machine as a client. All is well and has worked
great for some time.
I decided to add a samba printer for XP. I modified smb.conf, I can now see
the printer on XP, I installed the printer driver 'have disk' all AOK then I
get a message from XP in what looks like a
2010 Aug 18
1
Kernel panic on import / interrupted zfs destroy
I have a box running snv_134 that had a little boo-boo.
The problem first started a couple of weeks ago with some corruption on two filesystems in a 11 disk 10tb raidz2 set. I ran a couple of scrubs that revealed a handful of corrupt files on my 2 de-duplicated zfs filesystems. No biggie.
I thought that my problems had something to do with de-duplication in 134, so I went about the process of
2006 Dec 18
13
unit testing wxruby GUIs
paul.allton at uk.bnpparibas.com wrote:
> I''m a big fan of automated UI testing (i.e. driving the UI from some
robot API). I appreciate this
> is potentially a whole new project, but does wxwidgets provide a
method of clicking buttons,
> typing into components ... if so, would it be technically possible to
expose this in wxruby.
I like automated UI testing too, but
2007 Mar 26
1
Handling Multiple Select Lists
Hi All,
After much searching and head scratching I post you this!
I can''t seem to find a generic way to handle multiple select data. The
function I use to receive form values will only pass the first selected
value from a multiple select. I have pasted part of the form and the
function below.
Thanks for any pointers,
Vince
// Example selectbox
<select
2017 Sep 11
2
Cannot chainload a formerly working Linux system
Chainloading a Linux system with syslinux fails unexpectedly with the lines:
WARN: No MBR magic, treating disk as raw.
ERR: Unable to find requested disk / partition combination.
boot:
coming after the usual lines
SyslinuxBOOT .... (in UEFI menu)
linuxBLFS (in syslinux menu)
SUMMARY (additional gory details available upon request)
~~~~~~~~~
2009 Nov 02
0
Kernel panic on zfs import (hardware failure)
Hey,
On Sat, Oct 31, 2009 at 5:03 PM, Victor Latushkin
<Victor.Latushkin at sun.com> wrote:
> Donald Murray, P.Eng. wrote:
>>
>> Hi,
>>
>> I''ve got an OpenSolaris 2009.06 box that will reliably panic whenever
>> I try to import one of my pools. What''s the best practice for
>> recovering (before I resort to nuking the pool and
2018 Jul 25
0
Unable to contact active directory or verify claim types
I set "server min protocol = SMB2" and "server max protocol = SMB2" .
Which then resulted in the Win 2012 R2 server being unable to access the
Samba server as \\weirdserver <file://weirdserver> . But I can access via
\\weirdserver.mydomain.com <file://weirdserver.mydomain.com> or \\ipaddres
<file://ipaddres> .
Logs on samba server for that client
2006 May 24
12
Analog to ruby script/generate for removing generated stuff?
All,
If I do ruby script/generate model blah,
is there an easy way for me to remove all of that stuff that got
generated?
Something like:
ruby script/remove model blah?
If it doesn''t exist, is it coming?
Thanks,
Wes
--
Posted via http://www.ruby-forum.com/.
2006 Mar 13
2
newbie: parent-child view
I have a simple database: a list of manufacturers (parent) and the parts
(child) for the manufacturer.
>From scaffold, I have a ?show? view listing manufacturers. I modified
this view to list the parts for the manufacturer. I also have a link to
create a new part. This causes the controller to display a new view to
create a new part for the manufacturer.
So creating the part is AOK,
2012 Jan 08
2
Sound always disabled in AoE II: AoK
Hi all!
First my system info:
Wine version: 1.3.28
OS: Ubuntu 11.10
Graphics: Mobile Intel GMA X3100
The problem basically is that I am getting no sound when I play AoE II: AoK. The game starts and works otherwise fine, except for the sound bit.
When I look in the game's Options menu, both Sound Volume and Music Volume sliders are down and it shows Off. I can move the sliders up, but it
2011 Nov 04
0
Non primary group permissions not working
Hi, I'm having a major problem here. We are running Samba 3.5.11 on
Debian Squeeze. Authentication is via ADS
When I create a directory with group rwx access I cannot access that
directory through Windows or smbclient unless that group is my primary
group. If I'm a member of the group (but it's not my primary), I can't
access it.
If I ssh to the server it works AOK
2005 Feb 25
0
4.0_rc1 new install fails to enable mixer devices
I've just installed 4.0_rc1 to evaluate and compare with FC3 for a
local project. The installation and initial usage of the two distros
is almost identical. up2date and yum work well on either.
The one problem I have is with sound. CentOS has loaded snd_intel8x0
and all the usual suspects, but the mixers (GNOME volume controls,
etc., do not work because there is no /dev/xxx for the mixer
2011 Aug 15
0
Ongoing VM saga ....
.... I have a 64-bit CentOS 5.6 VM running on a 64-bit FC-14 host. I was
originally using the stock NAT networking on the guest, which could
access the host, but nothing else on the network. I eventually found
some links on how to setup routed networking on the guest using a
specifically setup bridge. I followed the example a bit too closely,
bridging my eth0 interface, which is the one I