Re: [Rails] Re: Can't say "Hello World"

2016-12-25 Thread Scott Jacobsen
My best guess since it is an execjs error is you don't have a javascript runtime installed. Be sure you have one of the execjs supported runtimes installed. https://github.com/sstephenson/execjs On Dec 25, 2016 6:04 AM, "Colin Law" wrote: > On 25 December 2016 at 12:28, Ad Rienks wrote: > >> Se

Re: [Rails] rvm install fails with configure: error: cannot run C compiled programs

2016-12-25 Thread Colin Law
On 19 December 2016 at 02:28, Walter Lee Davis wrote: > >> On Dec 18, 2016, at 9:06 PM, fugee ohu wrote: >> >> On Sunday, December 18, 2016 at 5:27:04 PM UTC-5, Colin Law wrote: >> On 18 December 2016 at 20:57, fugee ohu wrote: >> > no i don't have .rvmrc anywhere >> > >> > On Sunday, December 1

Re: [Rails] Re: Can't say "Hello World"

2016-12-25 Thread Colin Law
On 25 December 2016 at 12:28, Ad Rienks wrote: > Sergey, > > You created a controller and action, but did you create a view? Without a > view you can't see anything. I guess you see the Rails default screen. > Learn Rails through this free tutorial: https://www.railstutorial.org/book. > The first

[Rails] Re: Can't say "Hello World"

2016-12-25 Thread Ad Rienks
Sergey, You created a controller and action, but did you create a view? Without a view you can't see anything. I guess you see the Rails default screen. Learn Rails through this free tutorial: https://www.railstutorial.org/book. The first few chapters lead you to create a "Hello World" example.