Re: [Rails] [ANN] [PRIZE] Docker for Rails Developers - beta launch

2018-04-30 Thread Clayton Cottingham
Dang it already bought it! Great book Really helped me understand docker The part i am still trying to understand is how to reuse containers properly I've been trying to get some building automation apps running on it as proof of concept but I am contemplating if docker is even a good fit for

Re: [Rails] Using MySQL over Postgresql while Deploying my own host

2015-08-07 Thread Clayton Cottingham
If I have a choice I always use postgres. Mysql w it's default settings (among other things ) mishandles not null directives https://youtu.be/emgJtr9tIME (Sorry if youtube links aren't proper form) As well and this is just my opinion but having another database engine (innodb) do your transact

Re: [Rails] Convert rails application to windows executable

2015-06-22 Thread Clayton Cottingham
Try ocra On June 22, 2015 6:25:49 AM PDT, selva raj wrote: >Hi all, > > Is there any possibility to convert the Rails application to exe >file? if so please suggest me the solution or provide the link. > >Thanks >Selvaraj > >-- >You received this message because you are subscribed to the G

Re: [Rails] Searching in a Tree-Navigation

2015-06-16 Thread Clayton Cottingham
Have you checked out ancestry? https://github.com/stefankroes/ancestry On June 16, 2015 8:57:37 AM PDT, Donny Donselm wrote: >Hello Everyone, > >i am currently researching with what way i can best develop a >tree-hierarchy with a search function. > >So what i got: >I got a hierarchical database w

Re: [Rails] Installing ruby 2.1 and rails 4.2 in centos 7

2015-01-26 Thread Clayton Cottingham
One of the easiest ways is Add to Gemfile gem 'execjs' gem 'therubyracer' Then just run bundle install On 26 January, 2015 9:27:11 PM PST, Scott Ribe wrote: >On Jan 26, 2015, at 10:20 PM, Nanduchocom >wrote: >> >> >/usr/local/rvm/gems/ruby-2.1.2/gems/execjs-2.2.2/lib/execjs/runtimes.rb:51:in

Re: [Rails] How to insert multiple records into database using one form

2015-01-13 Thread clayton cottingham
i just searched google to figure this out a cpl days ago synopsis: use build http://archive.railsforum.com/viewtopic.php?id=717 On 2015-01-13, at 10:45 PM, Ephraim A. wrote: > I have 4 tables from the first table, I took all data from the two > columns and displayed it in the view. For each da

Re: [Rails] e-commerce

2014-12-03 Thread Clayton Cottingham
For ruby e commerce id suggest activemerchant.org to start with It has a plugin based system for the processor gateways. I have found that every processor gateways interface is different. Some run soap /wsdl, some are rest etc Hope that helps On 3 December, 2014 9:20:55 AM PST, Roelof Wobben

Re: [Rails] Cannot access image_path in library class

2014-10-05 Thread Clayton Cottingham
Might be a typo? Your second code snippet has my_assset.png On 5 October, 2014 9:47:23 AM PDT, Martin Trummer wrote: >Hi @ all, > >In a rails application I have a nested module in my library: > >module Foo > module Bar >def foo_bar > image_path("my_asset.png") >e

Re: [Rails] Re: Rails live video streaming..

2014-10-01 Thread Clayton Cottingham
Let me know if you need any help Ive beem playing w the html5 audio video stuffs and also have qtss and icecast2 servers setup On 30 September, 2014 10:32:53 PM PDT, Sai Ch wrote: >Finally man after long time one person reply for this question. > >Thanks @Clayton for your suggestion.I want to tr

Re: [Rails] Re: Rails live video streaming..

2014-09-30 Thread Clayton Cottingham
What are you trying to do? Couple things I'll mention now Html5 getusermedia you can grab a users webcam and mic If you are wanting to share vid streams youre going to need a server. Darwin qtss for mp4 or icecast2 which does theora vid. Then one just connects the users webcam source to the b

Re: [Rails] Web Server Error

2014-09-19 Thread Clayton Cottingham
Well if rails and gem are working I wonder: Have you installed the dev kit? Looks like the Json gem is failing because the dev kit isnt installed and it needs the build tools inside it If you have installed the dev kit make sure you follow its instructions. It probably the path issue your erro