Re: [Rails] Open source support system architecture (ROR) query

2014-09-06 Thread Timothy Mukaibo
You have removed the two options that would allow you to do this. Why can't you make SupportProject a Rails engine, or break out some of it's functionality into Gems? On 6 September 2014 22:11, Vivek Sampara wrote: > Hi guys, > > Intro - Me and a few members have developed a self hosted suppor

[Rails] Foundation "switches"

2014-09-06 Thread Steven Cahill
Evening All Has anyone managed to get Foundation 5 switches to work in a rails app with a checkbox Thanks -- 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

[Rails] Re: is_a? returns false, though I think it should return true

2014-09-06 Thread Iazel
I think the cleanest solution is to use two function, one that use Fixnum and another for the Card. Obviously, the latter will internally use the first: def fn(a, b, n) # do stuff end def fc(a, b, c) fn(a, b, g(c)) end However, if you still don't like this, you can just check if the last p

[Rails] Understanding Rails internals

2014-09-06 Thread Iazel
Hello all, Is there any good resource where to start to understand how the various internal component of rails are glued together? Maybe a book that dissect this massive framework? Debugging it is never so simple, due to a lot of "magic" (aka meta programming) involved. Thanks :) -- You recei

[Rails] Re: problems while creating a new project in rails

2014-09-06 Thread Cristiano D.
thanks and sorry for the missing info about wich SO i'm using. (Ubuntu 14). -- Posted via http://www.ruby-forum.com/. -- 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, sen

Re: [Rails] problems while creating a new project in rails

2014-09-06 Thread Colin Law
On 6 September 2014 15:56, Cristiano D. wrote: > ... > Installing mysql2 (0.3.16) > Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native > extension. You are missing some dependencies required to build gems, but since you have not told us which OS you are using it is difficult t

[Rails] problems while creating a new project in rails

2014-09-06 Thread Cristiano D.
console: root@cristiano:/home/cristiano/src/rails_4_app_dev# rails new food_recipe_share -d mysql exist identical README.rdoc identical Rakefile identical config.ru identical .gitignore identical Gemfile exist app identical app/assets/javascripts/application.

[Rails] Re: How to configure default options of "ckeditor_rails" gem

2014-09-06 Thread Rasool SB
Hi Damjan Rems, Thank you so much for sharing your effort, it works superb. :) Regards, On Tuesday, 2 September 2014 16:18:38 UTC+5:30, Ruby-Forum.com User wrote: > > My solution is specific to CMS I am building. My biggest cracker at the > moment is documentation ;-) > > It took me abo

[Rails] Open source support system architecture (ROR) query

2014-09-06 Thread Vivek Sampara
Hi guys, Intro - Me and a few members have developed a self hosted support system on rails 4 and we are building more features around it so that projects can easily adapt it. Problem - Customizing the project for another client without effecting the core project. What we're trying to do -