use ruby for what?

R

Ruby Newbee

May I ask, what jobs are you using ruby for?
For me I'm always doing the web development, so primarily use ruby for
the web projects.
Besides webdev, what's the other usage of ruby language?
Thanks for sharing.

Jenn.
 
F

Fleck Jean-Julien

Hello Jenn,

2010/1/3 Ruby Newbee said:
May I ask, what jobs are you using ruby for?

Well, on my part, I mainly use it for scripting purpose: updating part
of a static website via ftp checking only for modified files, creating
exercise sheets written in LateX from a pool of separate exercises
(and make it compute automatically numeric values), compute mean
values of marks from my students, organize all these datas into Tioga
graphs so to see their evolution over time, etc..

Every time I have something slightly repetitive to do on the computer,
I write or reuse a small ruby script to do the job for me.

Chandler ~>ls ~/bin/ruby/lib/*rb | wc
186 187 11140

Most of it have been written some years ago during my PhD where I had
a lot of data to process using different kind of techniques but there
are some scripts I continue to use on a daily basis today.

Cheers,

--=20
JJ Fleck
PCSI1 Lyc=E9e Kl=E9ber
 
M

Mohit Sindhwani

Ruby said:
May I ask, what jobs are you using ruby for?
For me I'm always doing the web development, so primarily use ruby for
the web projects.
Besides webdev, what's the other usage of ruby language?
Thanks for sharing.

Jenn.
Lots of data processing, quick proof-of-concept work, enterprise
integration, data analysis, applications, ... just not using it for
desktop GUI applications yet, but using it also for desktop command line
apps.

Cheers,
Mohit.
1/3/2010 | 5:50 PM.
 
P

Phillip Gawlowski

May I ask, what jobs are you using ruby for?
For me I'm always doing the web development, so primarily use ruby for
the web projects.
Besides webdev, what's the other usage of ruby language?
Thanks for sharing.

Prototyping, I've written a desktop app in it (a proper one, too!),
webdev (with Rails), scripting, useless little things that are none the
less fun.
 
U

Uwe Kubosch

Hi all!

We use Ruby (mostly JRuby) for

* Rails
* Thick clients on desktop (SWT)
* Thick clients embedded (SWT)
* Messaging with RabbitMQ
* Database processing with ActiveRecord
* Database schema management with ActiveRecord Migrations
Also on non-ruby projects!
* SMS applications
* OS Scripting like installation, maintenance, and backup
* System integration: file conversions, mail processing, ftp, etc
* + most anything we need to do :)

...and it is all great fun!

--
With kind regards
Uwe Kubosch
Kubosch Consulting
(e-mail address removed)
http://kubosch.no/
 
R

Robert Klemme

May I ask, what jobs are you using ruby for?
For me I'm always doing the web development, so primarily use ruby for
the web projects.
Besides webdev, what's the other usage of ruby language?
Thanks for sharing.

I use it for automation tasks which are too complex for Bourne Shell
scripts such as accessing Perforce repositories, analyzing and
manipulating Java and other source code, analyzing log files etc.

Kind regards

robert
 
B

Bertram Scharpf

Hi,

Am Sonntag, 03. Jan 2010, 17:44:27 +0900 schrieb Ruby Newbee:
May I ask, what jobs are you using ruby for?
For me I'm always doing the web development, so primarily use ruby for
the web projects.
Besides webdev, what's the other usage of ruby language?
Thanks for sharing.

Some years ago I even saw an /sbin/init (pid=1) written in Ruby.

Bertram
 
P

Phrogz

May I ask, what jobs are you using ruby for?

* Web Dev using Ramaze (my sites) and Sinatra (on Heroku).
* Automation: slurping information from Rally, generating executive
summaries of project statuses, and pushing it to a MediaWiki-based
corporate wiki.
* Code Generation: Using ERB to auto-generate hundreds of C++ files
based on XML source documents processed with REXML.
* Document Generation: Similarly, using ERB to generate HTML
documentation frameworks based on XML files describing a custom DOM
hierarchy.
* Day-to-day text munging: scanning, re-ordering, formatting, and
perhaps numbering whatever it is I happen to want to have done by a
computer instead of my fingers. Taking any menial task that would take
10 minutes to do by hand and reducing it to 2 minutes of (fun Ruby)
coding and 10s of watching it run.
 
D

Dido Sevilla

T24gU3VuLCBKYW4gMywgMjAxMCBhdCA0OjQ0IFBNLCBSdWJ5IE5ld2JlZSA8cnVieW5ld2JlZUBn
bWFpbC5jb20+IHdyb3RlOgo+IE1heSBJIGFzaywgd2hhdCBqb2JzIGFyZSB5b3UgdXNpbmcgcnVi
eSBmb3I/Cj4gRm9yIG1lIEknbSBhbHdheXMgZG9pbmcgdGhlIHdlYiBkZXZlbG9wbWVudCwgc28g
cHJpbWFyaWx5IHVzZSBydWJ5IGZvcgo+IHRoZSB3ZWIgcHJvamVjdHMuCj4gQmVzaWRlcyB3ZWJk
ZXYsIHdoYXQncyB0aGUgb3RoZXIgdXNhZ2Ugb2YgcnVieSBsYW5ndWFnZT8KPiBUaGFua3MgZm9y
IHNoYXJpbmcuCgpJIGhhdmUgc2V2ZXJhbCBkaXN0cmlidXRlZCBhcHBsaWNhdGlvbnMgYW5kIG5l
dHdvcmsgc2VydmVycyBiYXNlZCBvbgpSdWJ5LiAgSXQncyBwcm92ZW4gdG8gYmUgYSBwbGVhc2Fu
dCBsYW5ndWFnZSB0byB3cml0ZSBzdWNoIGNvZGUgaW4uCgotLSAK5pmu6YCa44GY44KD44Gq44GE
44Gu44GM5b2T54S244Gq44KJ562U44GI44KL56eB44Gv5L2V44GM44Gn44GN44KL77yfCuaZrumA
muOBp+OCguaZrumAmuOBmOOCg+OBquOBj+OBpuaEn+OBmOOCi+OBvuOBvuaEn+OBmOOCi+OBk+OB
qOOBoOOBkeOCkuOBmeOCi+OCiO+8gQpodHRwOi8vc3Rvcm13eXJtLmJsb2dzcG90LmNvbQo=
 
Z

Zigzag Chen

Ruby said:
May I ask, what jobs are you using ruby for?
For me I'm always doing the web development, so primarily use ruby for
the web projects.
Besides webdev, what's the other usage of ruby language?
Thanks for sharing.

Jenn.

#1. Rails for webdev
#2. Script for some data analyzing or effective tools
#3. Training: Good show cases for TDD and OO Programming

But above all is Use Ruby for FUN :)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,161
Messages
2,570,892
Members
47,428
Latest member
RosalieQui

Latest Threads

Top