stub Metadatum, Pipeline, PipelineInvocation
authorTom Clegg <tom@clinicalfuture.com>
Tue, 15 Jan 2013 23:05:07 +0000 (15:05 -0800)
committerTom Clegg <tom@clinicalfuture.com>
Tue, 15 Jan 2013 23:05:43 +0000 (15:05 -0800)
28 files changed:
app/assets/javascripts/metadata.js.coffee [new file with mode: 0644]
app/assets/javascripts/pipeline_invocations.js.coffee [new file with mode: 0644]
app/assets/javascripts/pipelines.js.coffee [new file with mode: 0644]
app/assets/stylesheets/metadata.css.scss [new file with mode: 0644]
app/assets/stylesheets/pipeline_invocations.css.scss [new file with mode: 0644]
app/assets/stylesheets/pipelines.css.scss [new file with mode: 0644]
app/controllers/metadata_controller.rb [new file with mode: 0644]
app/controllers/pipeline_invocations_controller.rb [new file with mode: 0644]
app/controllers/pipelines_controller.rb [new file with mode: 0644]
app/helpers/metadata_helper.rb [new file with mode: 0644]
app/helpers/pipeline_invocations_helper.rb [new file with mode: 0644]
app/helpers/pipelines_helper.rb [new file with mode: 0644]
app/models/metadatum.rb [new file with mode: 0644]
app/models/pipeline.rb [new file with mode: 0644]
app/models/pipeline_invocation.rb [new file with mode: 0644]
config/routes.rb
test/fixtures/metadata.yml [new file with mode: 0644]
test/fixtures/pipeline_invocations.yml [new file with mode: 0644]
test/fixtures/pipelines.yml [new file with mode: 0644]
test/functional/metadata_controller_test.rb [new file with mode: 0644]
test/functional/pipeline_invocations_controller_test.rb [new file with mode: 0644]
test/functional/pipelines_controller_test.rb [new file with mode: 0644]
test/unit/helpers/metadata_helper_test.rb [new file with mode: 0644]
test/unit/helpers/pipeline_invocations_helper_test.rb [new file with mode: 0644]
test/unit/helpers/pipelines_helper_test.rb [new file with mode: 0644]
test/unit/metadatum_test.rb [new file with mode: 0644]
test/unit/pipeline_invocation_test.rb [new file with mode: 0644]
test/unit/pipeline_test.rb [new file with mode: 0644]

