9 lines
189 B
Ruby
9 lines
189 B
Ruby
class MoviesController < ApplicationController
|
|
def index
|
|
@choices, @movies = Movie.all, []
|
|
(0..15).each{ |num|
|
|
@movies.append(@choices.sample())
|
|
}
|
|
end
|
|
end
|