Re: [Rails] mobile development on ruby

2014-08-26 Thread André Orvalho
Hey guys, Thanks for your input. I have done API's before in rails and I understand and follow the advices on using a versioned API. I think what Collin was trying to say is in the beginning to get the app development going I should be using the common API, and after build a version API. I also

Re: [Rails] mobile development on ruby

2014-08-26 Thread Colin Law
On 26 August 2014 09:02, André Orvalho and...@benjamin.dk wrote: Hey guys, Thanks for your input. I have done API's before in rails and I understand and follow the advices on using a versioned API. I think what Collin was trying to say is in the beginning to get the app development going I

[Rails] Copying javascript files to destination assets directory (almost) without assets pipeline

2014-08-26 Thread Damjan Rems
In my project I am using ckeditor as default HTML editor. One of the strongest feature of ckeditor is that all its components are loaded from server when started and can thus be easily extended. Which is also a nightmare for rails developers because this problem cannot be solved by assets pipeline

[Rails] looking for virtual servers

2014-08-26 Thread manoj chakraborty
hey i am looking for virtual servers can any one help me ? -- You received this message because you are subscribed to the Google Groups Ruby on Rails: Talk group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscr...@googlegroups.com.

Re: [Rails] looking for virtual servers

2014-08-26 Thread Timothy Mukaibo
what sort of virtual servers are you looking for? I believe I have found a few. On 26 August 2014 20:48, manoj chakraborty manojblogs.deep...@gmail.com wrote: hey i am looking for virtual servers can any one help me ? -- You received this message because you are subscribed to the Google

[Rails] Re: Help with ckeditor image upload

2014-08-26 Thread frocco
I tried my rails app last night on my mac and it works fine. Today at work on my windows 7, it fails with [paperclip] Content Type Spoof: Filename cartoon_tire.jpg If I drop down to version 3 of paperclip, it works. -- You received this message because you are subscribed to the Google

[Rails] Re: Help with ckeditor image upload

2014-08-26 Thread Alexander Trust
Now you have an argument to tell your boss he or she should buy a Mac for you. :) On Tuesday, August 26, 2014 2:17:18 PM UTC+2, frocco wrote: I tried my rails app last night on my mac and it works fine. Today at work on my windows 7, it fails with [paperclip] Content Type Spoof: Filename

[Rails] Left Outer Join with multiple tables and group by counts

2014-08-26 Thread Ganesh Ranganathan
Hi, Is it possible to do a left outer join in Rails4. This is my model and I am trying to write a scope which will do a left outer join of users with the message, comments and likes tables and then group by id to get total count. So the final result set would be cuuser.*, message_count,

[Rails] app like seeddms

2014-08-26 Thread tom
hi, does anyone know about an rails-app like seeddms? thank you http://www.seeddms.org/ -- You received this message because you are subscribed to the Google Groups Ruby on Rails: Talk group. To unsubscribe from this group and stop receiving emails from it, send an email to

[Rails] Re: Help with ckeditor image upload

2014-08-26 Thread frocco
I won't hold my breath. :-) On Tuesday, August 26, 2014 8:42:48 AM UTC-4, Alexander Trust wrote: Now you have an argument to tell your boss he or she should buy a Mac for you. :) On Tuesday, August 26, 2014 2:17:18 PM UTC+2, frocco wrote: I tried my rails app last night on my mac and it

[Rails] Gem Mongoid: multiples order_by in embbeds_many not work?

2014-08-26 Thread Rodrigo Mendonça
Example: School embeds_many :students In rails console: School.first.students.order_by(:name.asc, :email.desc) Works with name. but why ordering from second field (email) not work?? It's a bug? I opened an issue in mongoid gem, but maybe it's a mongodb problem insted