lib/tramway/profiles.rb in tramway-profiles-1.3.1 vs lib/tramway/profiles.rb in tramway-profiles-1.3.2

- old
+ new

@@ -1,16 +1,14 @@ -require "tramway/profiles/engine" +# frozen_string_literal: true + +require 'tramway/profiles/engine' require 'tramway/profiles/generates/install_generator' module Tramway module Profiles class << self - def records=(models) - @records = models - end + attr_writer :records - def records - @records - end + attr_reader :records end end end