diff --git a/app/assets/javascripts/metadata.js.coffee b/app/assets/javascripts/metadata.js.coffee
new file mode 100644 (file)
index 0000000..7615679
--- /dev/null
@@ -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/javascripts/pipeline_invocations.js.coffee b/app/assets/javascripts/pipeline_invocations.js.coffee
new file mode 100644 (file)
index 0000000..7615679
--- /dev/null
@@ -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/javascripts/pipelines.js.coffee b/app/assets/javascripts/pipelines.js.coffee
new file mode 100644 (file)
index 0000000..7615679
--- /dev/null
@@ -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/metadata.css.scss b/app/assets/stylesheets/metadata.css.scss
new file mode 100644 (file)
index 0000000..bcefd20
--- /dev/null
@@ -0,0 +1,3 @@
+// Place all the styles related to the Metadata controller here.
+// They will automatically be included in application.css.
+// You can use Sass (SCSS) here: http://sass-lang.com/
diff --git a/app/assets/stylesheets/pipeline_invocations.css.scss b/app/assets/stylesheets/pipeline_invocations.css.scss
new file mode 100644 (file)
index 0000000..cc3b7af
--- /dev/null
@@ -0,0 +1,3 @@
+// Place all the styles related to the PipelineInvocations controller here.
+// They will automatically be included in application.css.
+// You can use Sass (SCSS) here: http://sass-lang.com/
diff --git a/app/assets/stylesheets/pipelines.css.scss b/app/assets/stylesheets/pipelines.css.scss
new file mode 100644 (file)
index 0000000..fa5d69a
--- /dev/null
@@ -0,0 +1,3 @@
+// Place all the styles related to the Pipelines 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/metadata_controller.rb b/app/controllers/metadata_controller.rb
new file mode 100644 (file)
index 0000000..b7916d8
--- /dev/null
@@ -0,0 +1,2 @@
+class MetadataController < ApplicationController
+end
diff --git a/app/controllers/pipeline_invocations_controller.rb b/app/controllers/pipeline_invocations_controller.rb
new file mode 100644 (file)
index 0000000..4982ed7
--- /dev/null
@@ -0,0 +1,2 @@
+class PipelineInvocationsController < ApplicationController
+end
diff --git a/app/controllers/pipelines_controller.rb b/app/controllers/pipelines_controller.rb
new file mode 100644 (file)
index 0000000..61e5b24
--- /dev/null
@@ -0,0 +1,2 @@
+class PipelinesController < ApplicationController
+end
diff --git a/app/helpers/metadata_helper.rb b/app/helpers/metadata_helper.rb
new file mode 100644 (file)
index 0000000..300d90e
--- /dev/null
@@ -0,0 +1,2 @@
+module MetadataHelper
+end
diff --git a/app/helpers/pipeline_invocations_helper.rb b/app/helpers/pipeline_invocations_helper.rb
new file mode 100644 (file)
index 0000000..2d8ead4
--- /dev/null
@@ -0,0 +1,2 @@
+module PipelineInvocationsHelper
+end
diff --git a/app/helpers/pipelines_helper.rb b/app/helpers/pipelines_helper.rb
new file mode 100644 (file)
index 0000000..6837cde
--- /dev/null
@@ -0,0 +1,2 @@
+module PipelinesHelper
+end
diff --git a/app/models/metadatum.rb b/app/models/metadatum.rb
new file mode 100644 (file)
index 0000000..b1e9060
--- /dev/null
@@ -0,0 +1,2 @@
+class Metadatum < OrvosBase
+end
diff --git a/app/models/pipeline.rb b/app/models/pipeline.rb
new file mode 100644 (file)
index 0000000..1edeb60
--- /dev/null
@@ -0,0 +1,2 @@
+class Pipeline < OrvosBase
+end
diff --git a/app/models/pipeline_invocation.rb b/app/models/pipeline_invocation.rb
new file mode 100644 (file)
index 0000000..0da8709
--- /dev/null
@@ -0,0 +1,2 @@
+class PipelineInvocation < OrvosBase
+end
index aa86c032f6f42ab26bd59a5ae49f58a7f8b22791..6144b43d0d649d3fad363aeaef66c74b7c5893f8 100644 (file)
@@ -1,4 +1,13 @@
 Vcffarm::Application.routes.draw do
+  resources :pipelines
+
+
+  resources :pipeline_invocations
+
+
+  resources :metadata
+
+
   resources :collections
 
 
