diff --git a/app/assets/javascripts/cooperates.js.coffee b/app/assets/javascripts/cooperates.js.coffee new file mode 100644 index 00000000..76156794 --- /dev/null +++ b/app/assets/javascripts/cooperates.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://jashkenas.github.com/coffee-script/ diff --git a/app/assets/stylesheets/cooperates.css.scss b/app/assets/stylesheets/cooperates.css.scss new file mode 100644 index 00000000..e362881e --- /dev/null +++ b/app/assets/stylesheets/cooperates.css.scss @@ -0,0 +1,3 @@ +// Place all the styles related to the cooperates 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/cooperates_controller.rb b/app/controllers/cooperates_controller.rb new file mode 100644 index 00000000..aecbb293 --- /dev/null +++ b/app/controllers/cooperates_controller.rb @@ -0,0 +1,6 @@ +class CooperatesController < ApplicationController + + def show + + end +end diff --git a/app/helpers/cooperates_helper.rb b/app/helpers/cooperates_helper.rb new file mode 100644 index 00000000..549246a0 --- /dev/null +++ b/app/helpers/cooperates_helper.rb @@ -0,0 +1,2 @@ +module CooperatesHelper +end diff --git a/spec/controllers/cooperates_controller_spec.rb b/spec/controllers/cooperates_controller_spec.rb new file mode 100644 index 00000000..d0a10335 --- /dev/null +++ b/spec/controllers/cooperates_controller_spec.rb @@ -0,0 +1,5 @@ +require 'rails_helper' + +RSpec.describe CooperatesController, :type => :controller do + +end