-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathrails_app.rb
41 lines (33 loc) · 898 Bytes
/
rails_app.rb
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
# frozen_string_literal: true
require "rails"
require "action_controller/railtie"
require "active_support/railtie"
class TestApplication < Rails::Application
config.logger = Logger.new($stdout)
config.log_level = :fatal
config.consider_all_requests_local = true
config.eager_load = true
routes.append do
get "/hello/world" => "hello#world"
get "/hello/long" => "hello#long"
get "/hello/internal_server_error" => "hello#internal_server_error"
end
end
class HelloController < ActionController::API
def append_info_to_payload(payload)
super
payload[:custom_tag_from_rails] = "hello-world-from-rails"
payload[:custom_tag] = "hello-world"
end
def world
render json: { hello: :world }
end
def long
sleep(0.01)
render json: { good: :morning }
end
def internal_server_error
raise StandardError
end
end
TestApplication.initialize!