[Rails] Ubuntu 18.04 Wifi network issue

2018-08-30 Thread honey ruby
Hi Everyone, Need help on Ubuntu 18.04, can someone help me in suggesting any google group to fix it. Hp Laptop with Intel® Core™ i5-4200M CPU @ 2.50GHz × 4, I have updated my Ubuntu from 16.04 to 18.04 all was fine initially and updating my software as I get the updates. From past one week

Re: [Rails] Filters not working in activeadmin

2018-08-23 Thread honey ruby
Can anyone help me in this. Filter not working for model but data is displayed on index page. On Tue, Aug 21, 2018 at 11:23 AM honey ruby wrote: > Thank you @Karthikeyan for your response but, while displaying the index > page in activeadmin I have no issue, only using

Re: [Rails] Filters not working in activeadmin

2018-08-20 Thread honey ruby
e tables > from other DB's can be transferred to one DB and then you will feel like > king using rails. > > On Mon, Aug 20, 2018 at 3:55 PM honey ruby > wrote: > >> Hey all, >> >> Filters not working in activeadmin. I have multiple databases in my >> project a

[Rails] Filters not working in activeadmin

2018-08-20 Thread honey ruby
Hey all, Filters not working in activeadmin. I have multiple databases in my project and when use filter for a table which is there in other db (have multiple db in project) filters are not working. Model is not recognized by activeadmin. Can some one help me how to access a model which is

[Rails] Latitude and Longitude check with in range

2018-06-09 Thread honey ruby
Hi , I have city or county Lat and Long and if user inputs of lat and long are with in the city or county which I specify then I should allow him for next page else I need to block him and say we are not serving at that place. Using Geocoder I don't see any method to check lat and long with in

Re: [Rails] configuring yahoo mail in smtp

2017-02-22 Thread honey ruby
; > > On Tue, Feb 21, 2017 at 1:25 AM honey ruby <emailtohoneyr...@gmail.com> > wrote: > >> I have changed address to smtp.mail.yahoo.com but still the same.. no >> error but mails not delivered. >> >> On Tue, Feb 21, 2017 at 12:37 PM, nanaya <m...@0

Re: [Rails] configuring yahoo mail in smtp

2017-02-20 Thread honey ruby
I have changed address to smtp.mail.yahoo.com but still the same.. no error but mails not delivered. On Tue, Feb 21, 2017 at 12:37 PM, nanaya <m...@0paste.com> wrote: > Hi, > > On Tue, Feb 21, 2017, at 14:54, honey ruby wrote: > > Hi all, > > > > Am try

[Rails] configuring yahoo mail in smtp

2017-02-20 Thread honey ruby
Hi all, Am trying to send email with yahoo mail but it is not working but, with gmail works fine can someone correct me if anything is wrong in my smtp. production: :address: smtp.yahoo.mail.com :port: 587 :user_name: t...@yahoo.com :password: test

[Rails] 3 to 4 Millions of records in a single table

2016-12-14 Thread honey ruby
Hi, If there is millions of record in a single table of mysql db and it is already indexed and having such huge no of records will slow down the process of query. In such cases what are the steps need to take. Kindly give your suggestions. Thanks In Advance -- You received this

[Rails] Covert Hijiri Date to Gregorian Date

2015-12-16 Thread honey ruby
Hi, I want to convert Hijiri Date to Gregorian Date I have tried gem 'hijri2greg_date' but it is not showing correct Gregorian date. Is there any other gem which converts correctly and best way. Thanks in advance -- You received this message because you are subscribed to the Google Groups

Re: [Rails] Showing data in one cell of csv but in line

2015-10-28 Thread honey ruby
thank you. Let me check. On Tue, Oct 27, 2015 at 2:14 PM, Colin Law <clan...@gmail.com> wrote: > On 27 October 2015 at 06:37, honey ruby <emailtohoneyr...@gmail.com> > wrote: > > Hi all, > > > > I have to show data in csv in one cell but in new line. > >

[Rails] Selecting records of a column which has two values separated by comma

