summaryrefslogtreecommitdiff
path: root/application.rb
blob: a8ae5a87002c3a327b9b4972d8a446f15e58b126 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
require 'rubygems'
gem 'opentox-ruby-api-wrapper', '= 1.6.0'
[ 'sinatra', 'sinatra/url_for', 'opentox-ruby-api-wrapper' ].each do |lib|
  require lib
end

#unless(defined? LOGGER)
  #LOGGER = Logger.new(STDOUT)
  #LOGGER.datetime_format = "%Y-%m-%d %H:%M:%S "
#end

require "example.rb"

get '/examples/?' do
  LOGGER.info "list examples"
  content_type "text/plain"
  Example.transform_example
end

get '/prepare_examples/?' do
  LOGGER.info "prepare examples"
  content_type "text/plain"
  Example.prepare_example_resources
end

get '/test_examples/?' do
  LOGGER.info "test examples"
  content_type "text/plain"
  Example.test_examples
end

require "test/test_application.rb"
require "nightly/nightly_application.rb"

# order is important, first add example methods and reports, than validation 
# (otherwise sinatra will try to locate a validation with name examples or report)

require "report/report_application.rb"
require "validation/validation_application.rb"