[Rails] [JOBS] Looking for full-stack dev Partner

2015-10-07 Thread Matthew Cordasco
We are a small but dedicated startup that is creating the next generation crowdsourcing platform. We have spent the past two years building and launching our product and are now gaining paying customers at a good clip. It's time for us to expand the core development team by adding another Part

[Rails] Active Record has_one through

2015-10-07 Thread Chris Berry
I have two tables in my app which I am attempting to relate through a join table. The Artist class which uses 'has_many through', works as expected. However, the Event class using 'has_one through', brings back nil. class Artist < ActiveRecord::Base has_many :artist_events, dependent: :destroy

Re: [Rails] Ruby on Rails way of managing views

2015-10-07 Thread Colin Law
On 7 October 2015 at 18:02, Taras Matsyk wrote: > Hi RoR experts, > > I have a really small question which is probably depends on a personal > taste but I want to know your opinion. > I was told that RoR is widely used to render erb files and allows to > deliver things faster however I do know abo

Re: [Rails] Ruby on Rails

2015-10-07 Thread Andrey Nering
There is also the oficial Getting Started guide: http://guides.rubyonrails.org/getting_started.html Em qua, 7 de out de 2015 às 09:34, James Jelinek escreveu: > Agreed, railstutorial.org is really good to get started. Thanks for > catching this! > > > On Oct 7, 2015, at 7:23 AM, Colin Law wrot

Re: [Rails] Best Cloud storage for documents

2015-10-07 Thread Hassan Schroeder
On Wed, Oct 7, 2015 at 10:05 AM, Mansi Shah wrote: > I have worked with AWS services but I am not aware of things to be considered > to cloud storage. Can you please explain me important criteria for that? No. Again: *what is your use case*? Stability/uptime guarantees, multi-region availabilit

Re: [Rails] Best Cloud storage for documents

2015-10-07 Thread Mansi Shah
I have worked with AWS services but I am not aware of things to be considered to cloud storage. Can you please explain me important criteria for that? And also the difference between various service providers facility? -- You received this message because you are subscribed to the Google Groups

[Rails] Ruby on Rails way of managing views

2015-10-07 Thread Taras Matsyk
Hi RoR experts, I have a really small question which is probably depends on a personal taste but I want to know your opinion. I was told that RoR is widely used to render erb files and allows to deliver things faster however I do know about the dark side of using the rails api and some js framewor

Re: [Rails] Best Cloud storage for documents

2015-10-07 Thread Hassan Schroeder
On Wed, Oct 7, 2015 at 9:16 AM, Mansi Shah wrote: > Yes cheapest as well as good facilities also. OK, still missing the point: What do you mean by "good"? What *exactly* do you care about? What do you mean by "cheapest"? Lowest bandwidth charges? Lowest storage charges? Some ratio of the two?

Re: [Rails] Best Cloud storage for documents

2015-10-07 Thread Mansi Shah
Yes cheapest as well as good facilities also. On Wednesday, October 7, 2015 at 8:57:10 PM UTC+5:30, Hassan Schroeder wrote: > > On Wed, Oct 7, 2015 at 7:23 AM, Mansi Shah > wrote: > > > Which company is providing best cloud storage facility for documents > > storage? > > "best" based on what

Re: [Rails] Best Cloud storage for documents

2015-10-07 Thread Hassan Schroeder
On Wed, Oct 7, 2015 at 7:23 AM, Mansi Shah wrote: > Which company is providing best cloud storage facility for documents > storage? "best" based on what criteria? > I need economy solution. So does "best" mean "cheapest"? -- Hassan Schroeder hassan.schroe...@gmail.co

Re: [Rails] Re: ActiveRecordAssociation

2015-10-07 Thread Colin Law
On 7 October 2015 at 14:30, peter williams wrote: > @Андрей Молчанов > I have a method add_product in the cart_model that's supposed to capture > the price from line_item. Within the new migration AddPriceToLineItem i was > given the hint > to iterate over the LineItem.all.each do |item| > >

[Rails] Re: How to write code to search serialize object in rails3 with PG sql