2015-10-28 Thread honey ruby
Hi all, In a table there is column called village which is text datatype. Now my question is few records will have 1,2 under village column some records will have only 2 or 1. when I do query I should be able to select those records which has 1,2 . If I want to select all the records of

Re: [Rails] Selecting records of a column which has two values separated by comma

2015-10-28 Thread honey ruby
thanks. I fixed it. Sure I will consider your suggestion. On Wed, Oct 28, 2015 at 1:50 PM, Colin Law <clan...@gmail.com> wrote: > On 28 October 2015 at 07:00, honey ruby <emailtohoneyr...@gmail.com> > wrote: > > Hi all, > > > > In a table there is column c

[Rails] Showing data in one cell of csv but in line

2015-10-27 Thread honey ruby
Hi all, I have to show data in csv in one cell but in new line. eg: 2015xyz 2014 abc How can I show this way using csv in rails. am using faster csv. Thanks -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To

[Rails] Skipping Couple of Validate Presence in model

2015-10-14 Thread honey ruby
Hi everyone, In a User model has 4 columns mandatory I have used validate presence true first_name, last_name, username, country. Now if the user is admin and when I want to update his details I don't want to check country I want validate presence part from country. In this case how can I do

Re: [Rails] Skipping Couple of Validate Presence in model

2015-10-14 Thread honey ruby
am using Rails 3.2.21 I forgot to mention that. Thanks On Wed, Oct 14, 2015 at 1:26 PM, honey ruby <emailtohoneyr...@gmail.com> wrote: > Hi everyone, > > In a User model has 4 columns mandatory I have used validate presence true > first_name, last_name, username, country.

Re: [Rails] Skipping Couple of Validate Presence in model

2015-10-14 Thread honey ruby
def only_for_admin self.admin end when I save things for admin... phone and next_of_name those fields are not allowing to save. Correct me if is not correct process. On Wed, Oct 14, 2015 at 1:59 PM, Colin Law <clan...@gmail.com> wrote: > On 14 October 2015 at 08:56, honey ruby <emailtohone

[Rails] Delayed JOB ISSUE

2013-11-22 Thread honey ruby
Hi all I am using delayed jobs to send sms I am using http://github.com/tobi/delayed_job/tree/master;. In my other website my delayed job is working fine. Recently I have took one new domain in the same server which I have my other app's which are working fine. Now the issue is after taking

Re: [Rails] Delayed JOB ISSUE

2013-11-22 Thread honey ruby
, honey ruby wrote: Hi all I am using delayed jobs to send sms I am using http://github.com/tobi/delayed_job/tree/master;. In my other website my delayed job is working fine. Recently I have took one new domain in the same server which I have my other app's which are working fine. Now

[Rails] After I save a record in table A I want to save the id of that record in table B Immediatly

2013-09-05 Thread honey ruby
Hi all I have two tables A and B I have saved a record in table A and I want to save the id of that record in table B. How Can I do that. Well I can do by search of same params which I save in Table A but I feel it is not that good approach. If the app is has multiple users than that is not

Re: [Rails] After I save a record in table A I want to save the id of that record in table B Immediatly

2013-09-05 Thread honey ruby
...@wdstudio.com wrote: On Sep 5, 2013, at 11:50 AM, Scott Ribe wrote: On Sep 5, 2013, at 9:47 AM, honey ruby emailtohoneyr...@gmail.com wrote: Hi all I have two tables A and B I have saved a record in table A and I want to save the id of that record in table B. How Can I do that. Well I

Re: [Rails] After I save a record in table A I want to save the id of that record in table B Immediatly

2013-09-05 Thread honey ruby
line so that id of that saved record will save in Table B And how should we approach this with out association if there is no rails only Ruby project help me on this On Thu, Sep 5, 2013 at 10:07 PM, Colin Law clan...@googlemail.com wrote: On 5 September 2013 17:12, honey ruby emailtohoneyr

[Rails] Shift from mongrel to webrick

