Sha256: d383e99afe5940b1b195512e111a1d47cde6bd25c400e29223ca9069a1731856
Contents?: true
Size: 288 Bytes
Versions: 8
Compression:
Stored size: 288 Bytes
Contents
require_dependency "tech_radar/application_controller" module TechRadar class RingsController < ApplicationController def show tech_radar = TechRadar::Radar.new @all_ring_names = tech_radar.rings.map(&:name) @ring = tech_radar.ring(params[:id]) end end end
Version data entries
8 entries across 8 versions & 1 rubygems