2015-10-07 Thread Matt Jones
On Tuesday, 6 October 2015 13:54:40 UTC-4, Arvind Vyas wrote: > > My code is this > {"1"=>"5", "2"=>"test", "3"=>"tes"}}, > view_cout: 1> > > How I can write code to search project from "my_data" key or value ? > > I have search and found there is one way by hstore we can achieve it ( > https:

[Rails] Best Cloud storage for documents

2015-10-07 Thread Mansi Shah
Hello, Which company is providing best cloud storage facility for documents storage? I need economy solution. Thank you. -- 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,

[Rails] Re: ActiveRecordAssociation

2015-10-07 Thread peter williams
@Андрей Молчанов I have a method add_product in the cart_model that's supposed to capture the price from line_item. Within the new migration AddPriceToLineItem i was given the hint to iterate over the LineItem.all.each do |item| add the product_price to each item in LineItem e

Re: [Rails] Ruby on Rails

2015-10-07 Thread James Jelinek
Agreed, railstutorial.org is really good to get started. Thanks for catching this! > On Oct 7, 2015, at 7:23 AM, Colin Law wrote: > > On 7 October 2015 at 13:11, Prashant Girennavar wrote: >> Hello Experts, >> >> I am new to RoR and have knowledge of programming(asp.net,c#). I wanted to >> s

Re: [Rails] Ruby on Rails

2015-10-07 Thread Ganesh Ranganathan
On Wed, Oct 7, 2015 at 5:41 PM, Prashant Girennavar wrote: > Can someone tell me, how to approach the learning of RoR? > ​Michael Hartl's tutorial is the best place to start for a beginner to Rails - https://www.railstutorial.org/ Thanks, Ganesh​ -- You received this message because you are

Re: [Rails] Ruby on Rails

2015-10-07 Thread Colin Law
On 7 October 2015 at 13:11, Prashant Girennavar wrote: > Hello Experts, > > I am new to RoR and have knowledge of programming(asp.net,c#). I wanted to > start of with Ruby as its framework like Rails,Dashing Etc excites me. I did > try going through some ebooks , but its kind of hard to understan

Re: [Rails] ActiveRecordAssociation

2015-10-07 Thread Colin Law
On 7 October 2015 at 12:03, Frederick Cheung wrote: > > > On Wednesday, October 7, 2015 at 8:32:58 AM UTC+1, Colin Law wrote: >> >> On 7 October 2015 at 00:26, peter williams wrote: >> >> It seems that section has been removed from the latest guides, I don't >> know why. Anyone know whether it w

Re: [Rails] Ruby on Rails

2015-10-07 Thread James Jelinek
Two sites that are pretty helpful that have screencasts are railscasts.com (older content but still good) and gorails.com. Check them out and get a feel for the framework. I think you’ll love it! -James > On Oct 7, 2015, at 7:11 AM, Prashant Girennavar wrote: > > Hello Experts, > > I am n

[Rails] Ruby on Rails

2015-10-07 Thread Prashant Girennavar
Hello Experts, I am new to RoR and have knowledge of programming(asp.net,c#). I wanted to start of with Ruby as its framework like Rails,Dashing Etc excites me. I did try going through some ebooks , but its kind of hard to understand the sytax and follow the flow of ruby on rails. Can someon

Re: [Rails] ActiveRecordAssociation

2015-10-07 Thread Frederick Cheung
On Wednesday, October 7, 2015 at 8:32:58 AM UTC+1, Colin Law wrote: > > On 7 October 2015 at 00:26, peter williams wrote: > > It seems that section has been removed from the latest guides, I don't > know why. Anyone know whether it was removed for a good reason? > > It was removed here: h

[Rails] I would like to invite for free programming Ruby on Rails course

2015-10-07 Thread madac1308
Discover our free Ruby on Rails web course: http://www.clab.type.pl/rails2/invitation/ -- 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+un

Re: [Rails] ActiveRecordAssociation

2015-10-07 Thread Colin Law
On 7 October 2015 at 00:26, peter williams wrote: > Hi people, > > > i'm new to rails and have difficulties in actively using the model > relationships. > I'm building an onlinestore with rails 4.2.4 following the book agile > development with rails 4. > The asignment is to create a migration that