Re: [Rails] [JOB] 90 Seconds seeks Ruby on Rails Developer

2012-05-15 Thread Kieran P
Hey Vishal, Yes, all applications welcome. Please follow the instructions in the email if you want to send in your details. Thanks, Regards Kieran On Monday, May 14, 2012 3:57:33 PM UTC+12, vishal wrote: > > Hello Sir, > > >I am Indian Ruby On Rails Developer.Can i app

[Rails] Re: [JOB] 90 Seconds seeks Ruby on Rails Developer

2012-05-15 Thread Kieran P
you'd prefer 11am-7pm, that'll work fine. Regards Kieran On Monday, May 14, 2012 11:31:43 AM UTC+12, Kieran P wrote: > > *90 Seconds seeks Ruby on Rails Developer* > > [the following was cross-posted to various mailing lists in New Zealand > and the United Kingdom - sorr

[Rails] [JOB] 90 Seconds seeks Ruby on Rails Developer

2012-05-13 Thread Kieran P
90 Seconds Developer Position” or something similar. Regards Kieran Pilkington Lead Developer - 90 Seconds -- 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] Re: How can I use option --bare in Rails 3.1 for CoffeeScript?

2011-05-27 Thread Kieran P
+1 This seems to affect functions too, since Coffeescript makes functions into vairables, and those variables aren't available outside of that scope. -- 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 r

Re: [Rails] Re: I18n in model validations: Possible or not?

2010-12-15 Thread Kieran P
want it to be lost when upgrading, put it in an all_extensions.rb initializer, like I did here: https://github.com/kete/kete/blob/master/config/initializers/all_extensions.rb#L98-107 Regards Kieran -------- Kieran Pilkington http://twitte

[Rails] Re: FOR or EACH?

2010-08-05 Thread Kieran P
Hey, I personally use .each, but if you're looking to squeeze every bit of performance from your app, use for, as it's about 7% faster than .each. http://rubybenchmark.com/reports/12 Regards Kieran On Aug 5, 1:26 am, Pale Horse wrote: > When looping through arrays. What'd yo

[Rails] Re: Rail2 and Rails3 beta3 process <%= 'hello' %> differently

2010-05-08 Thread Kieran P
Rails 3 escapes content by default now. See http://www.railsdispatch.com/posts/security for more details. So, now you have to use either: <%=raw 'hello' %> Or: <%= 'hello'.html_safe %> Regards Kieran On May 8, 2:37 pm, "dave4...@greatchiro.com"

[Rails] Re: How to replace mail_to in Rails 3?

2010-04-16 Thread Kieran P
<%= mail_to(...).html_safe %> Regards Kieran On Apr 16, 8:27 am, Paul Jonathan Thompson wrote: > On 16 April 2010 03:40, Joe Smith wrote: > > > "Paul Jonathan Thompson" wrote in message > >news:h2p603755611004142229h2d4f7013pde4320967c722...@mail.gmail.com... &

[Rails] Re: tiny mce and link to remote

2010-03-10 Thread Kieran P
n any partial you render via AJAX, make sure it is set to eval_scripts, and add this at the end of the partial. init_wysiwyg_editor(); Regards Kieran On Mar 9, 7:57 am, Hans wrote: > I uses tiny mce in my rails application successfully, but when I try > to use it in a form_for on a pag

[Rails] Re: for crontab

2009-09-22 Thread Kieran P
Or if you do better with screencasts: http://railscasts.com/episodes/164-cron-in-ruby Hope this helps. Regards Kieran On Sep 19, 7:33 pm, Preksha Patel wrote: > hi all, > > i haven't used cron yet but now i want to use it and got some idea > about cron from google but not e

[Rails] Re: Time.today?

2009-08-30 Thread Kieran P
You can do something like this (utilizing a Rails time method): class Time def self.today Time.now.beginning_of_day end end >> Time.today => Mon Aug 31 00:00:00 +1200 2009 Regards Kieran On Aug 29, 8:24 pm, Fernando Perez wrote: > > Time.today exists on 1.8.7, > &

[Rails] Re: Rails 2.3.x and active_scaffold Installation

2009-07-30 Thread Kieran P
You may not have Git installed. I ran into this issue before. Try the http protocol instead and see if that makes a difference. > script/plugin install http://github.com/activescaffold/active_scaffold.git Regards Kieran On Jul 30, 10:52 pm, seenu wrote: > the command i used > C:\Ins

[Rails] Re: mysql error on server

2009-07-16 Thread Kieran Mcgrady
First off I apologize for my language but I'm sure you can understand how frustrated I was. @Rick I tried data recovery tools but they couldn't find anything; all my files were completely gone. I had to reinstall leopard but thanks for the advice anyway. -- Posted via http://www.ruby-forum.c