diff --git a/test/fixtures/metadata.yml b/test/fixtures/metadata.yml
new file mode 100644 (file)
index 0000000..c63aac0
--- /dev/null
@@ -0,0 +1,11 @@
+# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/Fixtures.html
+
+# This model initially had no columns defined.  If you add columns to the
+# model remove the '{}' from the fixture names and add the columns immediately
+# below each fixture, per the syntax in the comments below
+#
+one: {}
+# column: value
+#
+two: {}
+#  column: value
diff --git a/test/fixtures/pipeline_invocations.yml b/test/fixtures/pipeline_invocations.yml
new file mode 100644 (file)
index 0000000..c63aac0
--- /dev/null
@@ -0,0 +1,11 @@
+# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/Fixtures.html
+
+# This model initially had no columns defined.  If you add columns to the
+# model remove the '{}' from the fixture names and add the columns immediately
+# below each fixture, per the syntax in the comments below
+#
+one: {}
+# column: value
+#
+two: {}
+#  column: value
diff --git a/test/fixtures/pipelines.yml b/test/fixtures/pipelines.yml
new file mode 100644 (file)
index 0000000..c63aac0
--- /dev/null
@@ -0,0 +1,11 @@
+# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/Fixtures.html
+
+# This model initially had no columns defined.  If you add columns to the
+# model remove the '{}' from the fixture names and add the columns immediately
+# below each fixture, per the syntax in the comments below
+#
+one: {}
+# column: value
+#
+two: {}
+#  column: value
diff --git a/test/functional/metadata_controller_test.rb b/test/functional/metadata_controller_test.rb
new file mode 100644 (file)
index 0000000..ec39c56
--- /dev/null
@@ -0,0 +1,7 @@
+require 'test_helper'
+
+class MetadataControllerTest < ActionController::TestCase
+  # test "the truth" do
+  #   assert true
+  # end
+end
diff --git a/test/functional/pipeline_invocations_controller_test.rb b/test/functional/pipeline_invocations_controller_test.rb
new file mode 100644 (file)
index 0000000..3d22b75
--- /dev/null
@@ -0,0 +1,7 @@
+require 'test_helper'
+
+class PipelineInvocationsControllerTest < ActionController::TestCase
+  # test "the truth" do
+  #   assert true
+  # end
+end
diff --git a/test/functional/pipelines_controller_test.rb b/test/functional/pipelines_controller_test.rb
new file mode 100644 (file)
index 0000000..468bf6a
--- /dev/null
@@ -0,0 +1,7 @@
+require 'test_helper'
+
+class PipelinesControllerTest < ActionController::TestCase
+  # test "the truth" do
+  #   assert true
+  # end
+end
diff --git a/test/unit/helpers/metadata_helper_test.rb b/test/unit/helpers/metadata_helper_test.rb
new file mode 100644 (file)
index 0000000..d50e16c
--- /dev/null
@@ -0,0 +1,4 @@
+require 'test_helper'
+
+class MetadataHelperTest < ActionView::TestCase
+end
diff --git a/test/unit/helpers/pipeline_invocations_helper_test.rb b/test/unit/helpers/pipeline_invocations_helper_test.rb
new file mode 100644 (file)
index 0000000..bf0fca9
--- /dev/null
@@ -0,0 +1,4 @@
+require 'test_helper'
+
+class PipelineInvocationsHelperTest < ActionView::TestCase
+end
diff --git a/test/unit/helpers/pipelines_helper_test.rb b/test/unit/helpers/pipelines_helper_test.rb
new file mode 100644 (file)
index 0000000..2c4030a
--- /dev/null
@@ -0,0 +1,4 @@
+require 'test_helper'
+
+class PipelinesHelperTest < ActionView::TestCase
+end
diff --git a/test/unit/metadatum_test.rb b/test/unit/metadatum_test.rb
new file mode 100644 (file)
index 0000000..1fd95db
--- /dev/null
@@ -0,0 +1,7 @@
+require 'test_helper'
+
+class MetadatumTest < ActiveSupport::TestCase
+  # test "the truth" do
+  #   assert true
+  # end
+end
diff --git a/test/unit/pipeline_invocation_test.rb b/test/unit/pipeline_invocation_test.rb
new file mode 100644 (file)
index 0000000..df4bed2
--- /dev/null
@@ -0,0 +1,7 @@
+require 'test_helper'
+
+class PipelineInvocationTest < ActiveSupport::TestCase
+  # test "the truth" do
+  #   assert true
+  # end
+end
diff --git a/test/unit/pipeline_test.rb b/test/unit/pipeline_test.rb
new file mode 100644 (file)
index 0000000..ab21010
--- /dev/null
@@ -0,0 +1,7 @@
+require 'test_helper'
+
+class PipelineTest < ActiveSupport::TestCase
+  # test "the truth" do
+  #   assert true
+  # end
+end