2013-09-04 Thread honey ruby
Hi Everyone I have installed mongrel gem and in my dev I can able to run my app on mongrel but If I want to shift to webrick how can I shift easily with out uninstalling the mongrel gem Thanks in advance -- You received this message because you are subscribed to the Google Groups Ruby on

Re: [Rails] Shift from mongrel to webrick

2013-09-04 Thread honey ruby
for this thing On Wed, Sep 4, 2013 at 7:37 PM, Jordon Bedwell envyge...@gmail.com wrote: On Wed, Sep 4, 2013 at 9:01 AM, honey ruby emailtohoneyr...@gmail.com wrote: I have installed mongrel gem and in my dev I can able to run my app on mongrel but If I want to shift to webrick how can I

Re: [Rails] Shift from mongrel to webrick

2013-09-04 Thread honey ruby
Thanks Jordon it worked. On Wed, Sep 4, 2013 at 8:01 PM, Jordon Bedwell envyge...@gmail.com wrote: On Wed, Sep 4, 2013 at 9:21 AM, honey ruby emailtohoneyr...@gmail.com wrote: Thanks Jordon for your quick response I agree with you but I want to know is do we have any other way to shift

Re: [Rails] Shift from mongrel to webrick

2013-09-04 Thread honey ruby
I need some good tutorials to learn rails3 with detail any suggestions plz... On Wed, Sep 4, 2013 at 8:26 PM, honey ruby emailtohoneyr...@gmail.comwrote: Thanks Jordon it worked. On Wed, Sep 4, 2013 at 8:01 PM, Jordon Bedwell envyge...@gmail.comwrote: On Wed, Sep 4, 2013 at 9:21 AM, honey

[Rails] how to handle two different gem version using RVM

2013-09-02 Thread honey ruby
Hi Everyone, I have two projects one projects need gem version of 1.3.7 and another one 1.4.2 using RVM can we have two different gem versions. Thanks in advance -- You received this message because you are subscribed to the Google Groups Ruby on Rails: Talk group. To unsubscribe from

[Rails] Insert row in one table and after save I want that Id in another table to be saved

2013-08-30 Thread honey ruby
Hi all There is a scenario with 2 tables. I will insert the one row in table 1 and after I save my row in table one I want that Id to be saved in another table immediately how to approach this scenario. kindly help me Regards, Honey -- You received this message because you are

[Rails] Want to send password via SMS

2013-07-24 Thread honey ruby
Hi I am saving password with hashed_password and salt in table. Now I need to send those passwords via SMS can it be possible.Kindly give me some suggestion plz . Thanks in advance Cheers -- You received this message because you are subscribed to the Google Groups Ruby on Rails: Talk

Re: [Rails] Want to send password via SMS

2013-07-24 Thread honey ruby
THANKS DHEERAJ, IS IT IMPOSSIBLE FOR SURE On Wed, Jul 24, 2013 at 8:30 PM, Dheeraj Kumar a.dheeraj.ku...@gmail.comwrote: You cannot un-hash those passwords. So no, it is not possible. -- Dheeraj Kumar On Wednesday 24 July 2013 at 8:13 PM, honey ruby wrote: Hi I am saving password

Re: [Rails] Want to send password via SMS

2013-07-24 Thread honey ruby
ok On Wed, Jul 24, 2013 at 8:44 PM, Dheeraj Kumar a.dheeraj.ku...@gmail.comwrote: Even when you completely capitalize your question, yes. -- Dheeraj Kumar On Wednesday 24 July 2013 at 8:35 PM, honey ruby wrote: THANKS DHEERAJ, IS IT IMPOSSIBLE FOR SURE On Wed, Jul 24, 2013 at 8:30 PM

Re: [Rails] Want to send password via SMS

2013-07-24 Thread honey ruby
token if you need to send them something. ~Johnneylee On Jul 24, 2013 11:25 AM, honey ruby emailtohoneyr...@gmail.com wrote: ok On Wed, Jul 24, 2013 at 8:44 PM, Dheeraj Kumar a.dheeraj.ku...@gmail.com wrote: Even when you completely capitalize your question, yes. -- Dheeraj Kumar

