rails

TwitterFacebook
Get flash to fully experience Pearltrees
sphinx

activerecord

Run Fat Boy .net » Blog Archive » Rails Migrations - Command Lin

http://www.runfatboy.net/blog/2008/03/01/rails-migrations-command-line-power-in-20/ I absolutely loves Rails 2.0 and the command line conveniences it provides for the RESTful scaffolding and models. Here’s a couple of tricks to generate a migration to quickly to add/remove columns from an existing table. Assume you already have a table called ‘Users’.
Checkboxes are one of those things that look easy and should be easy, but they aren't always easy. I needed a solution that could create a checkbox list of languages that a user speaks. So I don't forget here's how to do it: The migrations are important. You have to be sure to exclude the id parameter when you create languages_users or you will get ' Mysql::Error: #23000Duplicate entry' due to the fact that ActiveRecord will try to store a value in the id field that indicates which model created the entry (User.languages << vs Langauges.users).

Checkbox list in Ruby on Rails using HABTM | Nobody Listens Anyw

http://www.justinball.com/2008/07/03/checkbox-list-in-ruby-on-rails-using-habtm/

Rails::Sublayouts

I was playing around with layouts in Rails the other day… I know, clearly I have too much time on my hands. But anyway, I found that you can fake a nested layout scheme in Rails by delegating view rendering to partials. As an added bonus, you don’t need to hack around with any of Rails’ internals to make it work. For example, let’s say I’m working on an application that has both a public layout and an admin layout. The public layout consists of tabs and a sidebar. http://mattmccray.com/archive/2007/02/19/Sorta_Nested_Layouts/
http://www.nullislove.com/2007/05/24/pagination-in-rails/

Null is Love » Blog Archive » Pagination in Rails

Pagination is extremely important in any web application. Let’s say a client has a database with 10,000 cars for sale. You, the intrepid web developer, are hired to build a web front end to the database.

rails::Full text search in Ruby on Rails 2 - MySQL

http://blog.zmok.net/articles/2006/09/04/full-text-search-in-ruby-on-rails-2-mysql My previous post compared MySQL and ferret full text search engines. For our project, the ferret was the winner. Nevertheless, I will try to show the beauty and simplicity of using MySQL indexes. Create table and indices First of all it is necessary to create table and the corresponding index. CREATE TABLE articles ( id integer NOT NULL PRIMARY KEY AUTO_INCREMENT , title varchar ( 20 ) , body varchar ( 100 ) , fulltext ( title, body ) ) engine = MyISAM;<BR>
http://guides.rubyonrails.org/command_line.html This Guide is based on Rails 3.0. Some of the code shown here will not work in earlier versions of Rails. 1 Command Line Basics There are a few commands that are absolutely critical to your everyday usage of Rails. In the order of how much you’ll probably use them are:

A Guide to The Rails Command Line

Alex Young: Rapid Rails Part 1: Command Line Mastery

Rapid Rails is a series of articles containing succinct tips to increase your productivity when working with Ruby on Rails . This is the first part, and shows you how to make the most of the command–line tools that come with Rails. Quickly generate migrations http://alexyoung.org/2008/03/27/rapid-rails-part-1-commandline-mastery/

Ruby on Rails 101

http://marklunds.com/s5/rails101/html/action_view_basics.html ActionView is the module in the ActionPack library that deals with rendering a response to the client. The controller decides which template and/or partial and layout to use in the response Templates use helper methods to format text, generate links, forms, and JavaScript. Templates that belong to a certain controller typically live under app/view/controller_name, i.e. templates for Admin::UsersController live under app/views/admin/users Templates shared across controllers are put under app/views/shared. You can render them with render :template => ‘shared/my_template’ You can have templates shared across Rails applications and render them with render :file => ‘path/to/template’ Templates have access to the controller objects flash, headers, logger, params, request, response, and session.
While working on a CRM system in Ruby on Rails 2.2 I needed to find a way to email one of the users a weekly report. The report would be generated from the PDF templates already integrated with the front-end using the RTex plug-in for Rails . The solution was to include the following in an ActionMailer model to render the view away from the controller and attach the result to an email.

Ruby on Rails « Gregory Doran

http://www.gregorydoran.co.uk/tag/ruby-on-rails/
http://pullmonkey.com/2008/7/25/using-a-database-to-populate-an-open-flash-chart-graph

Using a database to populate an Open Flash Chart graph

25 Jul Just got Archie Smuts comment asking how to populate a Open Flash Chart graph using results from a database . Just for reference, the code that follows represents this graph: <br /><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="600" height="300" id="chart_1217004188.58145" align="middle"><param name="allowScriptAccess" value="sameDomain" /><param name="movie" value="/projects/open-flash-chart.swf?data=%2Fprojects%2Fopen_flash_chart2%2Fusing_database" /><param name="quality" value="high" /><param name="bgcolor" value="#FFFFFF" /><embed src="/projects/open-flash-chart.swf?
About:- Using open flash chart you can represent your data in the form of different type of graphs. Install Files:-

Open Flash Chart | Ruby on Rails India, Ruby on Rails in India,

A Guide to Active Record Associations

1 Why Associations? Why do we need associations between models? Because they make common operations simpler and easier in your code. For example, consider a simple Rails application that includes a model for customers and a model for orders.
Sample Use Download the sample OFC2 project. rails testing_ofc_2 cd testing_ofc_2 script/plugin install git://github.com/pullmonkey/open_flash_chart.git If the above line did not work for you, you can also use http - script/plugin install http://github.com/pullmonkey/open_flash_chart.git script/generate controller test_it Add the following to the test_it_controller.rb in RAILS_ROOT/app/controllers: Add the following to index.html.erb in RAILS_ROOT/app/views/test_it/: Copy swfobject.js from the plugin's assets/ directory (will make this happen at install time later) to your RAILS_ROOT/public/javascripts directory Copy open-flash-chart.swf from the plugin's assets/ director to your RAILS_ROOT/public/ directory script/server Browse to http://localhost:3000/test_it Let me know how it goes, thanks. Sample Graphs View Source Code View Source Code

Projects: Open Flash Chart II Plugin for Ruby on Rails - Graphs