Chaos Project

Game Development => General Discussion => Topic started by: bigace on November 04, 2013, 12:52:58 pm

Title: Ruby on Rails?
Post by: bigace on November 04, 2013, 12:52:58 pm
So a job recruiter called me today and saw that I had some skills in ruby and wanted to know if I would program in Ruby on Rails for their company that is a web-oriented environment.
QuoteOur client is looking for a well-rounded Quality Assurance Automation Engineer that is familiar with the growing technology landscape and desires to contribute in a fast-paced, web-oriented environment. This position requires a strong analytical sense combined with a dynamic, creative approach. You will be responsible for creating and executing plans and procedures used to ensure high levels of quality for complex, consumer-oriented, web-based applications.

The problem is I have no clue how Ruby on Rails looks. So my question is:

Any help is appreciated.
Title: Re: Ruby on Rails?
Post by: Ryex on November 05, 2013, 09:13:29 pm
well, Ruby on Rails is the industry name for the Rail ruby libary

Rails is a MVC (Modal view Control) framework for Ruby used to build a web aplication / website

basically it's a set of libraries for working with databases (inserting and finding data) and templateing webpages while providing a way to routing url's to specific ruby functions.

if you want to jump into it Rails for Zombies (http://railsforzombies.org/)  is a great tutorial.

CSS = Cascading style sheets http://www.w3schools.com/css/ (uses to define laout properties on webpages)
JSP = Java server page http://en.wikipedia.org/wiki/JavaServer_Pages (method to generate webpages with Java)
Javascript = arguable the most widely used programming language ever its teh language browsers use to script web pages http://www.w3schools.com/js/
Struts = http://struts.apache.org/ a MVC library for java
Ajax = a web programming method that lets a browser submit an async web request in the background on a page. it enables the webpage to update dynamically with new content with out the need to press the refresh button.

I hope this helps! and good luck. (To be honest I with job recruiters were phoning me, I'm a bit jealous )
Title: Re: Ruby on Rails?
Post by: Blizzard on November 06, 2013, 02:07:27 am
In other words: Imagine making web apps, but using Ruby instead of PHP. That's Ruby on Rails.