Re: [Rails] Want to send password via SMS

2013-07-24 Thread honey ruby
going to help a user? On Jul 24, 2013 1:49 PM, honey ruby emailtohoneyr...@gmail.com wrote: Hi Johnneylee Rollins, I am not sending plain text kindly read above mail for what exactly I need. On Wed, Jul 24, 2013 at 10:18 PM, Johnneylee Rollins johnneylee.roll

Re: [Rails] Want to send password via SMS

2013-07-24 Thread honey ruby
I have already mention in my first message it self seem you missed that. I have no intention to waste some one's time. On Wed, Jul 24, 2013 at 11:53 PM, honey ruby emailtohoneyr...@gmail.comwrote: Well it wont help the user but it a strong password in rails. you can not retrieve that but you

Re: [Rails] Google-Maps-for-Rails

2013-02-12 Thread honey ruby
with address. On Mon, Feb 11, 2013 at 8:46 PM, Colin Law clan...@googlemail.com wrote: On 11 February 2013 10:25, honey ruby emailtohoneyr...@gmail.com wrote: Hey all, I am using google maps for rails gem. When I use this It is going with location not specific. Let say I am looking

[Rails] Google-Maps-for-Rails

2013-02-11 Thread honey ruby
Hey all, I am using google maps for rails gem. When I use this It is going with location not specific. Let say I am looking for a store location in Houston in Tx . The issue is, it is not locating exact store rather it is just locating only Huston. Can any one help me what to do.

Re: [Rails] Google-Maps-for-Rails

2013-02-11 Thread honey ruby
I used google_maps_for_rails gem. On Mon, Feb 11, 2013 at 3:55 PM, honey ruby emailtohoneyr...@gmail.comwrote: Hey all, I am using google maps for rails gem. When I use this It is going with location not specific. Let say I am looking for a store location in Houston in Tx . The issue

[Rails] Email with out SMTP Settings is it possible

2012-09-24 Thread honey ruby
Hi all can we send mails with out using SMTP settings. i want to send mails with out smtp is it possible? Thanks in advance -- You received this message because you are subscribed to the Google Groups Ruby on Rails: Talk group. To post to this group, send email to

[Rails] ActiveRecord Validations Not Working

2012-09-12 Thread honey ruby
Hi all i am learning Rails3.2.7 but by ActiveRecords Validations are not working. These are my User.rb class User ActiveRecord::Base attr_accessible :password, :fullname,:user_name ,:email,:company_name#,:terms_of_service,:password_confirmation validates :terms_of_service,

[Rails] PayPal

2012-08-10 Thread honey ruby
hi all im trying to implement paypal in my app can any one suggest me the best paypal method to go for. cheers -- You received this message because you are subscribed to the Google Groups Ruby on Rails: Talk group. To post to this group, send email to rubyonrails-talk@googlegroups.com. To

[Rails] Rspec

2012-08-03 Thread honey ruby
Hi all i'm trying to learn Rspec testing can anyone suggest me the best book to learn Rspec with good sample code. Thanks in advance -- You received this message because you are subscribed to the Google Groups Ruby on Rails: Talk group. To post to this group, send email to

[Rails] Testing Rails app

2012-08-02 Thread honey ruby
Hi everyone i want to test a rails app and i have no idea on testing the rails app. Can any guide me how to test a rails app and what are the best way to test an app. Thanks in advance -- You received this message because you are subscribed to the Google Groups Ruby on Rails: Talk group.

[Rails] Scheduling mails in rails 2.3.8

2012-07-20 Thread honey ruby
Hi all, -- You received this message because you are subscribed to the Google Groups Ruby on Rails: Talk group. To post to this group, send email to rubyonrails-talk@googlegroups.com. To unsubscribe from this group, send email to rubyonrails-talk+unsubscr...@googlegroups.com. To view this

[Rails] scheduling mail in 2.3.8

2012-07-20 Thread honey ruby
Hi all, -- You received this message because you are subscribed to the Google Groups Ruby on Rails: Talk group. To post to this group, send email to rubyonrails-talk@googlegroups.com. To unsubscribe from this group, send email to rubyonrails-talk+unsubscr...@googlegroups.com. To view this

