Displaying 20 results from an estimated 5000 matches similar to: "Isolating a Rails app?"
2006 Mar 24
0
Re: Isolating Rails apps?
>
> } I''m trying to isolate some Rails apps I will be running on a shared
> } server; by isolate I mean I want the application to be unable to access
> } any of the filesystem below its root. These apps are from a few
> } different people and I don''t want them to accidentally (or purposefully)
> } blow someone else''s files away. I would just create a
2008 Jan 10
14
Keeping Camping going
Hello all,
I''m not sure who Camping''s steward is at this point(zimbatm? _why?),
but I haven''t seen much activity in quite some time. I really like
Camping, and I understand open source projects can fall by the
wayside.
So, I''d be willing to take over maintenance and releasing. I have
experience maintaining my own open source projects, and a history of
2008 Apr 03
3
Branchable migrations -- A plugin to let you organize your migrations
I just put a new plugin named branchable_migrations on Github.
Branchable migrations lets you separate your migrations into
"branches" (i.e., a director under db/migrate) that each have their
own version. Using the forthcoming UTC timestamped migrations and
this plugin, you can separate migrations by table or feature. Doing
so should alleviate many of the problems that seem to pike up
2008 Jan 09
1
SIP Client in Rails App
Hey,
do you think it could be possible to integrate a SIP or IAX client into
a Rails app to use it for VoIP calls directly from the web page by
clicking a link without having to download a 3rd party client?
Is there any other solution than an activeX control to access the
microphone?
Do you have made experience with a free minimalistic applet or activeX
control?
Greets
--
Posted via
2010 Mar 03
1
[gPXE] localboot 0 hang on some machines
Randy McAnally wrote:
>
> Thank you so much, this is the kind of news I needed!
>
> ---------- Original Message -----------
> From: "Arends, R.R." <r.r.arends at hro.nl>
> To: "Randy McAnally" <rsm at fast-serv.com>
> Cc: <gpxe at etherboot.org>
> Sent: Wed, 03 Mar 2010 10:10:56 +0100
> Subject: Re: [gPXE] localboot 0 hang on some
2010 Feb 04
2
[gPXE] Local Boot + SW Raid
This is worth forwarding to SYSLINUX.
On Thu, Feb 4, 2010 at 3:21 AM, Randy McAnally <rsm at fast-serv.com> wrote:
> For some reason I cannot local boot (the default) from any software RAID
> system (where the boot partition is linux raid). ?It hangs at "Booting from
> local disk..." but never exits the pxe rom and just sits there requiring a reboot.
Which RAID level are
2008 May 22
4
how to find out autoincrement id ?
Hi
I need to push newly created item id to file. (ie. its autoincrement
value)
I tried this on controller but it wont work, it cant find id value for
the newly created item.
def create
@imitem = Imitem.new(params[:imitem])
system "echo \"@imitem.id\" > /tmp/myid"
any help ?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you
2007 Dec 22
8
Rails 2.0 scaffold
Hey guys,
I posted the other day about scaffold not working and i was told that it
was rails 2.0 doing this. (btw i''m using adgile web development)
I have read on the internet that you need to put extra stuff like title,
description......
So i did this:
C:\ruby\depot>ruby script\generate scaffold Product Admin id:int
title:varchar(1
00) description:text image_url:varchar(200)
2008 Feb 03
4
Extract vowels and consonants using Ruby Regex
Hello,
I am trying to build a regex to extract vowels and consonants from a
string. So far, I am able to extract the basic a-e-i-o-u sequence
using the following extension to the String class:
class String
def vowels
scan(/[aeiou]/i)
end
def consonants
scan(/[^aeiou]/i)
end
end
examples:
>> "Mary had a little lamb".vowels
=> aaaiea
>> "Mary had a
2006 Jun 03
2
Two Announcements - Beta Book and a Rails magazine!
Two announcements, so I''ll split this post into two pieces:
MR. NEIGHBORLY''S RUBY AND RAILS NOW IN BETA
=========================================
My Ruby on Rails book is now in beta. You can roll on over to the
website for more information and pricing:
http://www.rubyonrailsbook.com/
Here''s a rundown: Beta eBook is available now, print hopefully in July
sometime.
2008 Jan 28
5
Re: Massive problems with ''PCI-DMA: Out of SW-IOMMU space for XXX bytes [..]'' with 3Ware controller
Markus Schuster wrote:
> PCI-DMA: Out of SW-IOMMU space for 40960 bytes at device 0000:03:00.0
> 3w-9xxx: scsi0: ERROR: (0x06:0x001C): Failed to map scatter gather list.
> (03:00.0 is the 3Ware Controller)
Me too as well...any progress on this issue?
I notice that IO performance is notably slower than the stock RHEL kernel;
about 1/2 overall write performance. I can trigger the bug
2008 Jan 28
1
localtime=1 broken on HVM guests
I have confirmed that the localtime option in guest config is broken in Xen
3.1.3-rc2. No matter what the setting, UTC is always given to the guest.
I have tried putting the HC in UTC and in Localtime, it makes no
difference. Aside from setting the system clock to the wrong time (or
defining an offset in guest config), it is impossible to send localtime to
the guest.
Is there anyone who
2007 Oct 15
0
A Ruby/Rails bibliography
Howdy all,
I''ve noticed an influx of "What book should I buy?" questions lately,
so I thought I''d put together a number of bibliographies/curriculums
based on experience, role, and so on. You can view them at:
http://blog.mrneighborly.com/2007/10/ruby-and-rails-bibliography-of-sorts.html
I want this to be a resource to point people to, so if one of these
becomes out
2005 Sep 19
1
pam and sasl2-sample-server failure
I'm setting up a postfix server using "The Book of Postfix". In ch 15
there is a section on testing saslauthd which I can't get to work. I
can get it to work using shadow password authentication, but it fails
on pam. I don't kow squat about troubleshooting pam. Any PAM wizzes
out there that can help? I saw a unrelated post talking about
something needing to be in the pam
2008 Oct 11
1
Test Coverage Tool for TDD?
Hi,
I''m learning TDD without using Shoulda or RSpec. When I played with
RSpec, there was a tool to show test coverage visually.
Is there any similar function built-in to Rails Test::Unit?
Or do I need to add it on my own?
What''s the recommended tool?
I tried `rake -T test`, but didn''t find anything about coverage.
-Jon
2007 Dec 27
17
2.0 & "Agile Web Dev..." book
Just running through the first little project (depot) in ''Agile Web
Development with Rails''. It isn''t scaffolding like it says it should
in the book.
After running:
>rails -d mysql depot
then SQLing:
drop table if exists products;
create table products (
id int not null auto_increment,
title varchar(100) not null,
description text not null,
image_url varchar(200)
2011 Sep 08
4
TCPServer in 1.9.2
Hi. First post in this group and I hope someone can help.
I am trying to teach myself Ruby with a long-term goal of doing some
web development using Ruby on Rails.
Note: version
C:\rails\hello>ruby -v
ruby 1.9.2p290 (2011-07-09) [i386-mingw32]
I have been going through Jeremy McAnally''s book "Mr. Neighborly’s
Humble Little Ruby Book" and there is a section in chapter 5
2008 Jun 08
4
qemu-img not compiled?
I''m running latest 3.1.4. I need access to qemu-img to convert some image
files. However this binary is not compiled after doing make world and make
install. I notice that the source code is present, but I cannot figure out
how to make it compile and install along with qemu-dm?
Am I missing something?
--
Randy
_______________________________________________
Xen-users mailing
2008 Nov 21
2
How to install the plugin manually?
Dear all
I would like to install plugin auto_complete but failed..
jruby -S script/plugin discover
C:/jruby-1.1.5/lib/ruby/1.8/open-uri.rb:278:in `open_http'': 407 Proxy
Authentication Required (OpenURI::HTTPError)
I have set the http_proxy=http://user:password@host:port/, It is working
fine to fetch gem files.
I know the plugin is in here:
2008 Jan 16
1
Firedraw: World's First Ajax based Flow Diagramming Tool
Dear Friends,
I m pleased to present Firedraw www.firedraw.org , World''s First And
Only Ajax based in-browser visual modeling tool. Currently it has
options for drawing Flow Diagrams. Soon we will be incorporating UML
and ERD drawing capabilities.
This is our second Beta Test release dated 16 Jan 08, first Beta Test
release was deployed on 2 Jan 08. Since then, we have incorporated
many