Re: [Rails] MySQL gem installation with windows 7 64 bits

2015-01-21 Thread Thota praneeth
http://stackoverflow.com/questions/19014117/ruby-mysql2-gem-installation-on-windows-7 On Wed, Jan 21, 2015 at 12:54 PM, wrote: > ruby 2.0.0 + windows 7 + mysql 5 > > bundle install > > GemFile > > gem "mysql2", "~> 0.3.17" > while installing bundle in rails project i am getting this erro

Re: [Rails] How can I convert an ImageMagick shell script for use in my RoR project?

2014-04-09 Thread Thota praneeth
Hello Eric, I hope this is the one you need: system <<-COMMAND convert image.png -monochrome -format png -density 300 another_image.png COMMAND On Thu, Apr 10, 2014 at 5:25 AM, Eric Kornmeyer wrote: > I'm creating a project that lets u

Re: [Rails] Looking for Part-Time/Telecommmute Ruby on Rails Job

2014-01-27 Thread Thota praneeth
Hello, Yeah i'm having 2 years of experience in RoR and using html, css, jquery, haml and deploying in heroku. On Tue, Jan 28, 2014 at 12:25 PM, Swift Er wrote: > Hi everyone, > > I am in the market for a part-time and remote Ruby on Rails gig. I am > located in the bay area and I can m

Re: [Rails] Re: having problem to install the gem `mysql`

2013-09-20 Thread Thota praneeth
sudo apt-get install mysql-client libmysqlclient-dev sudo apt-get install mysql-server On Sat, Sep 21, 2013 at 2:29 AM, Love U Ruby wrote: > found the answer from this thread - > http://askubuntu.com/questions/17856/installing-mysql-ruby-gem > > -- > Posted via http://www.ruby-forum.com/. > > -

Re: [Rails] rendering instance value to partial views from controller

2013-04-05 Thread Thota praneeth
yeah i have changed to local variables and passed to partial by debugging in firefox i got the expected values in javascript(partial view) but graph is not displaying according to expected values On Fri, Apr 5, 2013 at 9:27 PM, Gintautas Šimkus wrote: > First of all I suggest you to try firebug

Re: [Rails] rendering instance value to partial views from controller

2013-04-04 Thread Thota praneeth
i have tried x1 and y1 also still i didn't get the graph it is showing empty page, but when i render that @x1 or x1 in text_field_tag it is displaying. How can i pass that variables in javascript On Fri, Apr 5, 2013 at 1:08 AM, Colin Law wrote: > On 4 April 2013 18:18, Praneeth wrote: > > hi i

Re: [Rails] Multiple image upload

2013-03-21 Thread Thota praneeth
My Solution is : add category field in table at the time of uploading create a folder having name of category and store that image in the respective category For ex: if you are uploading image belongs to school_pics category create a folder school_pics and store the respective images in that fold

Re: [Rails] Re: [JOBS] Seeking rockstar junior RoR dev for a startup [remote/London]

2013-01-08 Thread Thota praneeth
Hello, I have around 12 months exp in ruby on rails. I can work remotely. Can you give me some more details? On Wed, Jan 9, 2013 at 10:18 AM, Avi wrote: > Hello, > > I have around 8 months exp in ruby on rails. I can work remotely. Can you > give me some more details? > -- You received this

Re: [Rails] Re: Finding how many times was my website visited?

2012-12-19 Thread Thota praneeth
I hope you don't have * Track Model with date and IP fields. * On Wed, Dec 19, 2012 at 4:44 PM, Colin Law wrote: > On 19 December 2012 10:59, Crispin Schäffler > wrote: > > well... thats what happens if you write it quick and dirty. it was not > meant > > to be copy and paste... sorry... but wh

Re: [Rails] Re: Can anyone tell me about my website

2012-11-17 Thread Thota praneeth
submit your site to google crawlers, other directories and follow SEO rules. On Sat, Nov 17, 2012 at 12:16 PM, Fahim Patel wrote: > Follow SEO (Search Engine Optimization) fundamental rules. > It will help you. > > Thanks > > Best Regards > Fahim Babar Patel > > On Tuesday, November 13, 2012 12:

Re: [Rails] Any suitable gems for collaborating social networks ?

2012-11-07 Thread Thota praneeth
omniauth gem is available On Wed, Nov 7, 2012 at 5:43 PM, vibin raja wrote: > Hi, > > I'm searching for a suitable gem which can collaborate FB, Twitter, > Flicker ? > > Is any thing available for this ? > > Thanks in advance... > > -- > Posted via http://www.ruby-forum.com/. > > -- > You receiv

Re: [Rails] `method_missing_without_paginate': undefined method `class_attribute' for ActiveRecord::Base:Class

2012-10-16 Thread Thota praneeth
have you tried this command : rake gems:refresh_specs and have you install the paginate gem (gem install tism-will_paginate) -- 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@googlegroup

Re: [Rails] wickedpdf

2012-09-11 Thread Thota praneeth
Why don't you use prawn gem for pdf files -- 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...@

Re: [Rails] scheduling mails in 2.3.8

2012-07-23 Thread Thota praneeth
write the following code in development.rb config.action_mailer.raise_delivery_errors = false config.action_mailer.delivery_method = :smtp config.action_mailer.smtp_settings = { :tls => true, :enable_starttls_auto => true, :address => 'smtp.gmail.com', :port => 587, :authentication => :plain, :us

Re: [Rails] Re: How can I connect to existing database

2012-07-17 Thread Thota praneeth
mysql = Mysql.init() mysql.connect('localhost') mysql.select_db('test') mysql.query("DROP TABLE IF EXISTS rocks") mysql.query("CREATE TABLE rocks (id INT UNSIGNED NOT NULL AUTO_INCREMENT, PRIMARY KEY (id), rockname CHAR(20) NOT NULL);") mysql.query("INSERT INTO rocks values('Granite');") mysql.

Re: [Rails] Variable Access in Prawn

2012-07-17 Thread Thota praneeth
First install gem prawn Write the following code in the controller where you want to see the record in pdf take one instance variable ex: @xyz=(write query here) def report prawnto :prawn => { :page_size => 'A4', :left_margin => 10, :right_margin => 10, :top_margin => 10,

[Rails] Regrading Biometric

2012-06-03 Thread Thota praneeth
Hello, Is there any chance to integrate Biometric in RoR 2.3.8. If yes can you please tell me the process. -- 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