Senior & Expert RoR Developers Discussion Forum by Nyros Technologies

HIRE Ruby on Rails Expert Developers Programmers Coders From India
Ruby on Rails PHP .Net Developers Community, Nyros Technologies, Kakinada
 
Log in  or IF not a member please REGISTER
Username:
Password:   


Keyword
Log in | Profile 

Search found 55 matches
Senior & Expert RoR Developers Discussion Forum by Nyros Technologies Index
Author Message
  Topic: Usage of build method in rails
ktulasi

Replies: 0
Views: 30

PostThe Mechanics of Ruby programming   Posted: Thu Jul 22, 2010 12:19 pm   Subject: Usage of build method in rails
Hi,

Build method in rails is very useful.build method is a method in active record base class.

collection.build(attributes = {}, …)

build is used in adding a record into a :has_many relat ...
  Topic: delayed_job plugin
ktulasi

Replies: 0
Views: 53

PostPlugins and Gems   Posted: Wed Jul 14, 2010 12:37 pm   Subject: delayed_job plugin
The delayed_job is a gem which is used for running jobs in background.The main purpose of running the jobs in the background is to speed up the user response or running periodic tasks.
Actually if y ...
  Topic: send_data and send_file in rails
ktulasi

Replies: 0
Views: 90

PostThe Mechanics of Ruby programming   Posted: Wed Jul 14, 2010 9:40 am   Subject: send_data and send_file in rails
send_data:
------------
send_data, Sends the given data to the browser. This method allows you to specify if the browser should display the response as a file attachment i.e. in a download or as in ...
  Topic: Placing Download option in rails application
ktulasi

Replies: 0
Views: 48

PostThe Mechanics of Ruby programming   Posted: Thu Jul 01, 2010 12:46 pm   Subject: Placing Download option in rails application
Placing a download option of a file/image is easy.Actually my requirement i did is.I am having an option of inserting a image or file into database,and whereas in show page i need to have a download o ...
  Topic: migration of rake task
ktulasi

Replies: 0
Views: 52

PostRails Database setup   Posted: Mon May 31, 2010 1:48 pm   Subject: migration of rake task
To migrate a rake task,

in my application in tasks folder i am having categories.rake file,
like

namespace :hello do

desc "Admin Data"


task :mytask => :environment do


...
  Topic: request_uri method
ktulasi

Replies: 0
Views: 66

PostAdvanced programming   Posted: Mon May 31, 2010 1:37 pm   Subject: request_uri method
In my rails application,i have a requirement that,the page after logged in need to redirect to page,what we clicked before login,that is

I have clicked on details page of jobs,as login required for ...
  Topic: regexp for removing all html tags
ktulasi

Replies: 0
Views: 61

PostThe Mechanics of Ruby programming   Posted: Mon May 31, 2010 12:55 pm   Subject: regexp for removing all html tags
The regexp for removing all the html tags like colors,anchoring,and images too,

that regexp is
gsub(/<\/?[^>]*>/, "")

In my application, i need to remove the images and style ...
  Topic: Concept of geocoding in rails
ktulasi

Replies: 0
Views: 85

PostPlugins and Gems   Posted: Sat May 29, 2010 7:20 am   Subject: Concept of geocoding in rails
Google Maps with the local search, there's a new geocoding plugin for RubyOnRails: http://geokit.rubyforge.org/

It a cool feature set, allowing us to do very easy geocode lookups and distance calcu ...
  Topic: Search engine optimization tips
ktulasi

Replies: 0
Views: 71

PostExperts Support & Chit Chat   Posted: Fri May 28, 2010 1:35 pm   Subject: Search engine optimization tips
Search Engine Optimization (SEO) is very useful for the success of almost every website. The majority of traffic to websites is brought in by search engines.

Keywords are an important part of SEO. ...
  Topic: Debugging in rails
ktulasi

Replies: 0
Views: 137

