[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

RubyConf wifi

Gregory Seidman

10/29/2007 7:38:00 PM

For those going to RubyConf, it appears that WiFi is available at the
hotel, but it's only free if you sign up for Omni's (free) Select Guest
program:

http://www.omnihotels.com/Home/FindAHotel/Charlotte/HotelHighlights/WirelessInternetA...

I signed up, then called the hotel to associate my reservation with my
Select Guest number.

--Greg


7 Answers

Rick DeNatale

10/29/2007 8:26:00 PM

0

On 10/29/07, Gregory Seidman <gsslist+ruby@anthropohedron.net> wrote:
> For those going to RubyConf, it appears that WiFi is available at the
> hotel, but it's only free if you sign up for Omni's (free) Select Guest
> program:
>
> http://www.omnihotels.com/Home/FindAHotel/Charlotte/HotelHighlights/WirelessInternetA...
>
> I signed up, then called the hotel to associate my reservation with my
> Select Guest number.

Does anyone know if there will be wifi access at the conference for
those of us who aren't staying at the Omni?
--
Rick DeNatale

My blog on Ruby
http://talklikeaduck.denh...

David A. Black

10/29/2007 8:43:00 PM

0

Pat Maddox

10/29/2007 9:34:00 PM

0

On Oct 29, 2007 12:38 PM, Gregory Seidman
<gsslist+ruby@anthropohedron.net> wrote:
> For those going to RubyConf, it appears that WiFi is available at the
> hotel, but it's only free if you sign up for Omni's (free) Select Guest
> program:
>
> http://www.omnihotels.com/Home/FindAHotel/Charlotte/HotelHighlights/WirelessInternetA...
>
> I signed up, then called the hotel to associate my reservation with my
> Select Guest number.
>
> --Greg
>
>
>


Nice, thanks for the heads up.

Pat

S.D

10/29/2007 9:36:00 PM

0

I've upgraded to Ruby 1.9 today, in preparation for attending RubyConf
in Charlotte this weekend, and ran across some problems after upgrading.

I've written a web application in Ruby that controls embedded media
players over the internet.
When I attempt to run this existing web application, I get the following
output(s):

bash-/public$ ruby WM5.rb
/usr/lib/ruby/site_ruby/1.8/rubygems.rb:432:in `method_missing':
undefined method `exists?' for File:Class (NoMethodError)
from /usr/lib/ruby/site_ruby/1.8/rubygems.rb:432:in `block in
ensure_gem_subdirectories'
from /usr/lib/ruby/site_ruby/1.8/rubygems.rb:430:in `each'
from /usr/lib/ruby/site_ruby/1.8/rubygems.rb:430:in
`ensure_gem_subdirectories'
from /usr/lib/ruby/site_ruby/1.8/rubygems.rb:355:in `set_home'
from /usr/lib/ruby/site_ruby/1.8/rubygems.rb:121:in `dir'
from /usr/lib/ruby/site_ruby/1.8/rubygems.rb:364:in `set_paths'
from /usr/lib/ruby/site_ruby/1.8/rubygems.rb:131:in `path'
from /usr/lib/ruby/site_ruby/1.8/rubygems/source_index.rb:60:in
`installed_spec_directories'
from /usr/lib/ruby/site_ruby/1.8/rubygems/source_index.rb:47:in
`from_installed_gems'
from /usr/lib/ruby/site_ruby/1.8/rubygems.rb:109:in `source_index'
from
/usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:111:in
`init_gemspecs'
from
/usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:57:in `initialize'
from
/usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:30:in `new'
from
/usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:30:in `rescue in
require'
from
/usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:28:in `require'
from WM5.rb:17:in `<main>'

If this is common for Ruby 1.9 or if it is a result of some further
setup I need to take care of, please point it out to me. The errors all
point to rubygems, so I'd assume that others have encountered this
problem. Questions like: "Do gems need to be reinstalled, moved or just
pointed to some environment variable?" come to mind.
This same code runs without error(s) when I start it with Ruby 1.8.6.

Thanks for all replies and I look forward to seeing many of you this
weekend.

-- Steve Downie


ajalkane

10/30/2007 9:33:00 AM

0

On Oct 29, 11:36 pm, "S.D" <s...@comcast.net> wrote:
> bash-/public$ ruby WM5.rb
> /usr/lib/ruby/site_ruby/1.8/rubygems.rb:432:in `method_missing':
> undefined method `exists?' for File:Class (NoMethodError)
> ...
> If this is common for Ruby 1.9 or if it is a result of some further
> setup I need to take care of, please point it out to me. The errors all
> point to rubygems, so I'd assume that others have encountered this
> problem. Questions like: "Do gems need to be reinstalled, moved or just
> pointed to some environment variable?" come to mind.
> This same code runs without error(s) when I start it with Ruby 1.8.6.

File.exists? has been deprecated in favor of File.exist?


ara.t.howard

10/30/2007 2:52:00 PM

0


On Oct 30, 2007, at 3:35 AM, ajalkane wrote:

> File.exists? has been deprecated in favor of File.exist?

and, of course, test(?e, filename) still works...

a @ http://codeforp...
--
we can deny everything, except that we have the possibility of being
better. simply reflect on that.
h.h. the 14th dalai lama




S.D

10/30/2007 5:24:00 PM

0

ajalkane wrote:
> On Oct 29, 11:36 pm, "S.D" <s...@comcast.net> wrote:
>
>> bash-/public$ ruby WM5.rb
>> /usr/lib/ruby/site_ruby/1.8/rubygems.rb:432:in `method_missing':
>> undefined method `exists?' for File:Class (NoMethodError)
>> ...
>> If this is common for Ruby 1.9 or if it is a result of some further
>> setup I need to take care of, please point it out to me. The errors all
>> point to rubygems, so I'd assume that others have encountered this
>> problem. Questions like: "Do gems need to be reinstalled, moved or just
>> pointed to some environment variable?" come to mind.
>> This same code runs without error(s) when I start it with Ruby 1.8.6.
>>
>
> File.exists? has been deprecated in favor of File.exist?
>
Why should something as simple as this cause legacy code to break? And
why not provide syntactic "sugar" so that this type of change does no
harm? I guess I'm a bit "old school", but breaking legacy code is never
a good thing and should be done only for very good reasons.

Now, I'll have to do ruby version detection in several server
deployments and branch the code accordingly. ARRRGGGGG!

That being said, I have a deep appreciation for all of the work that
Matz and others have done to make Ruby what it is today. I just hope we
make "not breaking" legacy code a priority as the language continues to
evolve.

-- Steve Downie