summaryrefslogtreecommitdiff
path: root/application.rb
blob: bbd599f2d4011ab91df50699fdb558831be52f37 (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

[ 'rubygems', 'sinatra', 'sinatra/url_for', 'opentox-ruby-api-wrapper', 'logger' ].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
  content_type "text/plain"
  Example.transform_example
end

get '/prepare_examples/?' do
  Example.prepare_example_resources
end

get '/test_examples/?' do
  Example.test_examples
end

# 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"