CSC/ECE 517 Fall 2013/ch1 1w24 nv: Difference between revisions

From Expertiza_Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 5: Line 5:
== Some important Gems that are useful in RAILS environment ==
== Some important Gems that are useful in RAILS environment ==


There are many gems which provide easy of functionality that can be included in the rails development environment. [http://bundler.io/ Bundler]is a useful gem that enables a developer to quickly add and manage gems in few lines of code.
There are many gems which provide easy of functionality that can be included in the rails development environment. [http://bundler.io/ Bundler]is a useful gem that enables a developer to quickly add and manage gems in a few lines of code.
 
We can classify the Gems based on the usage in different layers Model, View and Controller.
 
'''MODEL''' layer
 
'''Active Record Plugins'''
 
* [https://www.ruby-toolbox.com/projects/activerecord-jdbc-adapter '''activerecord-jdbc-adapter'''] AR-JDBC is a database adapter for Rails' ActiveRecord component designed to be used with JRuby built upon Java's JDBC API for database access. It allows to connect to virtually any JDBC-compliant database with your JRuby on Rails application.
 
 
'''Data Persistence'''

Revision as of 03:05, 14 September 2013

A Tour of Ruby Gems


Some important Gems that are useful in RAILS environment

There are many gems which provide easy of functionality that can be included in the rails development environment. Bundleris a useful gem that enables a developer to quickly add and manage gems in a few lines of code.

We can classify the Gems based on the usage in different layers Model, View and Controller.

MODEL layer

Active Record Plugins

  • activerecord-jdbc-adapter AR-JDBC is a database adapter for Rails' ActiveRecord component designed to be used with JRuby built upon Java's JDBC API for database access. It allows to connect to virtually any JDBC-compliant database with your JRuby on Rails application.


Data Persistence