[lnkForumImage]
TotalShareware - Download Free Software

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


 

Forums >

comp.lang.ruby

ruby on windows

t3chn0n3rd

3/11/2008 5:12:00 PM

right now I am running ruby on red hat 8. Is there a compiler for
windows vista?
7 Answers

Thomas Wieczorek

3/11/2008 5:47:00 PM

0

On Tue, Mar 11, 2008 at 6:14 PM, t3chn0n3rd <darrin_allen@japan.com> wrote:
> right now I am running ruby on red hat 8. Is there a compiler for
> windows vista?
>

There are interpreters for all Windows plattform, yes. Some WinAPI
libraries might not work though

Tim Hunter

3/12/2008 1:58:00 AM

0

t3chn0n3rd wrote:
> right now I am running ruby on red hat 8. Is there a compiler for
> windows vista?
>

If by "compiler" you mean "interpreter," then yes. Google
"ruby+windows". If by "compiler" you mean "a thing that turns Ruby code
into object code," then no. There are no Ruby compilers. If you mean
something else, please clarify.

--
RMagick: http://rmagick.ruby...
RMagick 2: http://rmagick.ruby...rmagick2.html

James Tucker

3/13/2008 12:47:00 PM

0


On 12 Mar 2008, at 01:58, Tim Hunter wrote:

> t3chn0n3rd wrote:
>> right now I am running ruby on red hat 8. Is there a compiler for
>> windows vista?
>
> If by "compiler" you mean "interpreter," then yes. Google "ruby
> +windows". If by "compiler" you mean "a thing that turns Ruby code
> into object code," then no. There are no Ruby compilers. If you mean
> something else, please clarify.

Except the one in jruby. oh and rubinius (is that working yet?). Oh
and 1.9.

;)

>
>
> --
> RMagick: http://rmagick.ruby...
> RMagick 2: http://rmagick.ruby...rmagick2.html
>


fredistic

3/13/2008 1:05:00 PM

0

t3chn0n3rd wrote:
> right now I am running ruby on red hat 8. Is there a compiler for
> windows vista?

I have several ruby-on-rails projects that run on Windows XP 32-bit and
run the same on Linux 64-bit. So yes, they're compatible.

Uh, they run 'the same' with the exception that the faster hardware runs
it faster, of course.


--
Posted via http://www.ruby-....

Tim Hunter

3/13/2008 1:25:00 PM

0

James Tucker wrote:
> On 12 Mar 2008, at 01:58, Tim Hunter wrote:
>
>> t3chn0n3rd wrote:
>>> right now I am running ruby on red hat 8. Is there a compiler for
>>> windows vista?
>>
>> If by "compiler" you mean "interpreter," then yes. Google "ruby
>> +windows". If by "compiler" you mean "a thing that turns Ruby code
>> into object code," then no. There are no Ruby compilers. If you mean
>> something else, please clarify.
>
> Except the one in jruby. oh and rubinius (is that working yet?). Oh
> and 1.9.
>
> ;)

I knew somebody would quibble. That's why I specified "a thing that
turns Ruby code into object code." Neither JRuby nor YARV is turns Ruby
code into object code. VM instructions, yes. Object code, no.
--
Posted via http://www.ruby-....

James Tucker

3/13/2008 4:08:00 PM

0


On 13 Mar 2008, at 13:24, Tim Hunter wrote:

> James Tucker wrote:
>> On 12 Mar 2008, at 01:58, Tim Hunter wrote:
>>
>>> t3chn0n3rd wrote:
>>>> right now I am running ruby on red hat 8. Is there a compiler for
>>>> windows vista?
>>>
>>> If by "compiler" you mean "interpreter," then yes. Google "ruby
>>> +windows". If by "compiler" you mean "a thing that turns Ruby code
>>> into object code," then no. There are no Ruby compilers. If you mean
>>> something else, please clarify.
>>
>> Except the one in jruby. oh and rubinius (is that working yet?). Oh
>> and 1.9.
>>
>> ;)
>
> I knew somebody would quibble. That's why I specified "a thing that
> turns Ruby code into object code." Neither JRuby nor YARV is turns
> Ruby
> code into object code. VM instructions, yes. Object code, no.

I don't really want to argue, but I do feel it's important to point
this out. Most code that you will ever write (including C or any form
of assembler to run under an operating system (any of the 6 most
common OSes), runs inside a virtual machine). Whilst some or even most
of the instructions may run directly on the processor, there are many
layers of indirection providing a genuine virtual machine experience.
That is, memory management, scheduling, memory access security, and so
on and so forth. Many C heads (of which I am actually not one) will
tell you that "most C code is written for a virtual machine on any
modern OS".

Now if you want to get 1 step closer to the processor, and this is
your definition (of object code), that's fine, but there are often no
genuine benefits to doing so, by comparison to what becomes available
expanding the size (or more specifically capability) of the VM you run
on. Start up time aside, it's relatively well known that Java is
starting to push these boundaries.

The real gain that businesses see to 'object code' is that it is very
hard to 'steal implementation code' from 'object code'. This is partly
a product of optimization and of the effective (co-incidental)
obfuscation of the code. According to some of the Jruby folks, it's
very hard indeed, to get 'implementation code' from jruby compiled
classes.

Moreover, I'm not sure it's practical, or even entirely possible, to
implement ruby without at least some 'VM' style code running in the
background, even under an attempt to make that all static, stateless
code. I'd like to be proven wrong, though.

As I say, I don't want to argue on the definition of object code. We
probably share different opinions. This is just mine, and I'm happy to
discuss it, but not to argue. :-)

fredistic

3/13/2008 7:13:00 PM

0

C and assembler run directly on the hardware. Sometimes in user mode,
sometimes in kernel mode. Sometimes with an extensive run time library,
sometimes without.

I suppose you could call virtual memory a 'VM', but few do. And neither
C nor assembler require virtual memory underneath.

James Tucker wrote:

> Most code that you will ever write (including C or any form
> of assembler to run under an operating system (any of the 6 most
> common OSes), runs inside a virtual machine).
--
Posted via http://www.ruby-....