10 lines
256 B
Ruby
10 lines
256 B
Ruby
class MoviesController < ApplicationController
|
|
def index
|
|
@movies = ["Iron Man", "Batman"]
|
|
(0..15).each{ |num|
|
|
@movies.append(num.odd? ? "Batman" : "Iron Man")
|
|
@movies.append("Forrest Gump")
|
|
}
|
|
end
|
|
end
|