Sha256: d0ac84df860f013ae6cc6ee69fcee4fc250f96d3156df558649f7eb9b14fe02b
Contents?: true
Size: 834 Bytes
Versions: 5
Compression:
Stored size: 834 Bytes
Contents
class ApplicationController < ActionController::Base protect_from_forgery with: :exception @@visualizations = { elections_2016: "Elections 2016", london_population: "London Population", london_population_area: "London Population - Area Chart", olympics_2016_medals: "Olympics 2016 Medals", iphones: "iPhones", polish_pms: "Polish Prime Ministers", man_vs_horse: "Man versus Horse Marathon", paradox: "Paradox Interactive Games", weather_in_london: "Weather in London", harry_potter: "Harry Potter Books", mtg_modern_creatures: "MTG: Creatures in Modern", mtg_modern_colors: "MTG: Spell Cards in Modern", star_trek_voyager: "Star Trek: Voyager", } def index @visualizations = @@visualizations end def visualization @visualizations = @@visualizations end end
Version data entries
5 entries across 5 versions & 1 rubygems