topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Tuesday April 16, 2024, 1:21 pm
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Author Topic: Ruby executable  (Read 5023 times)

dironman

  • Participant
  • Joined in 2006
  • *
  • default avatar
  • Posts: 9
    • View Profile
    • Donate to Member
Ruby executable
« on: July 19, 2006, 04:58 PM »
Link to make your ruby script into executable.

http://www.erikveen....cript2exe/index.html

I tried Ruby recently, and I like it! Ruby is like the crazy Uncle who will let you do what ever you want.




mouser

  • First Author
  • Administrator
  • Joined in 2005
  • *****
  • Posts: 40,900
    • View Profile
    • Mouser's Software Zone on DonationCoder.com
    • Read more about this member.
    • Donate to Member
Re: Ruby executable
« Reply #1 on: July 19, 2006, 04:59 PM »
Ruby is like the crazy Uncle who will let you do what ever you want.
:lol:  :lol:  :lol:  :lol: :lol:  :lol:  :lol:  :lol: :lol:  :lol:  :lol:  :lol: :lol:  :lol:  :lol:  :lol: :lol:  :lol:  :lol:  :lol:

ps.
very nice find.  :Thmbsup:

mouser

  • First Author
  • Administrator
  • Joined in 2005
  • *****
  • Posts: 40,900
    • View Profile
    • Mouser's Software Zone on DonationCoder.com
    • Read more about this member.
    • Donate to Member
Re: Ruby executable
« Reply #2 on: July 19, 2006, 05:00 PM »
there are a lot of nice features of ruby, no doubt about it.
though i did decide it wasn't my perfect language: https://www.donation...dex.php?topic=4341.0

dironman

  • Participant
  • Joined in 2006
  • *
  • default avatar
  • Posts: 9
    • View Profile
    • Donate to Member
Re: Ruby executable
« Reply #3 on: July 20, 2006, 04:01 PM »
Also, here is a Python, Ruby, Java, C++ shoot out that I found very interesting.
Too bad perl wasn't included in this comparison.

http://dmh2000.com/cjpr/

Link to side by side comparison
http://www.dmh2000.c...m/cjpr/cmpframe.html

C++ vs Java
Java garbage collection is the big productivity gain
Java is significantly slower than C++
C++ is (much) harder to code correctly than any of the others
Java vs Python/Ruby
Python/Ruby interpreted execution and dynamic typing are big productivity gains over Java.
Python/Ruby are slower than Java
Python/Ruby programs need less extraneous scaffolding (cleaner code)
There are two important tradeoffs : [interpreted vs. compiled] and [static vs. dynamic typing]
Python vs. Ruby nearly equivalent