Hi All: I have recently discover Heroku service for building applications. It is extremely useful and extremely easy to use. It is also based in Git a SCM system which is also revolutionazing the version control systems. To install Git, we could use this guide located on the progit or also you can see this [...]
Read more
jQuery is today the best js library, prototype is a challenger.The reasons why I think this are beautifully illustrated on the following post. To use jQuery in rails install the following plugin: ruby script/plugin install http://ennerchi.googlecode.com/svn/trunk/plugins/jrails Here is a list of existing functions which are available once we replace prototype+scriptacuolous for the jquery. Hopefully, this [...]
Read more
Un más ActivoRicordi ha estado en la conferencia Rails española. Un año más esta siendo una gran experiencia, un año más el software es la excusa para juntar gente brillante sobre un mismo techo y compartir que se esta haciendo cosas muy interesantes en este país relativos a la innovación. Muy lentamente se esta generando [...]
Read more
Hi All: I try to be fresh and publish new material, but sometimes when someone do something with excellence we only need to praise his work. Here a set of nice articles for explaining what it is routing in Rails from Daryn Holmes. !!Excellent Work!! Part 1 Beginners Tutorial: Routing in Rails 2.0 (with REST) [...]
Read more
Most of the articles and projects about Ruby on Rails do not cover the whole process of creating an open source slim project, the objective of these set of posts if cover the whole development process
Read more
We open a set of posts dedicated to mentioned Rails development tips or tricks which are often found in several articles: 1) Open several instances of a webrick server from the command line on MacOs X Leopard : This article is based on a similar tip provided for Windows OS by Mr. Arjun Ghosh. It [...]
Read more
He encontrado por casualidad una aplicación web para administradores de fincas y comunidades que se llama eFinca 2.0. Se trata de un proyecto o un negocio realizado por dos programadores de Ruby on Rails. Uno de ellos Vicent Gozalbes tiene un blog bastante interesante con un montón de recursos sobre Ruby on Rails. Feliz Año [...]
Read more
2. Una vez creados asignaremos las rutas restful dentro de la carpeta config/routes.rb Abrimos el fichero config/routes.rb, y introducimos las siguientes entradas: map.resources :usersmap.resource :account Para mapear los controladores vamos a utilizar las siguientes URLs para mapear la autentificación: map.signup ‘/signup’, :controller => ‘users’, :action => ‘new’ map.login ‘/login’, :controller => ‘account’, :action => ‘new’ [...]
Read more
Una de las mejores cosas que tiene “Rails” es lo sencillo que es gestionar todas las autorizaciones y la autentificación de los usuarios además de la razonable cantidad de “plugins” ya escritos. En cierta manera, aunque pueda parecer muy restrictivo sería genial que estuviese contenido ya dentro del mismo “framework” como un gestor de usuarios, [...]
Read more