Displaying 20 results from an estimated 20000 matches similar to: "What OS do you use for development?"
2006 Apr 08
2
Does anybody know what what is causing this console message?
This started, I think, after I upgraded to 1.1.
trunk 508 $ruby script/console
Loading development environment.
/usr/local/lib/ruby/1.8/test/unit/assertions.rb:265: warning: already
initialized constant UncaughtThrow
>>
Everything seems to work in the console, however.
Keith
--
Posted via http://www.ruby-forum.com/.
2006 Jan 07
2
Functional tests with routes
Hi all,
I''m trying to do a route test using assert_generates and running into a
bit of trouble.
The controller that I am testing is in a module -
class Admin::AdminPortalController
def index
end
end
I want the user to jump to the AdminPortal/index action when they use
http://myApp/admin, so I''ve put the following in routes.rb
map.admin_portal
2006 Apr 06
4
Engines 1.1.1
Since a minor change in Rails (renaming the file that the version is
stored in, namely) causes a bit of a hiccup for the Engines plugin,
here''s a new release, full of bug fixes and other nice things.
ALL users of Engines are advised to update their copy of the plugin to
get these fixes. The Engines plugin is fully backwards compatible with
Rails 1.0. Anyway - to update, please download
2006 Apr 24
1
A question of style - save vs. save!
A pseudo poll on AR error handling...
With AR, you have the choice between the following:
(1)
if thing.save
go_for_it
else
handle_the_error
end
(2)
begin
thing.save!
rescue RecordInvalid => error
handle_the_error
end
(3)
override rescue_action_in_public (ala the recipes book)
or do something homegrown, and then just
thing.save!
---
The questions are:
-Which idiom do you use and
2006 Jan 20
2
Logging from a functional (or unit) test
I''ve tried any number of ways to output information to the test log from
my tests, but nothing seems to work. Is there a setting someplace that I
am missing? I''m just trying to do something on the order of
logger.info "blah blah"
from my test.
TIA,
Keith
--
Posted via http://www.ruby-forum.com/.
2006 Mar 29
6
Prototype Window Class 0.6
Hi
I have just released a new version of my Prototype Window Class
included modal windows and a lot of stuff that some people send me,
thanks to all of you guys for your support.
Seb
2006 Jan 11
14
User Engine/General Engine issues
I''m trying to get the login/user engine combo up and working and am
having difficulties. I got the login engine up and running fine, no
problems. Now, on to the user engine.
After fixing the needed stuff in the bootstrap task so it loads I''m
able to login as the default admin ok. BUT none of the
views/controllers that are in login/user_controller are being
overridden by the
2003 Jan 27
1
Samba as PDC for WinXP, Win9
Simon,
What version of Windows XP are you using? If your client has purchased
computers from Best Buy or a similar electronics "mega-store" they likely
received WinXP Home Edition. (Which is what it sounds like based upon the
use of Win9x machines you mentioned.)
If that is the case, then you will be unable to get the WinXP machines
to see the Samba Server (or a Windows
2013 Nov 17
4
quotation marks and scan
Dear R People:
I'm sure that this is a very simple problem, but I have been wresting with
it for some time.
I have the following file that has the following one line:
CRS("+init=epsg:28992")
Fair enough. I scan it into R and get the following:
> u
[1] "CRS(\"+init=epsg:28992\")"
> gsub(pattern='\"',replacement='"',x=u)
[1]
2005 Aug 05
5
making a route sticky
Is it possible to have a route stick in the kernel, even if device it points to
goes to roller coaster up and down drive.
For example. I have an ADSL modem and am doing VPN over it. There's a route
needed for VPN added like this:
ip route add 192.168.1.0/24 via 1.2.3.4 src 192.168.2.1
There are two problems with it:
a) if ADSL link is down when above command is executed, the route
2004 Oct 29
1
Re: Guild Wars Client (Mark Knecht)
> Message: 8
> Date: Fri, 29 Oct 2004 11:40:08 -0700
> From: Mark Knecht <markknecht@gmail.com>
> Reply-To: Mark Knecht <markknecht@gmail.com>
> To: Joel Konkle-Parker <jjk3@msstate.edu>
> Subject: Re: [Wine]Guild Wars Client
> Cc: wine-users@winehq.com
>
> On Fri, 29 Oct 2004 10:11:53 -0700, Mark Knecht <markknecht@gmail.com>
> wrote:
>>
2007 Mar 19
1
Roller Coaster Tycoon, Suse 10.1, installer silently dies
I have a fresh install of Suse 10.1 and wine 9.21 and tried to install
roller coaster tycoon for some fun. However the installer quickly dies
silently. I've tried using different versions of wine with no succes.
The frustrating thing is that on different versions of Suse this
installed beautifully.
I've tried using winetools to set up my ~.wine, but still $wine
setup.exe gives me
2003 May 24
1
anyone had success with roller coaster tycoon2 ?
I'm attempting to run Roller Coaster Tycoon2 under wine-20030508 per
these instructions:
http://appdb.winehq.com/appview.php?appId=265&versionId=1573
but i'm not having any luck. When i run "wine --dll dinput=n Rct2.exe"
it fails with the error:
fixme:file:DEVICE_Open Unknown/unsupported VxD DINPUT.VXD. Try setting
Windows version to 'nt40' or 'win31'.
2007 Nov 10
2
Virtual Box Host Networking problems
Dear Centos-Virt:
This is actually a second request for help on the
same issue. I finally got to try what several
months ago was replayed to me and no joy was to
be had. I am afraid the original thread got stale
and also had extra, unnecessary data in it.
Guest=XP Pro, SP2
Host=CentOS5; # uname -r; 2.6.18-8.1.15.el5
VirtualBox-1.5.0_24069_rhel5-2.i586.rpm
2005 Mar 24
2
Toll-free DID switchover: Get status?
Hello!
I am in the middle of having a vanity toll-free DID set up. It's been 13
days now (9 business days). This is the first time I'm doing this, and
I'm not sure of the process. There has been a very weird progression of
changes on my number, from fast-busy, to a message saying that I'm calling
from a phone with restrictions (no matter *what* line I call from), to a
2011 Jan 11
9
Can I omit respond_with.
If I don''t want xml results but only html can I omit respond_with in
some actions?
For example index from:
respond_with(@sectors = Sector.all)
becomes only
@sectors = Sector.all
isn''t it?
--
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
2013 Feb 26
5
Can't upgrade to 4 beta 1
I had to update several gems for Bundler to accept it but now I''m stuck:
bundle update rails devise knockoutjs-rails sass-rails coffee-rails
devise-encryptable oojs
Fetching gem metadata from https://rubygems.org/.......
Fetching gem metadata from https://rubygems.org/..
Resolving dependencies...
Bundler could not find compatible versions for gem "railties":
In Gemfile:
2006 Apr 19
3
Useful article for anyone programming for paid client work
We''re working on a new series of applications called "RealApps" - simple
plugins and components add functionality to Rails applications. We just
posted an article describing the first one - a content management system.
We also go into the business case behind the design we chose. Good stuff for
programmers to know - especially if you are doing paid client work. It
2006 Mar 16
6
Unknown image type: VMX
Hi all
I am trying to get VMX guests working on my new server here. The
machine has a Pentium D 920 on an ASUS P5WD2-E motherboard. I''ve
updated the BIOS to the latest 0401, which added the virtualization
option. I am running a fresh installation of Gentoo (64-bit).
When I try and run ''xm create'' on a vmx config file, I get the following error:
Error: Error
2011 Sep 01
7
couldn't find file 'jquery' rails 3.1 stable mountable engine
When I create a new engine in Rails 3.1 stable and then access the dummy
app or the engine I get an error say that the app can''t find jquery.
I''ve created the engine using
rails plugin new coffee --mountable
I''ve also created a basic controller in the engine and the dummy app. If
I remove the javascript include tag, everything works. But with the tag
there it just