[Rails] scheduling mails in 2.3.8

2012-07-20 Thread honey ruby
Hi all, How can i send mails in rails 2.3.8 and schedule them when i need it. i've tried with whenever gem but it did not work properly . can any one help me out . thanks in advance -- You received this message because you are subscribed to the Google Groups Ruby on Rails: Talk group.

[Rails] Does whenever gem work in Rails 3

2012-07-11 Thread honey ruby
Hi i want to send mails by scheduling it. i found whenever gem but i wanna know is does it work in rails3 Thanks in advance -- You received this message because you are subscribed to the Google Groups Ruby on Rails: Talk group. To view this discussion on the web visit

[Rails] How to use wheneverize gem

2012-07-04 Thread honey ruby
Hi all i'm trying to use wheneverize gem to schedule my mails and to run a specific file in controller.i tried but unable to send mails. i am using rails 2.3.8 and ruby 1.8.7 . ive followed the https://github.com/javan/whenever this link Thanks in advance -- You received this message because

[Rails] How to upload videos in Rails 3.2.3

2012-07-02 Thread honey ruby
Hi all i have a requirement to upload videos using rails. is there any plug-in to upload videos in rails for that ? Thanks in advance -- You received this message because you are subscribed to the Google Groups Ruby on Rails: Talk group. To view this discussion on the web visit

[Rails] how to create gemsets using rvm

2012-07-02 Thread honey ruby
Hi all ive installed rvm 1.8.7 and 1.9.2 when i select rvm 1.8.7 and when i try to create a gem set and install gems it is not installing it is asking from permissions. if i use sudo to install gems and then when i type gem list i can't any gem . where did i go wrong . correct me Thanks in

[Rails] How to create a Sub domain in Rackspace

2012-06-26 Thread honey ruby
hi all, i'm using a Rack Space server now i want to create a sub domain for my rails app.can any one help me out i have Google it but did not get correct link which can help me. Thanks in advance -- You received this message because you are subscribed to the Google Groups Ruby on Rails:

[Rails] how to update a table which is connected with joins

2012-06-12 Thread honey ruby
hi all there are two tables Student and Batch in there model i have has_and_belongs_to_many :graduated_batches, :class_name = 'Batch', :join_table = 'batch_students' in Student table and has_and_belongs_to_many :graduated_students, :class_name = 'Student', :join_table = 'batch_students' in

[Rails] how to connect rails app using monodb

2012-06-12 Thread honey ruby
hi all i ve installed monodb this is the first time ive installed it and don't have any idea how to use it. previously ive used MYSQL for my apps. now i want to use monodb . can any one help me out how to use monodb . does it have any interface just as MYSQL. as there is no yml file

[Rails] how to show photo preview in rails

2012-05-30 Thread honey ruby
hi all i'm trying to know how to show a photo preview before uploading a pic in rails can any one help me out . Thanks in advance -- You received this message because you are subscribed to the Google Groups Ruby on Rails: Talk group. To post to this group, send email to

[Rails] how to prevent the user from accessing the app.after logout with back button(rails only)

2012-05-10 Thread honey ruby
hi all after logging out of my site if i click back button it is going back to my app. how can i restrict this problem i have use before_filter also. thanks in advance -- You received this message because you are subscribed to the Google Groups Ruby on Rails: Talk group. To post to this

[Rails] how to encryption and decryption a string or integer in ruby

2012-05-10 Thread honey ruby
hi everyone i want to encrypt and decrypt a number or string in RoR. is there any gem or plug-in for that. thanks in advance -- You received this message because you are subscribed to the Google Groups Ruby on Rails: Talk group. To post to this group, send email to

[Rails] how to implement SSO in ruby

2012-05-08 Thread honey ruby
hi all i am trying to implement SSO in ruby on rails site . is there any chance to implement SSO . kindly help out Thanks in advance -- You received this message because you are subscribed to the Google Groups Ruby on Rails: Talk group. To post to this group, send email to

