12 lines
203 B
Ruby
12 lines
203 B
Ruby
class SourceFile < ApplicationRecord
|
|
include Dunlop::SourceFileModel
|
|
|
|
has_panda_original_file environments: %w[production staging]
|
|
|
|
setup_source_files %i[
|
|
my_source
|
|
]
|
|
|
|
activate_dunlop!
|
|
end
|