a little file cleanup.

This commit is contained in:
2016-09-18 09:32:02 -05:00
parent b9177bb55d
commit 371a279d9e
12 changed files with 70 additions and 53 deletions

View File

@ -1,13 +0,0 @@
// Action Cable provides the framework to deal with WebSockets in Rails.
// You can generate new channels where WebSocket features live using the rails generate channel command.
//
//= require action_cable
//= require_self
//= require_tree ./channels
(function() {
this.App || (this.App = {});
App.cable = ActionCable.createConsumer();
}).call(this);

View File

@ -1,4 +0,0 @@
module ApplicationCable
class Channel < ActionCable::Channel::Base
end
end

View File

@ -1,4 +0,0 @@
module ApplicationCable
class Connection < ActionCable::Connection::Base
end
end

View File

@ -1,2 +0,0 @@
class ApplicationJob < ActiveJob::Base
end

View File

@ -1,4 +0,0 @@
class ApplicationMailer < ActionMailer::Base
default from: 'from@example.com'
layout 'mailer'
end