[Rails] how to run a cronjob in rackspace

2012-05-06 Thread honey ruby
hi everyone im trying to run the cronjob in rackspace server can anyone help me out how to run cronjob. before i used host getter server to run cronjobs with the help of cpanel when it comes to rackspace there is no cpanel .help me out guys.. thanks in advance -- You received this message

[Rails] unable to run a command in production

2012-04-13 Thread honey ruby
hi guys . i am trying to create a mailer in production i used this command ruby script/generate mailer cronjob . when i run the command it shows this error config.load_once_paths is deprecated and removed in Rails 3, please use autoload_once_paths instead config.load_once_paths= is deprecated and

[Rails] how to use resque

2012-04-12 Thread honey ruby
hi everyone can any one plz let me know how to use resque to send mails. thanks in advance -- You received this message because you are subscribed to the Google Groups Ruby on Rails: Talk group. To post to this group, send email to rubyonrails-talk@googlegroups.com. To unsubscribe from this

[Rails] how to use cronjob

2012-04-10 Thread honey ruby
hey everyone i want to send mails by scheduling the time dynamically.lets say in a single table i have all the employee logs who came at different timings.they are from different locations and departments. i want to send mails to different mails ids according to there location to there HR. can i

[Rails] how to use wicked_pdf

2012-03-28 Thread honey ruby
hi everyone i want to convert my html file to pdf. i thought of using prawn but i have to do coding for prawn pdf again but when i searched i found wicked pdf can any one help me out how to use wicked pdf. Thanks in advance -- You received this message because you are subscribed to

[Rails] RJS error: TypeError: Element.insert is not a function

2012-03-20 Thread honey ruby
hey guys i am trying to add a text filed dynamically following this link http://railscasts.com/episodes/74-complex-forms-part-2 i'm getting this following error RJS error: TypeError: Element.insert is not a function i have included the required javascript line also in application. but still

[Rails] Any grading scale plug-in in rails

2012-03-19 Thread honey ruby
Hey everyone i want different grade scales for different exams. so to develop from scratch i have no time . so are there any plug-in for such kind of thing .help me out plz... Thanks in advance -- You received this message because you are subscribed to the Google Groups Ruby on Rails: Talk

[Rails] PDF ERROR

2012-03-19 Thread honey ruby
hi everyone i am trying for a pdf report and when i do it i got the below error.Plz help me undefined method `header' for #Prawn::Document:0xb595d098 This is the code where i'm getting error pdf.header pdf.margin_box.top_left do if FileTest.exists?(#{RAILS_ROOT}/public/uploads/image/

[Rails] how to create text_fields dynamically

2012-03-19 Thread honey ruby
hi everyone i want to add text boxes dynamically in a form. how can i do that.can anyone help out Thanks in advance -- You received this message because you are subscribed to the Google Groups Ruby on Rails: Talk group. To post to this group, send email to rubyonrails-talk@googlegroups.com.

[Rails] how to use in_place_editor_field

2012-03-16 Thread honey ruby
hi everyone i wanna use in_place_editor_field i've installed the Plug- in and when i'm trying to use it. %= in_place_editor_field :subject, :credit_hour % i have added this line in view part and in_place_edit_for :subject, :credit_hour line in controller. Here :subject is model name and

[Rails] unable to interchange ruby versions using RVM

2012-03-06 Thread honey ruby
hi everyone i've installed RVM in ubuntu 11.04 which use this command use rvm 1.9.3 it is showing this thing No command 'use' found, did you mean: Command 'nse' from package 'ns2' (universe) Command 'muse' from package 'muse' (universe) Command 'uae' from package 'uae' (multiverse) use:

[Rails] unable to interchange ruby versions using RVM

2012-03-06 Thread honey ruby
hey guys i got the solutions -- You received this message because you are subscribed to the Google Groups Ruby on Rails: Talk group. To post to this group, send email to rubyonrails-talk@googlegroups.com. To unsubscribe from this group, send email to

[Rails] i wanna buy best rails tutorials

2012-02-28 Thread honey ruby
hey every one can any one suggest me which tutorial is best to learn rails3.i wanna buy it to learn rails3. Thanks in advance -- You received this message because you are subscribed to the Google Groups Ruby on Rails: Talk group. To post to this group, send email to

[Rails] ruby script/server is not working

2012-02-09 Thread honey ruby
hi everyone i just typed ruby script/server -d and then after when i type again it is not working. i got this error [2012-02-09 16:19:54] WARN TCPServer Error: Address already in use - bind(2) Exiting /usr/lib/ruby/1.8/webrick/utils.rb:73:in `initialize': Address already in use - bind(2)

