setup and rubocop corrections

This commit is contained in:
2018-11-10 10:40:22 -06:00
parent f09ea5faeb
commit 904a071fc0
39 changed files with 589 additions and 5 deletions

View File

@ -1,2 +1,4 @@
# frozen_string_literal: true
class ApplicationController < ActionController::API
end

View File

@ -1,2 +1,4 @@
# frozen_string_literal: true
class ApplicationJob < ActiveJob::Base
end

View File

@ -1,3 +1,5 @@
# frozen_string_literal: true
class ApplicationMailer < ActionMailer::Base
default from: 'from@example.com'
layout 'mailer'

View File

@ -1,3 +1,5 @@
# frozen_string_literal: true
class ApplicationRecord < ActiveRecord::Base
self.abstract_class = true
end

0
app/validators/.keep Normal file
View File