From b5b8b3ab6811fb0684a83ea692e46cbba36dcbf0 Mon Sep 17 00:00:00 2001 From: "leo.selig" Date: Thu, 4 Feb 2016 10:25:54 +0100 Subject: [PATCH] Add CodeHarborLink controller (leoselig/codeocean#2) --- app/assets/javascripts/code_harbor_link.js.coffee | 3 +++ app/assets/stylesheets/code_harbor_link.css.scss | 3 +++ app/controllers/code_harbor_link_controller.rb | 2 ++ app/helpers/code_harbor_link_helper.rb | 2 ++ 4 files changed, 10 insertions(+) create mode 100644 app/assets/javascripts/code_harbor_link.js.coffee create mode 100644 app/assets/stylesheets/code_harbor_link.css.scss create mode 100644 app/controllers/code_harbor_link_controller.rb create mode 100644 app/helpers/code_harbor_link_helper.rb diff --git a/app/assets/javascripts/code_harbor_link.js.coffee b/app/assets/javascripts/code_harbor_link.js.coffee new file mode 100644 index 00000000..24f83d18 --- /dev/null +++ b/app/assets/javascripts/code_harbor_link.js.coffee @@ -0,0 +1,3 @@ +# Place all the behaviors and hooks related to the matching controller here. +# All this logic will automatically be available in application.js. +# You can use CoffeeScript in this file: http://coffeescript.org/ diff --git a/app/assets/stylesheets/code_harbor_link.css.scss b/app/assets/stylesheets/code_harbor_link.css.scss new file mode 100644 index 00000000..3c615ada --- /dev/null +++ b/app/assets/stylesheets/code_harbor_link.css.scss @@ -0,0 +1,3 @@ +// Place all the styles related to the CodeHarborLink controller here. +// They will automatically be included in application.css. +// You can use Sass (SCSS) here: http://sass-lang.com/ diff --git a/app/controllers/code_harbor_link_controller.rb b/app/controllers/code_harbor_link_controller.rb new file mode 100644 index 00000000..a551e9b1 --- /dev/null +++ b/app/controllers/code_harbor_link_controller.rb @@ -0,0 +1,2 @@ +class CodeHarborLinkController < ApplicationController +end diff --git a/app/helpers/code_harbor_link_helper.rb b/app/helpers/code_harbor_link_helper.rb new file mode 100644 index 00000000..f1c55f9d --- /dev/null +++ b/app/helpers/code_harbor_link_helper.rb @@ -0,0 +1,2 @@ +module CodeHarborLinkHelper +end