[Rails] unable to create pdf

2012-02-03 Thread honey ruby
prawn (0.8.4) prawn-core (0.8.4) prawn-format (0.2.3) prawn-layout (0.8.4) prawn-security (0.8.4) the above gem ive used for pdf this is the error i get NoMethodError in Employee#profile_pdf Showing app/views/employee/profile_pdf.pdf.prawn where line #1 raised: undefined method `header' for

[Rails] can i have two rails versions

2012-02-03 Thread honey ruby
hey everyone i am using ubuntu 11.04 and i wanna install rails 3.0.0 now i have 2.3.8 rails and 1.8.7 ruby. how can i have both of them -- You received this message because you are subscribed to the Google Groups Ruby on Rails: Talk group. To post to this group, send email to

[Rails] how to add mysql in rails 3.2.1

2012-02-03 Thread honey ruby
hey everyone i have installed rails 3.2.1 and want to create app but i use mysql wht the gems need to add in gem file thanks in advance -- You received this message because you are subscribed to the Google Groups Ruby on Rails: Talk group. To post to this group, send email to

[Rails] how to uninstall rails completely

2012-02-03 Thread honey ruby
hey everyone i have installed rails3.0.0 in windows and my previous rails projects not working . so i wanna uninstall rails and then install from Scratch. thanks in advance -- You received this message because you are subscribed to the Google Groups Ruby on Rails: Talk group. To post to this

[Rails] Rdoc

2012-02-02 Thread honey ruby
hey everyone i was looking for a documentation for my project when i google it i found Rdoc but can not understand what exactly this Rdoc does. can any one help me to know about Rdoc. thanks in advance -- You received this message because you are subscribed to the Google Groups Ruby on Rails:

[Rails] WEB SERVICES

2012-01-24 Thread honey ruby
hey everyone can any one help me writing web services.i need web services in in my project. i know purpose of the web services but i have no idea how to write the web services. i refer few site but none of the sites gave a clear information. do i need any gems for web services how do i get the

[Rails] How to maintain multiple versions of rails in one PC

2012-01-24 Thread honey ruby
hey everyone i am using rails 2.3.8 and ruby 1.8.7 . i want to install rails 3 so how can i maintain 2 versions of rails in my pc. i wanna learn rails 3 and can any tell the major difference in 2.3.8 and rails 3. -- You received this message because you are subscribed to the Google Groups Ruby

[Rails] Selenium on rails

2012-01-03 Thread honey ruby
Hey every one i searched about the Selenium and found that is a framework and it is used to test the web application. there are different types of Selenium's but still not clear about the selenium what is the best part of it. can any one help me out any good links plz... Thanks in advance --

[Rails] Do's and Don'ts in ROR

2011-12-28 Thread honey ruby
hey everyone i wanna know Do's and Don'ts in ROR. if there are any such thing in ROR can anyone tell me . Thanks in advance -- You received this message because you are subscribed to the Google Groups Ruby on Rails: Talk group. To post to this group, send email to

[Rails] how to play video in ruby on rails

2011-12-28 Thread honey ruby
hey everyone i want to add a video and play it using ruby on rails . how can i do it. can anyone help me plzz.. Thanks in advance -- You received this message because you are subscribed to the Google Groups Ruby on Rails: Talk group. To post to this group, send email to

[Rails] ROR book links

