[Rails] Creating AWS Buckets and Bucket Policies

2019-02-11 Thread David Merrick
Heads up for anyone creating AWS S3 Buckets. https://docs.aws.amazon.com/quickstarts/latest/s3backup/step-1-create-bucket.html https://amazon.qwiklabs.com/focuses/278?catalog_rank=%7B%22rank%22%3A2%2C%22num_filters%22%3A0%2C%22has_search%22%3Atrue%7D=catalog Cheers Dave -- You received this

Re: [Rails] Building basic airline reservation system with Ruby on Rails

2019-02-11 Thread Rob Jonson
> > Rails works perfectly fine without Javascript. I'm veering into the pedantic here... Rails certainly can work fine without Javascript. As you say in this booking example, you can certainly just re-render the page completely on the server (even if it is 'icky'!) However to really use rails

Re: [Rails] Building basic airline reservation system with Ruby on Rails

2019-02-11 Thread Rob Zolkos
This is totally doable without javascript.Rails works perfectly fine without Javascript. You will need to re-render the page from the server on any change/submit. That is ok (I suspect the exercise they are trying to teach you is that these sorts of interactions *can* be done in a server

Re: [Rails] Building basic airline reservation system with Ruby on Rails

2019-02-11 Thread Rob Jonson
> I sense that Ruby (on Rails) isn't particularly geared for this type of > interactivity. > It really is; It is not however geared for this type of interactivity if you need to exclude a key component of the ROR stack (javascript). In fact - you're not going to deliver your project at all