[Rails] Re: mysql error on server

2009-07-15 Thread Kieran Mcgrady
> uninstall mysql following these steps: > > 1. Open Terminal > 2. sudo nano /etc/hostconfig > 3. Delete the following line: "MYSQLCOM=-YES-" > 4. CTRL+x > 5. y > 6. CTRL+m > 7. Make sure MySQL is not running > 8. Open Terminal > 9. sudo rm /usr/local/mysql > 10. sudo rm -rf /u

[Rails] [ANN] External Search Sources Rails Engine

2009-07-13 Thread Kieran P
t also has a heap of documentation about configurable settings, translating, styling id/classes, and testing. --- Credits --- This engine was co-designed by Kieran Pilkington ( http://github.com/KieranP ) and Walter McGinnis ( http://github.com/walter ). Kieran did the implementation and test

[Rails] Re: want to put processing logic in Controller but no strip_tags

2009-05-09 Thread Kieran P
See this note on getting strip_tags outside views: http://apidock.com/rails/ActionView/Helpers/SanitizeHelper/strip_tags#537-strip-tags-method-not-functioning-in-controllers-models-or-libs Regards Kieran On May 10, 1:43 am, Jian Lin wrote: > I want to put the processing logic in

[Rails] Re: Does anybody have simple example of Tiny_MCE working?

2009-03-12 Thread Kieran
. Regards Kieran On Mar 13, 9:14 am, InventoryTrackers wrote: > I've gotten my hopes up a few times and have gone through the many > Rails Tiny_MCE tutorials only to bomb out. > All of these tutorials are significantly different which leads me to > ask if anyone has a very simple

[Rails] Re: What's the latest on WYSIWYG editor integration with Rails?

2009-03-11 Thread Kieran
Hello Phillip, I maintain a plugin for TinyMCE in Rails. You can find it at: http://github.com/kete/tiny_mce It's pretty easy to install and setup. I have just noticed the new TinyMCE 3.2.2 has been released though, so will be updating that sometime within the next 24 hours. Regards K

[Rails] Re: spell check for tinyMCE

2009-02-26 Thread Kieran
Hey madhavi.k They should be compatible. I haven't gotten around to testing it though, so there might be an issue. I'll see if I can get time to test it this weekend. For reference, what Operating System, Ruby version, and Rails version are you using? Regards Kieran On Feb 2

[Rails] Re: Release: tiny_mce 3.2.1.1-1

2009-02-23 Thread Kieran
Hey again, Just realized I forgot to include a link to the plugin. You can find it at: http://github.com/kete/tiny_mce Regards Kieran On Feb 23, 8:06 pm, Kieran P wrote: > Hey, > > Announcing the release of tiny_mce plugin 3.2.1.1-1. > > Changelog: > > * Rewrote

[Rails] [ANN] Release: tiny_mce 3.2.1.1-1

2009-02-22 Thread Kieran P
/projects/14744-tiny_mce/tickets Regards Kieran -- Rails Developer Katipo Communications Ltd --~--~-~--~~~---~--~~ 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 r

[Rails] Re: tiny mce - different options for different actions in same controller?

2008-10-24 Thread Kieran P
if using_tiny_mce? # the rest of the application.html.erb code above end Hope this helps. Regards Kieran On Fri, Oct 24, 2008 at 3:27 AM, hading <[EMAIL PROTECTED]> wrote: > > Hi, > > I'm using the current TinyMCE plugin for rails (V. 3.2.0.2-1). I want > to know if th

[Rails] Re: Model.create(!) doesn't add to database, no errors..

2008-10-07 Thread Kieran P
Hello, The correct syntax is Model.create!(@attributes) with the bang/exclamation point (!) after create, before the parentheses (not in them). See http://apidock.com/rails/ActiveRecord/Validations/ClassMethods/create! Regards Kieran On Wed, Oct 8, 2008 at 5:33 AM, rpag <[EMAIL PROTEC

[Rails] Re: BackgrounDRB Configuration

2008-10-05 Thread Kieran P
or nothing). But for those that just use the .new_worker syntax, this will work just fine. See the "Installing from Git" section at http://backgroundrb.rubyforge.org/for how to obtain the latest version. Regards Kieran On Mon, Oct 6, 2008 at 12:00 PM, Adam <[EMAIL PROT

[Rails] Re: 0% experience

2008-09-18 Thread Kieran P
(check the screencasts) http://apidock.com/rails (I prefer ApiDock over http://api.rubyonrails.org/ because of the search and user comments, but they both have the same documentation I've found) http://www.tutorialspoint.com/ruby-on-rails-2.1/rails-preliminary.htm Regards Kieran On Thu, Sep 18,