PostPlugins and Gems   Posted: Fri Apr 30, 2010 1:00 pm   Subject: Debugging in rails
Debugging is the process of finding and reducing the number of bugs, or defects, in a program.Debugging ranges, in complexity, from fixing simple errors to performing lengthy and tiresome tasks of dat ...
  Topic: Use of lib folder in the application
ktulasi

Replies: 0
Views: 82

PostThe Mechanics of Ruby programming   Posted: Thu Apr 29, 2010 6:21 am   Subject: Use of lib folder in the application
When we create an application in rails it creates the entire directory structure for the application.
In that lib is one of them,

In lib folder defaulty a tasks folder is generated.and we can wr ...
  Topic: pretty_flash plugin
ktulasi

Replies: 0
Views: 87

PostPlugins and Gems   Posted: Wed Apr 28, 2010 12:31 pm   Subject: pretty_flash plugin
pretty_flash plugin is used to provide pretty flash messages.

This plugin gives some methods that set flash message with style and with image.

Usage:
-------

1.download the plugin from,

h ...
  Topic: autocomplete plugin
ktulasi

Replies: 0
Views: 83

PostAdvanced programming   Posted: Wed Apr 28, 2010 10:52 am   Subject: autocomplete plugin
Auto complete plugin is used to find the text from the database.
When we have given a text field auto complete then when we enter a letter,it automatically views all the texts with that letter.This p ...
  Topic: write_attribute
ktulasi

Replies: 0
Views: 89

PostExperts Support & Chit Chat   Posted: Wed Apr 28, 2010 10:45 am   Subject: write_attribute
write_attribute(attr_name, value):
---------------------------------------
write_attribute is used to set the attr_name to a given value.Empty strings for fixnum and the float columns will turn to n ...
  Topic: Update_attribute vs Update_attributes
ktulasi

Replies: 0
Views: 137

PostA little Ruby programming (Basic programming in RoR)   Posted: Wed Apr 28, 2010 10:33 am   Subject: Update_attribute vs Update_attributes
update_attribute(name, value):
-------------------------------------

Updates a single attribute and saves the record without doing validation procedure. This one is very useful for boolean flags. ...
 
Page 1 of 4 Goto page 1, 2, 3, 4  Next
All times are GMT
Jump to:  

 latest topics 
 Topics   Replies   Author   Views   Last Post 
No new posts validates_multiparameter_assignments plugin usage:
0 vijayalakshmi 27 Wed Jul 28, 2010 4:24 am
vijayalakshmi View latest post
No new posts paperclip plugin usage in rails:
0 vijayalakshmi 23 Wed Jul 28, 2010 4:07 am
vijayalakshmi View latest post
No new posts Polymorphism
1 phani.galla 46 Tue Jul 27, 2010 3:27 pm
umamahesh_nyros View latest post
No new posts Deploying Ruby on Rails Application with Passenger
2 sivakrishna.m 630 Tue Jul 27, 2010 2:16 pm
criether View latest post
No new posts Steps to implement star-rating using acts_as_rateable plugin
0 vijayalakshmi 46 Mon Jul 26, 2010 5:47 am
vijayalakshmi View latest post
No new posts Twitter Retweet Integartion
0 Anu 41 Thu Jul 22, 2010 12:27 pm
Anu View latest post
No new posts Usage of build method in rails
0 ktulasi 30 Thu Jul 22, 2010 12:19 pm
ktulasi View latest post
No new posts Facebook Like Integration in Rails
0 Anu 53 Thu Jul 22, 2010 12:16 pm
Anu View latest post
No new posts Fshare in your Rails Application.
0 Anu 39 Thu Jul 22, 2010 12:10 pm
Anu View latest post
No new posts Installation of Postgresql in windows.
1 swaminadhan 198 Thu Jul 15, 2010 10:17 am
proximity3 View latest post




Hire an expert Ruby on Rails developer / coder / programmer or development team from India now!!

Other Forums : PHP   ::   .Net   |   Free unlimited HTML CSS templates download

Nyros Technologies   |   Kakinada City Portal   |   Developers Blog   |   About Ruby on Rails Experts   |   More