2011-12-27 Thread honey ruby
hey everyone i want a nice book to learn ror. i knew the basics in ror, can anyone help me out to learn ror i need links of book which will help me. Thanks in advance -- You received this message because you are subscribed to the Google Groups Ruby on Rails: Talk group. To post to this group,

[Rails] Unable to send mails

2011-12-25 Thread honey ruby
hi everyone i used to send mails using ruby on rails but, all of a sudden i am unable to send mails. the code is fine when i use the same code in other systems i am able to send the mails.when it comes to my system i'm not able to send it. can any one help me out what might be the problem . i am

[Rails] Documentation to Installation Ruby on rails on Ubuntu 11.04

2011-12-25 Thread honey ruby
hey can any one help me out in install the ruby on rails on ubuntu 11.04. i need documentation how to do this i am new bee for ubutu . Thanks in advance -- You received this message because you are subscribed to the Google Groups Ruby on Rails: Talk group. To post to this group, send email

[Rails] How to split a array

2011-12-23 Thread honey ruby
hey everyone i want to split the array.This is the out put when i print array Khamar Md,2 hrs: 5 min,Accounts,Gandhinagar and i wanna split them and i want to print them in different columns in a table. %x=Array.new% %x=@late_commers.split(,)% % x.each do |late_commer| % td%=

[Rails] unable to send html format through mail

2011-11-16 Thread honey ruby
hi everyone out there when i am trying to send the mail with html tags i am getting the same tags in the mail. i have named the file with .html.erb only .please help me thanks in advance -- You received this message because you are subscribed to the Google Groups Ruby on Rails: Talk group. To

[Rails] date problem with the server

2011-11-11 Thread honey ruby
hi every one i have problem with the date with the server. i am from india . when i use Date.today before 12 in the morning hours IST . it is showing yesterday date in my website and after 12 it is fine it shows today's date. i am using wit UTC . now i cant go wit Time.Zone. i have to change lot

[Rails] how to run the ruby script/server when the system starts

2011-10-10 Thread honey ruby
hi i wanna run this command ruby script/server automatically when windows start. can any one help me out how to do this . thanks in advance -- You received this message because you are subscribed to the Google Groups Ruby on Rails: Talk group. To post to this group, send email to

[Rails] how to use google charts in ruby on rails

2011-09-13 Thread honey ruby
hey everyone i wanna use google charts in ruby on rails. can any one tell how to use . wht are the plug-in or gems needed . its urgent guys . Thanks in advance -- You received this message because you are subscribed to the Google Groups Ruby on Rails: Talk group. To post to this group, send

[Rails] calender_date_select

2011-08-27 Thread honey ruby
td class=col-1 div class=label-field-pair3 div class=text-input-bg3 %= exam_form.calendar_date_select :start_time % /div /div /td Error:`@new[exams]' is not allowed as an instance variable name wht shell i do .i have installed the gem also it is

[Rails] left menu for Fedena Project

2011-08-16 Thread honey ruby
i wanna add left menu in the http://demo.projectfedena.org/ login:admin password:admin123 as there is no left menu in that i thought of adding a left menu. can any one tell how to do that with ROR. -- You received this message because you are subscribed to the Google Groups Ruby on Rails: Talk

[Rails] Newbie of ROR

2011-08-12 Thread honey ruby
Can any one guide to to learn much easy and to learn great extent .i know the basic concepts of loop, form,link_to , redirect_to.then whats next .plz guide me to learn ROR -- You received this message because you are subscribed to the Google Groups Ruby on Rails: Talk group. To post to this

[Rails] different ways of getting the data from db

2011-08-12 Thread honey ruby
in how man ways can we get the data from the data base -- You received this message because you are subscribed to the Google Groups Ruby on Rails: Talk group. To post to this group, send email to rubyonrails-talk@googlegroups.com. To unsubscribe from this group, send email to

[Rails] ror basics

2011-08-11 Thread honey ruby
i need videos on ror basics -- You received this message because you are subscribed to the Google Groups Ruby on Rails: Talk group. To post to this group, send email to rubyonrails-talk@googlegroups.com. To unsubscribe from this group, send email to