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)
commit9bf6106036e93b544deebdb899363a656ddbd016
treecfaa06def36a9386fdae0d0ff434114707026641
parentf96f2375e4664dde3b359d65ec0b3e6104862520
stub Metadatum, Pipeline, PipelineInvocation
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]