walter/test/dummy/app/controllers/dashboard_controller.rb
Jonathan Abbett eff726c6f4
Placement documentation and Travis testing fixes (#49)
New documentation on placement options, fix for Travis testing of Rails 6+

- Resolves #48
- Resolves #50
2021-04-15 15:08:56 -04:00

9 lines
158 B
Ruby

# frozen_string_literal: true
class DashboardController < ApplicationController
def home; end
def other; end
def placement; end
def missing; end
end