Archive for the 'Information' Category

Ruby on Rails Essentials

August 10th, 2009 | Category: Information

Because of its success, popularity and functionality, Ruby on Rails performs with an extensive variety of web servers and databases. Recommended for web servers would have to be Apache, lighttpd or nginx in place of Mongrel or it can be by means of FastCGI. Meanwhile, for database, the following have been suggested to be utilized: MySQL, PostgreSQL, SQLite, Oracle, SQL Server, DB2 and a lot more of servers that Ruby on Rails support and work well with. There is no limitation or strictly recommended on which operating system to use, but the best to make use of is a ‘nix-based one for deployment.

No comments

Who Uses Ruby on Rails?

July 11th, 2009 | Category: Information

When it comes to infrastructure, Ruby on Rails is all over it. From start-ups to non-profits for venture projects of businesses, Rails can handle it. It is the best tool for almost whichever kind of web application (software collaboration, community, e-commerce, content management, statistics, management, etc). Shopify, Yellow Pages , Backpack, Github and Twitter are only some of web sites that uses Ruby on Rails. These web sites have trusted Ruby on Rails do manage their web applications that is made easy to use for people browsing, customers and people in need of the information provided by the web site.

No comments

RIP – Shaking out RubyGems

June 23rd, 2009 | Category: Information

Rip has quietly been making its way out into the world of Ruby, but the power it holds within is seen as the next generation packaging for Ruby Apps. The system that has come out is on the “development alpha” stage which can be compared to the release candidates by which developers can begin to experiment and build applications with. They however stressed that the version out of the box is still to be finalized and should not be used for production till they get it fully tested and debugged for pending release. Read more

No comments

DebGem – Ruby for Debian and Ubuntu

May 23rd, 2009 | Category: Information

From Phusion, who is responsible for the rails deployment system, Passenger, announced the release of DebGem a powerful tool for RubyGem to APT conversion. With many system administrators preferring to use the APT package management for everything they wish to do on their systems, DebGem allows RubyGems to be packaged differently for deployment on Ubuntu and Debian. The addition of support for the two repositories, allows more flexibility and control, previously quite difficult solely with RubyGems. Read more

No comments

RubyMine 1.0

April 23rd, 2009 | Category: Information

Intelligent productivity enhancing development tools are some of the most powerful tools available to the many Ruby and Rails developers all over the world and with the release by JetBrains of RubyMine 1.0, it just got a whole lot better. Hailed as one of the best IDE’s yet to come out for use by developers, it has received quite a lot of attention since it was released partially last November. The development tool that is RubyMine performs a very comprehensive analysis of the whole project code and offers a sort of suggestions list as to the best-in-class code that till now hasn’t been seen in the world of Ruby. Read more

No comments

Ruby – More on Enterprise Deployments

March 23rd, 2009 | Category: Information

As the world turns, so does the commercialization of Ruby and Rails that have been going on two-pronged approach with respect to the strategies startups in the IT field who focus on them have been targeting. This goes to show that there is money to be made in open-source, ruby being one of the earliest forms of frameworks for open-sourced development, has been embraced and loved by many of their sponsors for more commercialized use. Read more

No comments

In-Fighting between GNU and Cisco

January 12th, 2009 | Category: Information

ciscoThe two are fighting over rights to the source code of Cisco’s products which have embedded code that makes them work which Cisco is denying to the many users of their products who may wish to modify their programming. Cisco is a major proponent of the Linux Kernel and the fight is seen as a conflict of interest for Read more

No comments

Ruby and Merb Merges

December 23rd, 2008 | Category: Information

Ruby on Rails and Merb has been trying to out do each other for a long time, trying to convince users to come over to their side. Well, today there is only one side as both have buried the hatchet and joined each other to form Rails 3.

We all realized that working together for a common good would be much more productive than duplicating things on each side of the fence. Merb and Rails already share so much in terms of design and sensibility that joining forces seemed like the obvious way to go. All we needed was to sit down for a chat and hash it out, so we did just that.

What this will mean in practice is that the Merb team is putting their efforts into bringing all of the key Merb ideas into Rails 3. Yehuda Katz will outright join the Rails core team, Matt Aimonetti will work on a new evangelism team, and Carl Lerche and Daniel Neighman (hassox) will be co-starring the effort to bring all this over. We’ve immortalized the merge with plaque page at rubyonrails.org/merb.

Always give peace a chance, I say.

Source

No comments

Simplicity is the Key

November 25th, 2008 | Category: Information

Image Source:farm2.static.flickr.com

It is quite interesting to recall how David Hansson, the creator of Ruby on Rails came up with this simple yet powerful tool for developers and programmers alike. Hansson, a native of Copenhagen has built an entire framework aiming to help simplify all the complexities of programming. And help developers save more time and energy thus be more productive with their work. It was his belief to look for alternative ways around the standard IDEAS of computer science that influence the work of programmers. This has led to so many complex product design, that would in turn lead to further complexity. He did not think of creating a complex framework for Google engineers to flock to. He instead concentrated on creating simple designs that would modify the database which developers face every time.

No comments

Ruby Migrations

October 06th, 2008 | Category: Information


Image Source: netbeans.org

Ruby Migrations support all the basic data types like string, text, integer, float, datetime, timestamp, time, date, binary and boolean.

  • string is basically used for small data types such as a title.
  • text is used for longer pieces of text data, such as the description.
  • float is used for decimals.
  • integer is used for whole numbers.
  • date and time is used to store either the date only or time only.
  • boolean is used for storing true or false values.
  • binary is used for storing data like images, audio, or movies.
  • datetime and timestamp is used to store the date and time into a column.

Rails Migration activities can be done using any front end GUI or direct on SQL prompt. Rails Migration makes all those activities very easy. Valid column options are: limit (:limit => “50”), default (:default => “blah”), null (:null => false implies Not Null)

No comments

Next Page »