game_machine 0.0.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (273) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +4 -0
  3. data/Gemfile.lock +72 -0
  4. data/Rakefile +38 -0
  5. data/bin/game_machine +79 -0
  6. data/config/cluster.conf +65 -0
  7. data/config/config.example.yml +93 -0
  8. data/config/game_messages.proto +45 -0
  9. data/config/messages.proto +339 -0
  10. data/config/regions.example.yml +9 -0
  11. data/config/standalone.conf +36 -0
  12. data/db/do_not_delete +0 -0
  13. data/game_machine.gemspec +38 -0
  14. data/games/example/boot.rb +6 -0
  15. data/games/example/data/game_data.yml +13 -0
  16. data/games/example/lib/aggressive_npc.rb +176 -0
  17. data/games/example/lib/authentication_handler.rb +69 -0
  18. data/games/example/lib/chatbot.rb +61 -0
  19. data/games/example/lib/combat_controller.rb +145 -0
  20. data/games/example/lib/example_controller.rb +21 -0
  21. data/games/example/lib/game.rb +85 -0
  22. data/games/example/lib/models/attack.rb +9 -0
  23. data/games/example/lib/models/combat_update.rb +11 -0
  24. data/games/example/lib/models/player_command.rb +7 -0
  25. data/games/example/lib/models/user.rb +11 -0
  26. data/games/example/lib/models/vitals.rb +17 -0
  27. data/games/example/lib/npc.rb +111 -0
  28. data/games/example/lib/npc_group.rb +42 -0
  29. data/games/example/lib/npc_movement.rb +116 -0
  30. data/games/example/lib/player_manager.rb +58 -0
  31. data/games/example/lib/player_register.rb +80 -0
  32. data/games/example/lib/tracking_handler.rb +17 -0
  33. data/games/example/lib/zone_manager.rb +57 -0
  34. data/games/preload.rb +8 -0
  35. data/integration_tests/basic_spec.rb +68 -0
  36. data/integration_tests/bot_spec.rb +18 -0
  37. data/integration_tests/chat_spec.rb +45 -0
  38. data/integration_tests/distributed_spec.rb +34 -0
  39. data/integration_tests/entity_tracking_spec.rb +48 -0
  40. data/integration_tests/mono_spec.rb +16 -0
  41. data/integration_tests/objectdb_spec.rb +55 -0
  42. data/integration_tests/tcp_client_spec.rb +71 -0
  43. data/integration_tests/udp_client_spec.rb +61 -0
  44. data/integration_tests/udp_spec.rb +20 -0
  45. data/integration_tests/udt_client_spec.rb +23 -0
  46. data/integration_tests/udt_spec.rb +31 -0
  47. data/java/.gitignore +1 -0
  48. data/java/build.gradle +93 -0
  49. data/java/component.erb +396 -0
  50. data/java/gradle.properties +6 -0
  51. data/java/gradle/wrapper/gradle-wrapper.jar +0 -0
  52. data/java/gradle/wrapper/gradle-wrapper.properties +6 -0
  53. data/java/gradlew +164 -0
  54. data/java/gradlew.bat +90 -0
  55. data/java/local_lib/protostuff-compiler-1.0.7-jarjar.jar +0 -0
  56. data/java/settings.gradle +2 -0
  57. data/java/src/main/java/com/game_machine/core/ActorFactory.java +25 -0
  58. data/java/src/main/java/com/game_machine/core/ActorUtil.java +39 -0
  59. data/java/src/main/java/com/game_machine/core/CommandProxy.java +9 -0
  60. data/java/src/main/java/com/game_machine/core/EntitySerializer.java +66 -0
  61. data/java/src/main/java/com/game_machine/core/EventStreamHandler.java +43 -0
  62. data/java/src/main/java/com/game_machine/core/GameMachineLoader.java +25 -0
  63. data/java/src/main/java/com/game_machine/core/Grid.java +195 -0
  64. data/java/src/main/java/com/game_machine/core/GridValue.java +30 -0
  65. data/java/src/main/java/com/game_machine/core/IActorFactory.java +7 -0
  66. data/java/src/main/java/com/game_machine/core/NetMessage.java +28 -0
  67. data/java/src/main/java/com/game_machine/core/UdpServer.java +97 -0
  68. data/java/src/main/java/com/game_machine/core/UdpServerHandler.java +90 -0
  69. data/java/src/main/resources/game_machine.java.stg +738 -0
  70. data/java/src/main/resources/logback.xml +14 -0
  71. data/java/src/main/resources/logging.properties +3 -0
  72. data/java/src/main/resources/protostuff.properties +7 -0
  73. data/lib/game_machine.rb +85 -0
  74. data/lib/game_machine/actor.rb +7 -0
  75. data/lib/game_machine/actor/base.rb +184 -0
  76. data/lib/game_machine/actor/builder.rb +108 -0
  77. data/lib/game_machine/actor/development.rb +31 -0
  78. data/lib/game_machine/actor/factory.rb +35 -0
  79. data/lib/game_machine/actor/mono_actor.rb +89 -0
  80. data/lib/game_machine/actor/ref.rb +81 -0
  81. data/lib/game_machine/actor/reloadable.rb +98 -0
  82. data/lib/game_machine/actor/system.rb +32 -0
  83. data/lib/game_machine/akka.rb +98 -0
  84. data/lib/game_machine/app_config.rb +49 -0
  85. data/lib/game_machine/application.rb +181 -0
  86. data/lib/game_machine/auth_handlers/base.rb +21 -0
  87. data/lib/game_machine/auth_handlers/public.rb +34 -0
  88. data/lib/game_machine/bot/chat.rb +66 -0
  89. data/lib/game_machine/bot/client.rb +54 -0
  90. data/lib/game_machine/client_manager.rb +204 -0
  91. data/lib/game_machine/clients.rb +4 -0
  92. data/lib/game_machine/clients/client.rb +45 -0
  93. data/lib/game_machine/clients/tcp_client.rb +25 -0
  94. data/lib/game_machine/clients/test_client.rb +151 -0
  95. data/lib/game_machine/clients/udp_client.rb +25 -0
  96. data/lib/game_machine/clients/udt_client.rb +34 -0
  97. data/lib/game_machine/cluster_monitor.rb +115 -0
  98. data/lib/game_machine/commands.rb +23 -0
  99. data/lib/game_machine/commands/base.rb +21 -0
  100. data/lib/game_machine/commands/chat_commands.rb +88 -0
  101. data/lib/game_machine/commands/datastore_commands.rb +60 -0
  102. data/lib/game_machine/commands/grid_commands.rb +35 -0
  103. data/lib/game_machine/commands/message_helper.rb +25 -0
  104. data/lib/game_machine/commands/misc_commands.rb +29 -0
  105. data/lib/game_machine/commands/navigation_commands.rb +24 -0
  106. data/lib/game_machine/commands/player_commands.rb +28 -0
  107. data/lib/game_machine/commands/proxy.rb +16 -0
  108. data/lib/game_machine/console.rb +3 -0
  109. data/lib/game_machine/console/build.rb +74 -0
  110. data/lib/game_machine/console/install.rb +92 -0
  111. data/lib/game_machine/console/server.rb +120 -0
  112. data/lib/game_machine/data_store.rb +52 -0
  113. data/lib/game_machine/data_stores/couchbase.rb +18 -0
  114. data/lib/game_machine/data_stores/mapdb.rb +49 -0
  115. data/lib/game_machine/data_stores/memory.rb +35 -0
  116. data/lib/game_machine/data_stores/redis.rb +46 -0
  117. data/lib/game_machine/endpoints.rb +6 -0
  118. data/lib/game_machine/endpoints/mono_gateway.rb +87 -0
  119. data/lib/game_machine/endpoints/tcp.rb +51 -0
  120. data/lib/game_machine/endpoints/tcp_handler.rb +75 -0
  121. data/lib/game_machine/endpoints/udp.rb +88 -0
  122. data/lib/game_machine/endpoints/udp_incoming.rb +113 -0
  123. data/lib/game_machine/endpoints/udp_outgoing.rb +46 -0
  124. data/lib/game_machine/game_loader.rb +46 -0
  125. data/lib/game_machine/game_systems.rb +14 -0
  126. data/lib/game_machine/game_systems/agents/controller.rb +118 -0
  127. data/lib/game_machine/game_systems/chat.rb +256 -0
  128. data/lib/game_machine/game_systems/chat_manager.rb +108 -0
  129. data/lib/game_machine/game_systems/chat_topic.rb +36 -0
  130. data/lib/game_machine/game_systems/devnull.rb +13 -0
  131. data/lib/game_machine/game_systems/entity_loader.rb +12 -0
  132. data/lib/game_machine/game_systems/entity_tracking.rb +133 -0
  133. data/lib/game_machine/game_systems/local_echo.rb +16 -0
  134. data/lib/game_machine/game_systems/objectdb_proxy.rb +61 -0
  135. data/lib/game_machine/game_systems/private_chat.rb +20 -0
  136. data/lib/game_machine/game_systems/region_manager.rb +91 -0
  137. data/lib/game_machine/game_systems/region_service.rb +94 -0
  138. data/lib/game_machine/game_systems/region_settings.rb +13 -0
  139. data/lib/game_machine/game_systems/remote_echo.rb +14 -0
  140. data/lib/game_machine/game_systems/stress_test.rb +21 -0
  141. data/lib/game_machine/grid.rb +60 -0
  142. data/lib/game_machine/grid_replicator.rb +31 -0
  143. data/lib/game_machine/handlers/authentication.rb +55 -0
  144. data/lib/game_machine/handlers/game.rb +63 -0
  145. data/lib/game_machine/handlers/request.rb +80 -0
  146. data/lib/game_machine/hashring.rb +48 -0
  147. data/lib/game_machine/helpers/game_message.rb +159 -0
  148. data/lib/game_machine/helpers/state_machine.rb +29 -0
  149. data/lib/game_machine/java_lib.rb +51 -0
  150. data/lib/game_machine/logger.rb +39 -0
  151. data/lib/game_machine/message_buffer.rb +58 -0
  152. data/lib/game_machine/message_queue.rb +63 -0
  153. data/lib/game_machine/model.rb +125 -0
  154. data/lib/game_machine/models.rb +3 -0
  155. data/lib/game_machine/models/player_status_update.rb +8 -0
  156. data/lib/game_machine/models/region.rb +9 -0
  157. data/lib/game_machine/mono_server.rb +20 -0
  158. data/lib/game_machine/navigation.rb +4 -0
  159. data/lib/game_machine/navigation/detour.rb +20 -0
  160. data/lib/game_machine/navigation/detour_navmesh.rb +53 -0
  161. data/lib/game_machine/navigation/detour_path.rb +53 -0
  162. data/lib/game_machine/navigation/path.rb +31 -0
  163. data/lib/game_machine/object_db.rb +67 -0
  164. data/lib/game_machine/protobuf.rb +6 -0
  165. data/lib/game_machine/protobuf/game_messages.rb +24 -0
  166. data/lib/game_machine/protobuf/generate.rb +113 -0
  167. data/lib/game_machine/protobuf_extensions/entity_helper.rb +11 -0
  168. data/lib/game_machine/reloadable_monitor.rb +26 -0
  169. data/lib/game_machine/restart_watcher.rb +17 -0
  170. data/lib/game_machine/ruby_extensions/nilclass.rb +10 -0
  171. data/lib/game_machine/ruby_extensions/string.rb +17 -0
  172. data/lib/game_machine/scheduler.rb +23 -0
  173. data/lib/game_machine/securerandom.rb +6 -0
  174. data/lib/game_machine/settings.rb +11 -0
  175. data/lib/game_machine/system_monitor.rb +19 -0
  176. data/lib/game_machine/system_stats.rb +24 -0
  177. data/lib/game_machine/uniqueid.rb +23 -0
  178. data/lib/game_machine/vector.rb +95 -0
  179. data/lib/game_machine/version.rb +3 -0
  180. data/lib/game_machine/write_behind_cache.rb +164 -0
  181. data/mono/bin/csharp/common.xslt +109 -0
  182. data/mono/bin/csharp/csharp.xslt +628 -0
  183. data/mono/bin/csharp/descriptor.proto +533 -0
  184. data/mono/bin/csharp/protobuf-net.dll +0 -0
  185. data/mono/bin/csharp/protobuf-net.pdb +0 -0
  186. data/mono/bin/csharp/protobuf-net.xml +2879 -0
  187. data/mono/bin/csharp/protogen.exe.config +3 -0
  188. data/mono/bin/csharp/protogen.pdb +0 -0
  189. data/mono/bin/csharp/protogen_csharp.exe +0 -0
  190. data/mono/bin/csharp/vb.xslt +745 -0
  191. data/mono/bin/csharp/xml.xslt +26 -0
  192. data/mono/server/Makefile +6 -0
  193. data/mono/server/NLog.config +12 -0
  194. data/mono/server/NLog.dll +0 -0
  195. data/mono/server/actor.cs +37 -0
  196. data/mono/server/build.bat +3 -0
  197. data/mono/server/cscompmgd.dll +0 -0
  198. data/mono/server/iactor.cs +11 -0
  199. data/mono/server/message_router.cs +67 -0
  200. data/mono/server/message_util.cs +29 -0
  201. data/mono/server/messages.cs +1888 -0
  202. data/mono/server/protobuf-net.dll +0 -0
  203. data/mono/server/proxy_client.cs +73 -0
  204. data/mono/server/proxy_server.cs +30 -0
  205. data/mono/server/test_actor.cs +33 -0
  206. data/pathfinding/bin/premake4 +0 -0
  207. data/pathfinding/include/mesh_loader.h +28 -0
  208. data/pathfinding/include/pathfind.h +167 -0
  209. data/pathfinding/main.cpp +39 -0
  210. data/pathfinding/mesh_loader.cpp +108 -0
  211. data/pathfinding/pathfind.cpp +174 -0
  212. data/pathfinding/pathfinder.cs +66 -0
  213. data/pathfinding/premake4.lua +109 -0
  214. data/script/server.sh +109 -0
  215. data/script/watch.sh +11 -0
  216. data/spec/actor/actor_spec.rb +73 -0
  217. data/spec/actor/builder_spec.rb +56 -0
  218. data/spec/actor/ref_spec.rb +83 -0
  219. data/spec/application_spec.rb +7 -0
  220. data/spec/client_manager_spec.rb +171 -0
  221. data/spec/commands/chat_commands_spec.rb +38 -0
  222. data/spec/commands/datastore_commands_spec.rb +91 -0
  223. data/spec/commands/grid_commands_spec.rb +37 -0
  224. data/spec/commands/navigation_commands_spec.rb +51 -0
  225. data/spec/commands/player_commands_spec.rb +48 -0
  226. data/spec/commands_spec.rb +38 -0
  227. data/spec/data_stores/mapdb_spec.rb +46 -0
  228. data/spec/data_stores/redis_spec.rb +44 -0
  229. data/spec/game_systems/agents/controller_spec.rb +84 -0
  230. data/spec/game_systems/agents/test_agent.rb +10 -0
  231. data/spec/game_systems/agents/test_agent_config.rb +29 -0
  232. data/spec/game_systems/chat_manager_spec.rb +66 -0
  233. data/spec/game_systems/chat_spec.rb +187 -0
  234. data/spec/game_systems/entity_tracking_spec.rb +64 -0
  235. data/spec/game_systems/region_manager_spec.rb +138 -0
  236. data/spec/grid_spec.rb +37 -0
  237. data/spec/handlers/authentication_spec.rb +36 -0
  238. data/spec/handlers/game_spec.rb +49 -0
  239. data/spec/handlers/request_spec.rb +65 -0
  240. data/spec/hashring_spec.rb +59 -0
  241. data/spec/integration_helper.rb +120 -0
  242. data/spec/java_grid_spec.rb +89 -0
  243. data/spec/message_buffer_spec.rb +67 -0
  244. data/spec/message_expectations.rb +47 -0
  245. data/spec/message_queue_spec.rb +23 -0
  246. data/spec/misc_spec.rb +71 -0
  247. data/spec/model_spec.rb +103 -0
  248. data/spec/mono_spec.rb +36 -0
  249. data/spec/mono_test.rb +18 -0
  250. data/spec/navigation/detour_navmesh_spec.rb +34 -0
  251. data/spec/navigation/detour_path_spec.rb +25 -0
  252. data/spec/spec_helper.rb +40 -0
  253. data/spec/udp_server_spec.rb +10 -0
  254. data/spec/write_behind_cache_spec.rb +109 -0
  255. data/web/app.rb +131 -0
  256. data/web/config/trinidad.yml +4 -0
  257. data/web/controllers/auth_controller.rb +19 -0
  258. data/web/controllers/base_controller.rb +16 -0
  259. data/web/controllers/index_controller.rb +7 -0
  260. data/web/controllers/log_controller.rb +47 -0
  261. data/web/controllers/messages_controller.rb +59 -0
  262. data/web/controllers/player_register_controller.rb +15 -0
  263. data/web/log/development.log +1339 -0
  264. data/web/tmp/restart.txt +0 -0
  265. data/web/views/game_messages.haml +45 -0
  266. data/web/views/index.haml +6 -0
  267. data/web/views/layout.haml +41 -0
  268. data/web/views/logs.haml +32 -0
  269. data/web/views/player_register.haml +22 -0
  270. data/web/views/player_registered.haml +2 -0
  271. data/web/views/register_layout.haml +22 -0
  272. data/web/views/restart.haml +35 -0
  273. metadata +576 -0
@@ -0,0 +1,10 @@
1
+ require 'spec_helper'
2
+
3
+ module GameMachine
4
+
5
+ describe Endpoints::Udp do
6
+
7
+
8
+ end
9
+
10
+ end
@@ -0,0 +1,109 @@
1
+ require 'spec_helper'
2
+
3
+ module GameMachine
4
+ describe WriteBehindCache do
5
+
6
+ let(:entity) do
7
+ MessageLib::Entity.new.set_id('1')
8
+ end
9
+
10
+ let(:data_store) do
11
+ double("DataStore", :set => true, :get => nil, :shutdown => true)
12
+ end
13
+
14
+ subject do
15
+ ref = Actor::Builder.new(WriteBehindCache).test_ref
16
+ #props = JavaLib::Props.new(WriteBehindCache);
17
+ #ref = JavaLib::TestActorRef.create(Akka.instance.actor_system, props, WriteBehindCache.name);
18
+ ref.underlying_actor.stub(:schedule_queue_run)
19
+ ref.underlying_actor.stub(:schedule_queue_stats)
20
+ ref.underlying_actor.post_init
21
+ ref.underlying_actor
22
+ end
23
+
24
+ describe "#on_receive" do
25
+
26
+ before(:each) do
27
+ DataStore.stub(:instance).and_return(data_store)
28
+ subject.write_interval = 10
29
+ subject.max_writes_per_second = 100
30
+ end
31
+
32
+ context "receives a string message" do
33
+ it "check_queue message should call check_queue" do
34
+ subject.should_receive(:check_queue)
35
+ subject.on_receive('check_queue')
36
+ end
37
+
38
+ it "takes one message id from queue and writes it" do
39
+ data_store.should_receive(:set).exactly(2).times
40
+ 3.times do |i|
41
+ subject.on_receive(entity.clone.set_id(i.to_s))
42
+ end
43
+ sleep 0.200
44
+ subject.send(:check_queue)
45
+ end
46
+
47
+ it "queue_stats message should call queue_stats" do
48
+ subject.should_receive(:queue_stats)
49
+ subject.on_receive('queue_stats')
50
+ end
51
+ end
52
+
53
+ context "receives a protobuf message" do
54
+
55
+ it "new message should be written to cache" do
56
+ subject.on_receive(entity)
57
+ subject.cache.fetch(entity.id).should == entity
58
+ end
59
+
60
+ it "message not eligible for write should be enqueued" do
61
+ subject.on_receive(entity)
62
+ subject.on_receive(entity)
63
+ subject.queue.size.should == 1
64
+ end
65
+
66
+ it "saves to store with entity id and entity" do
67
+ data_store.should_receive(:set).with(entity.id,kind_of(java.lang.Object))
68
+ subject.on_receive(entity)
69
+ end
70
+
71
+ it "does not save if write on same id happens before write_interval has passed" do
72
+ data_store.should_receive(:set).with(entity.id,kind_of(java.lang.Object)).once
73
+ subject.on_receive(entity)
74
+ subject.on_receive(entity)
75
+ end
76
+
77
+ it "sequential writes of different id's should get saved" do
78
+ data_store.should_receive(:set).exactly(4).times
79
+ 4.times do |i|
80
+ subject.on_receive(entity.clone.set_id(i.to_s))
81
+ sleep 0.150
82
+ end
83
+ end
84
+
85
+ it "sequential writes that exceed max writes per second should be enqueued" do
86
+ subject.write_interval = -1
87
+ subject.max_writes_per_second = 1
88
+ data_store.should_receive(:set).exactly(1).times
89
+ subject.should_receive(:enqueue).exactly(2).times
90
+ 3.times do |i|
91
+ subject.on_receive(entity.clone.set_id(i.to_s))
92
+ end
93
+ end
94
+
95
+ it "sequential writes of existing messages that exceed write_interval should be enqueued" do
96
+ subject.write_interval = 100000
97
+ subject.max_writes_per_second = -1
98
+ data_store.should_receive(:set).exactly(1).times
99
+ subject.should_receive(:enqueue).exactly(3).times
100
+ 4.times do |i|
101
+ subject.on_receive(entity.set_id('11'))
102
+ end
103
+ end
104
+ end
105
+
106
+ end
107
+ end
108
+ end
109
+
data/web/app.rb ADDED
@@ -0,0 +1,131 @@
1
+ require 'json'
2
+ require 'sinatra/base'
3
+ require 'sinatra/multi_route'
4
+
5
+ require_relative 'controllers/base_controller'
6
+ require_relative 'controllers/index_controller'
7
+ require_relative 'controllers/messages_controller'
8
+ require_relative 'controllers/auth_controller'
9
+ require_relative 'controllers/log_controller'
10
+ require_relative 'controllers/player_register_controller'
11
+
12
+
13
+ class WebApp < Sinatra::Base
14
+ CONTROLLERS = {}
15
+ set :bind, GameMachine::Application.config.http_host
16
+ set :port, GameMachine::Application.config.http_port
17
+ set :root, File.expand_path(File.dirname(__FILE__))
18
+ set :environment, :development
19
+ mime_type :proto, 'application/octet-stream'
20
+
21
+ register Sinatra::MultiRoute
22
+
23
+ def base_uri
24
+ host = GameMachine::Application.config.http_host
25
+ port = GameMachine::Application.config.http_port
26
+ "http://#{host}:#{port}"
27
+ end
28
+
29
+ def controller(name)
30
+ case name
31
+ when :index
32
+ CONTROLLERS[name] ||= Web::Controllers::IndexController.new
33
+ when :auth
34
+ CONTROLLERS[name] ||= Web::Controllers::AuthController.new
35
+ when :messages
36
+ CONTROLLERS[name] ||= Web::Controllers::MessagesController.new
37
+ when :log
38
+ CONTROLLERS[name] ||= Web::Controllers::LogController.new
39
+ when :player_register
40
+ CONTROLLERS[name] ||= Web::Controllers::PlayerRegisterController.new
41
+ end
42
+ end
43
+
44
+
45
+ get '/player_register' do
46
+ @content = {}
47
+ haml :player_register, :layout => :register_layout
48
+ end
49
+
50
+ post '/player_register.html' do
51
+ @content = controller(:player_register).set_request(request,params).create
52
+ if @content['error']
53
+ haml :player_register, :layout => :register_layout
54
+ else
55
+ haml :player_registered, :layout => :register_layout
56
+ end
57
+ end
58
+
59
+ post '/player_register.json' do
60
+ content = controller(:player_register).set_request(request,params).create
61
+ JSON.generate(content)
62
+ end
63
+
64
+ get '/' do
65
+ if request.params['restarted']
66
+ @restarted = true
67
+ end
68
+ haml :index
69
+ end
70
+
71
+ get '/alive' do
72
+ JSON.generate({})
73
+ end
74
+
75
+ get '/restart' do
76
+ haml :restart
77
+ end
78
+
79
+ get '/logs' do
80
+ @logtypes = {
81
+ :app => 'Application',
82
+ :stdout => 'Standard out',
83
+ :stderr => 'Standard error'
84
+ }
85
+ @logtype = (params['logtype'] || 'app').to_sym
86
+ @content = controller(:log).set_request(request,params).logs(@logtype)
87
+ haml :logs
88
+ end
89
+
90
+ get '/messages/game' do
91
+ @content = controller(:messages).set_request(request,params).game
92
+ @messages = :game
93
+ haml :game_messages
94
+ end
95
+
96
+ post '/messages/game' do
97
+ @content = controller(:messages).set_request(request,params).update
98
+ if @content == 'restart'
99
+ haml :restart
100
+ else
101
+ @messages = :game
102
+ haml :game_messages
103
+ end
104
+ end
105
+
106
+ get '/messages/all' do
107
+ @content = controller(:messages).set_request(request,params).all
108
+ @messages = :all
109
+ @format = params['format']
110
+ if @format == 'proto'
111
+ content_type :proto
112
+ attachment 'messages.proto'
113
+ @content
114
+ else
115
+ haml :game_messages
116
+ end
117
+ end
118
+
119
+ route :get, :post, '/auth' do
120
+ res = controller(:auth).set_request(request,params).get
121
+ if res == 'error'
122
+ status 403
123
+ body res
124
+ else
125
+ res
126
+ end
127
+ end
128
+ end
129
+
130
+ WebApp.run!
131
+
@@ -0,0 +1,4 @@
1
+ rackup: config.ru
2
+ address: '0.0.0.0'
3
+ port: 3000
4
+ jruby_max_runtimes: 1
@@ -0,0 +1,19 @@
1
+ module Web
2
+ module Controllers
3
+ class AuthController < BaseController
4
+
5
+ def get
6
+ if auth = login(params['username'],params['password'])
7
+ auth
8
+ else
9
+ GameMachine.logger.info "#{self.class.name} Login Error: #{params['username']}"
10
+ "error"
11
+ end
12
+ end
13
+
14
+ def login(user,pass)
15
+ GameMachine::Application.auth_handler.authorize(user,pass)
16
+ end
17
+ end
18
+ end
19
+ end
@@ -0,0 +1,16 @@
1
+ module Web
2
+ module Controllers
3
+ class BaseController
4
+ attr_reader :params
5
+ attr_reader :request
6
+
7
+ def set_request(request,params)
8
+ request.body.rewind
9
+ @request = request
10
+ @params = params
11
+ self
12
+ end
13
+
14
+ end
15
+ end
16
+ end
@@ -0,0 +1,7 @@
1
+ module Web
2
+ module Controllers
3
+ class IndexController < BaseController
4
+
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,47 @@
1
+ module Web
2
+ module Controllers
3
+ class LogController < BaseController
4
+
5
+ attr_reader :logfiles
6
+ def initialize
7
+ logpath = File.join(GameMachine.app_root,'log')
8
+ @logfiles = {
9
+ :app => @applog = File.join(logpath,"#{GameMachine.env}.log"),
10
+ :stdout => @stdout = File.join(logpath,'game_machine.stdout'),
11
+ :stderr => @stderr = File.join(logpath,'game_machine.stderr')
12
+ }
13
+ end
14
+
15
+ def readlog(logtype)
16
+ count = 100
17
+ path = logfiles[logtype]
18
+ unless File.exists?(path)
19
+ GameMachine.logger.info "No such logfile: #{path}"
20
+ return []
21
+ end
22
+
23
+ tmpname = "/tmp/#{logtype}_tmp"
24
+ system("tail -#{count} #{path} >#{tmpname}")
25
+ IO.readlines(tmpname)
26
+ end
27
+
28
+ def logs(logtype)
29
+ readlog(logtype).map do |line|
30
+ if logtype == :app
31
+ begin
32
+ line.match(/^(.*?)\[(.*?)\]\s(INFO|ERROR|DEBUG|WARN)\s(.*)/)
33
+
34
+ # timestamp,severity,service,message
35
+ [$1,$3.to_sym,$2,$4]
36
+ rescue Exception => e
37
+ ['unknown','UNKNOWN','unknown',line]
38
+ end
39
+ else
40
+ line
41
+ end
42
+ end
43
+ end
44
+
45
+ end
46
+ end
47
+ end
@@ -0,0 +1,59 @@
1
+ require 'fileutils'
2
+
3
+ module Web
4
+ module Controllers
5
+ class MessagesController < BaseController
6
+
7
+ def initialize
8
+ @combined_messages_file = File.join(
9
+ GameMachine.app_root,'config','combined_messages.proto')
10
+ @game_messages_file = File.join(
11
+ GameMachine.app_root,'config','game_messages.proto')
12
+ end
13
+
14
+ def all
15
+ read_file(@combined_messages_file)
16
+ end
17
+
18
+ def game
19
+ read_file(@game_messages_file)
20
+ end
21
+
22
+ def update
23
+ FileUtils.cp(@game_messages_file,"#{@game_messages_file}.bak")
24
+ content = params['game_messages']
25
+ write_file(@game_messages_file,content)
26
+ GameMachine::Console::Build.new([]).generate_code
27
+ game_messages = read_file(@game_messages_file)
28
+
29
+ if ENV.has_key?('RESTARTABLE')
30
+ GameMachine::Console::Server.restart!
31
+ return 'restart'
32
+ else
33
+ return game_messages
34
+ end
35
+ end
36
+
37
+ private
38
+
39
+ def write_file(filename,content)
40
+ File.open(filename,'wb') {|f| f.write(content)}
41
+ end
42
+
43
+ def read_file(filename)
44
+ if File.exists?(filename)
45
+ File.read(filename)
46
+ else
47
+ nil
48
+ end
49
+ end
50
+
51
+ def generate_combined
52
+ GameMachine::Protobuf::Generate.new(
53
+ GameMachine.app_root
54
+ ).generate
55
+ end
56
+
57
+ end
58
+ end
59
+ end
@@ -0,0 +1,15 @@
1
+ module Web
2
+ module Controllers
3
+ class PlayerRegisterController < BaseController
4
+
5
+ def register_class
6
+ GameMachine::Application.config.player_register_handler.constantize
7
+ end
8
+
9
+ def create
10
+ register_class.new(params).register!
11
+ end
12
+
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,1339 @@
1
+ 2014-06-03 12:58:16 -0700 INFO: jruby 1.7.12 (1.9.3p392) 2014-04-15 643e292 on OpenJDK 64-Bit Server VM 1.7.0_55-b14 [linux-amd64]
2
+ 2014-06-03 12:58:16 -0700 INFO: using 1:5 runtime pool with acquire timeout of 5.0 seconds
3
+ 2014-06-03 12:58:17 -0700 INFO: added application to pool, size now = 1
4
+ 2014-06-03 12:58:29 -0700 INFO: Errno::ENOENT - No such file or directory - /home/chris/game_machine/server/web/views/index.haml:
5
+ org/jruby/RubyFile.java:361:in `initialize'
6
+ org/jruby/RubyIO.java:1178:in `open'
7
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/tilt-1.4.1/lib/tilt/template.rb:91:in `read_template_file'
8
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/tilt-1.4.1/lib/tilt/template.rb:68:in `initialize'
9
+ org/jruby/RubyProc.java:271:in `call'
10
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/tilt-1.4.1/lib/tilt/template.rb:69:in `initialize'
11
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:853:in `compile_template'
12
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/tilt-1.4.1/lib/tilt.rb:127:in `fetch'
13
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:832:in `compile_template'
14
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:813:in `render'
15
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:675:in `haml'
16
+ /home/chris/game_machine/server/web/config.ru:3:in `HEAD /'
17
+ org/jruby/RubyMethod.java:124:in `call'
18
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1603:in `compile!'
19
+ org/jruby/RubyProc.java:271:in `call'
20
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:966:in `route!'
21
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:985:in `route_eval'
22
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:966:in `route!'
23
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1006:in `process_route'
24
+ org/jruby/RubyKernel.java:1264:in `catch'
25
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1004:in `process_route'
26
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:964:in `route!'
27
+ org/jruby/RubyArray.java:1613:in `each'
28
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:963:in `route!'
29
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1076:in `dispatch!'
30
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
31
+ org/jruby/RubyKernel.java:1264:in `catch'
32
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
33
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1073:in `dispatch!'
34
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:898:in `call!'
35
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
36
+ org/jruby/RubyKernel.java:1264:in `catch'
37
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
38
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:898:in `call!'
39
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:886:in `call'
40
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/xss_header.rb:18:in `call'
41
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/path_traversal.rb:16:in `call'
42
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/json_csrf.rb:18:in `call'
43
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call'
44
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call'
45
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/frame_options.rb:31:in `call'
46
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/logger.rb:15:in `call'
47
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/commonlogger.rb:33:in `call'
48
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:217:in `call'
49
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:210:in `call'
50
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/head.rb:11:in `call'
51
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/methodoverride.rb:21:in `call'
52
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/show_exceptions.rb:21:in `call'
53
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:180:in `call'
54
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:2014:in `call'
55
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1478:in `call'
56
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1788:in `synchronize'
57
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1478:in `call'
58
+ file:/home/chris/.rvm/gems/jruby-1.7.12/gems/jruby-rack-1.1.14/lib/jruby-rack-1.1.14.jar!/rack/handler/servlet.rb:22:in `call'
59
+ 2014-06-03 12:58:29 -0700 INFO: 192.168.1.2 - [03/Jun/2014 12:58:29] "GET /__sinatra__/500.png " 304 - 0.0330
60
+ 2014-06-03 12:58:33 -0700 INFO: Errno::ENOENT - No such file or directory - /home/chris/game_machine/server/web/views/index.haml:
61
+ org/jruby/RubyFile.java:361:in `initialize'
62
+ org/jruby/RubyIO.java:1178:in `open'
63
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/tilt-1.4.1/lib/tilt/template.rb:91:in `read_template_file'
64
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/tilt-1.4.1/lib/tilt/template.rb:68:in `initialize'
65
+ org/jruby/RubyProc.java:271:in `call'
66
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/tilt-1.4.1/lib/tilt/template.rb:69:in `initialize'
67
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:853:in `compile_template'
68
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/tilt-1.4.1/lib/tilt.rb:127:in `fetch'
69
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:832:in `compile_template'
70
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:813:in `render'
71
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:675:in `haml'
72
+ /home/chris/game_machine/server/web/config.ru:3:in `HEAD /'
73
+ org/jruby/RubyMethod.java:124:in `call'
74
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1603:in `compile!'
75
+ org/jruby/RubyProc.java:271:in `call'
76
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:966:in `route!'
77
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:985:in `route_eval'
78
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:966:in `route!'
79
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1006:in `process_route'
80
+ org/jruby/RubyKernel.java:1264:in `catch'
81
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1004:in `process_route'
82
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:964:in `route!'
83
+ org/jruby/RubyArray.java:1613:in `each'
84
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:963:in `route!'
85
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1076:in `dispatch!'
86
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
87
+ org/jruby/RubyKernel.java:1264:in `catch'
88
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
89
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1073:in `dispatch!'
90
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:898:in `call!'
91
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
92
+ org/jruby/RubyKernel.java:1264:in `catch'
93
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
94
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:898:in `call!'
95
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:886:in `call'
96
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/xss_header.rb:18:in `call'
97
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/path_traversal.rb:16:in `call'
98
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/json_csrf.rb:18:in `call'
99
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call'
100
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call'
101
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/frame_options.rb:31:in `call'
102
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/logger.rb:15:in `call'
103
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/commonlogger.rb:33:in `call'
104
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:217:in `call'
105
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:210:in `call'
106
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/head.rb:11:in `call'
107
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/methodoverride.rb:21:in `call'
108
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/show_exceptions.rb:21:in `call'
109
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:180:in `call'
110
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:2014:in `call'
111
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1478:in `call'
112
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1788:in `synchronize'
113
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1478:in `call'
114
+ file:/home/chris/.rvm/gems/jruby-1.7.12/gems/jruby-rack-1.1.14/lib/jruby-rack-1.1.14.jar!/rack/handler/servlet.rb:22:in `call'
115
+ 2014-06-03 12:58:33 -0700 INFO: 192.168.1.2 - [03/Jun/2014 12:58:33] "GET /__sinatra__/500.png " 304 - 0.0070
116
+ 2014-06-03 12:58:35 -0700 INFO: Errno::ENOENT - No such file or directory - /home/chris/game_machine/server/web/views/index.haml:
117
+ org/jruby/RubyFile.java:361:in `initialize'
118
+ org/jruby/RubyIO.java:1178:in `open'
119
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/tilt-1.4.1/lib/tilt/template.rb:91:in `read_template_file'
120
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/tilt-1.4.1/lib/tilt/template.rb:68:in `initialize'
121
+ org/jruby/RubyProc.java:271:in `call'
122
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/tilt-1.4.1/lib/tilt/template.rb:69:in `initialize'
123
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:853:in `compile_template'
124
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/tilt-1.4.1/lib/tilt.rb:127:in `fetch'
125
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:832:in `compile_template'
126
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:813:in `render'
127
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:675:in `haml'
128
+ /home/chris/game_machine/server/web/config.ru:3:in `HEAD /'
129
+ org/jruby/RubyMethod.java:124:in `call'
130
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1603:in `compile!'
131
+ org/jruby/RubyProc.java:271:in `call'
132
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:966:in `route!'
133
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:985:in `route_eval'
134
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:966:in `route!'
135
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1006:in `process_route'
136
+ org/jruby/RubyKernel.java:1264:in `catch'
137
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1004:in `process_route'
138
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:964:in `route!'
139
+ org/jruby/RubyArray.java:1613:in `each'
140
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:963:in `route!'
141
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1076:in `dispatch!'
142
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
143
+ org/jruby/RubyKernel.java:1264:in `catch'
144
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
145
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1073:in `dispatch!'
146
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:898:in `call!'
147
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
148
+ org/jruby/RubyKernel.java:1264:in `catch'
149
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
150
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:898:in `call!'
151
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:886:in `call'
152
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/xss_header.rb:18:in `call'
153
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/path_traversal.rb:16:in `call'
154
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/json_csrf.rb:18:in `call'
155
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call'
156
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call'
157
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/frame_options.rb:31:in `call'
158
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/logger.rb:15:in `call'
159
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/commonlogger.rb:33:in `call'
160
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:217:in `call'
161
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:210:in `call'
162
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/head.rb:11:in `call'
163
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/methodoverride.rb:21:in `call'
164
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/show_exceptions.rb:21:in `call'
165
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:180:in `call'
166
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:2014:in `call'
167
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1478:in `call'
168
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1788:in `synchronize'
169
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1478:in `call'
170
+ file:/home/chris/.rvm/gems/jruby-1.7.12/gems/jruby-rack-1.1.14/lib/jruby-rack-1.1.14.jar!/rack/handler/servlet.rb:22:in `call'
171
+ 2014-06-03 12:58:36 -0700 INFO: 192.168.1.2 - [03/Jun/2014 12:58:36] "GET /__sinatra__/500.png " 304 - 0.0080
172
+ 2014-06-03 13:07:51 -0700 INFO: jruby 1.7.12 (1.9.3p392) 2014-04-15 643e292 on OpenJDK 64-Bit Server VM 1.7.0_55-b14 [linux-amd64]
173
+ 2014-06-03 13:07:51 -0700 INFO: using 1:5 runtime pool with acquire timeout of 5.0 seconds
174
+ 2014-06-03 13:07:52 -0700 INFO: added application to pool, size now = 1
175
+ 2014-06-03 13:08:09 -0700 INFO: Errno::ENOENT - No such file or directory - /home/chris/game_machine/server/web/views/index.haml:
176
+ org/jruby/RubyFile.java:361:in `initialize'
177
+ org/jruby/RubyIO.java:1178:in `open'
178
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/tilt-1.4.1/lib/tilt/template.rb:91:in `read_template_file'
179
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/tilt-1.4.1/lib/tilt/template.rb:68:in `initialize'
180
+ org/jruby/RubyProc.java:271:in `call'
181
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/tilt-1.4.1/lib/tilt/template.rb:69:in `initialize'
182
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:853:in `compile_template'
183
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/tilt-1.4.1/lib/tilt.rb:127:in `fetch'
184
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:832:in `compile_template'
185
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:813:in `render'
186
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:675:in `haml'
187
+ /home/chris/game_machine/server/web/config.ru:3:in `HEAD /'
188
+ org/jruby/RubyMethod.java:124:in `call'
189
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1603:in `compile!'
190
+ org/jruby/RubyProc.java:271:in `call'
191
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:966:in `route!'
192
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:985:in `route_eval'
193
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:966:in `route!'
194
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1006:in `process_route'
195
+ org/jruby/RubyKernel.java:1264:in `catch'
196
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1004:in `process_route'
197
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:964:in `route!'
198
+ org/jruby/RubyArray.java:1613:in `each'
199
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:963:in `route!'
200
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1076:in `dispatch!'
201
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
202
+ org/jruby/RubyKernel.java:1264:in `catch'
203
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
204
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1073:in `dispatch!'
205
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:898:in `call!'
206
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
207
+ org/jruby/RubyKernel.java:1264:in `catch'
208
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
209
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:898:in `call!'
210
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:886:in `call'
211
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/xss_header.rb:18:in `call'
212
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/path_traversal.rb:16:in `call'
213
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/json_csrf.rb:18:in `call'
214
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call'
215
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call'
216
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/frame_options.rb:31:in `call'
217
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/logger.rb:15:in `call'
218
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/commonlogger.rb:33:in `call'
219
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:217:in `call'
220
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:210:in `call'
221
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/head.rb:11:in `call'
222
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/methodoverride.rb:21:in `call'
223
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/show_exceptions.rb:21:in `call'
224
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:180:in `call'
225
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:2014:in `call'
226
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1478:in `call'
227
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1788:in `synchronize'
228
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1478:in `call'
229
+ file:/home/chris/.rvm/gems/jruby-1.7.12/gems/jruby-rack-1.1.14/lib/jruby-rack-1.1.14.jar!/rack/handler/servlet.rb:22:in `call'
230
+ 2014-06-03 13:08:10 -0700 INFO: 192.168.1.2 - [03/Jun/2014 13:08:10] "GET /__sinatra__/500.png " 304 - 0.0200
231
+ 2014-06-03 13:08:13 -0700 INFO: Errno::ENOENT - No such file or directory - /home/chris/game_machine/server/web/views/index.haml:
232
+ org/jruby/RubyFile.java:361:in `initialize'
233
+ org/jruby/RubyIO.java:1178:in `open'
234
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/tilt-1.4.1/lib/tilt/template.rb:91:in `read_template_file'
235
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/tilt-1.4.1/lib/tilt/template.rb:68:in `initialize'
236
+ org/jruby/RubyProc.java:271:in `call'
237
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/tilt-1.4.1/lib/tilt/template.rb:69:in `initialize'
238
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:853:in `compile_template'
239
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/tilt-1.4.1/lib/tilt.rb:127:in `fetch'
240
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:832:in `compile_template'
241
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:813:in `render'
242
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:675:in `haml'
243
+ /home/chris/game_machine/server/web/config.ru:3:in `HEAD /'
244
+ org/jruby/RubyMethod.java:124:in `call'
245
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1603:in `compile!'
246
+ org/jruby/RubyProc.java:271:in `call'
247
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:966:in `route!'
248
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:985:in `route_eval'
249
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:966:in `route!'
250
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1006:in `process_route'
251
+ org/jruby/RubyKernel.java:1264:in `catch'
252
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1004:in `process_route'
253
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:964:in `route!'
254
+ org/jruby/RubyArray.java:1613:in `each'
255
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:963:in `route!'
256
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1076:in `dispatch!'
257
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
258
+ org/jruby/RubyKernel.java:1264:in `catch'
259
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
260
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1073:in `dispatch!'
261
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:898:in `call!'
262
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
263
+ org/jruby/RubyKernel.java:1264:in `catch'
264
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
265
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:898:in `call!'
266
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:886:in `call'
267
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/xss_header.rb:18:in `call'
268
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/path_traversal.rb:16:in `call'
269
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/json_csrf.rb:18:in `call'
270
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call'
271
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call'
272
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/frame_options.rb:31:in `call'
273
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/logger.rb:15:in `call'
274
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/commonlogger.rb:33:in `call'
275
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:217:in `call'
276
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:210:in `call'
277
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/head.rb:11:in `call'
278
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/methodoverride.rb:21:in `call'
279
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/show_exceptions.rb:21:in `call'
280
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:180:in `call'
281
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:2014:in `call'
282
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1478:in `call'
283
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1788:in `synchronize'
284
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1478:in `call'
285
+ file:/home/chris/.rvm/gems/jruby-1.7.12/gems/jruby-rack-1.1.14/lib/jruby-rack-1.1.14.jar!/rack/handler/servlet.rb:22:in `call'
286
+ 2014-06-03 13:08:13 -0700 INFO: 192.168.1.2 - [03/Jun/2014 13:08:13] "GET /__sinatra__/500.png " 304 - 0.0070
287
+ 2014-06-03 13:08:14 -0700 INFO: Errno::ENOENT - No such file or directory - /home/chris/game_machine/server/web/views/index.haml:
288
+ org/jruby/RubyFile.java:361:in `initialize'
289
+ org/jruby/RubyIO.java:1178:in `open'
290
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/tilt-1.4.1/lib/tilt/template.rb:91:in `read_template_file'
291
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/tilt-1.4.1/lib/tilt/template.rb:68:in `initialize'
292
+ org/jruby/RubyProc.java:271:in `call'
293
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/tilt-1.4.1/lib/tilt/template.rb:69:in `initialize'
294
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:853:in `compile_template'
295
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/tilt-1.4.1/lib/tilt.rb:127:in `fetch'
296
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:832:in `compile_template'
297
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:813:in `render'
298
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:675:in `haml'
299
+ /home/chris/game_machine/server/web/config.ru:3:in `HEAD /'
300
+ org/jruby/RubyMethod.java:124:in `call'
301
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1603:in `compile!'
302
+ org/jruby/RubyProc.java:271:in `call'
303
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:966:in `route!'
304
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:985:in `route_eval'
305
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:966:in `route!'
306
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1006:in `process_route'
307
+ org/jruby/RubyKernel.java:1264:in `catch'
308
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1004:in `process_route'
309
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:964:in `route!'
310
+ org/jruby/RubyArray.java:1613:in `each'
311
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:963:in `route!'
312
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1076:in `dispatch!'
313
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
314
+ org/jruby/RubyKernel.java:1264:in `catch'
315
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
316
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1073:in `dispatch!'
317
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:898:in `call!'
318
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
319
+ org/jruby/RubyKernel.java:1264:in `catch'
320
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
321
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:898:in `call!'
322
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:886:in `call'
323
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/xss_header.rb:18:in `call'
324
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/path_traversal.rb:16:in `call'
325
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/json_csrf.rb:18:in `call'
326
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call'
327
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call'
328
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/frame_options.rb:31:in `call'
329
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/logger.rb:15:in `call'
330
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/commonlogger.rb:33:in `call'
331
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:217:in `call'
332
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:210:in `call'
333
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/head.rb:11:in `call'
334
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/methodoverride.rb:21:in `call'
335
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/show_exceptions.rb:21:in `call'
336
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:180:in `call'
337
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:2014:in `call'
338
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1478:in `call'
339
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1788:in `synchronize'
340
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1478:in `call'
341
+ file:/home/chris/.rvm/gems/jruby-1.7.12/gems/jruby-rack-1.1.14/lib/jruby-rack-1.1.14.jar!/rack/handler/servlet.rb:22:in `call'
342
+ 2014-06-03 13:08:15 -0700 INFO: 192.168.1.2 - [03/Jun/2014 13:08:15] "GET /__sinatra__/500.png " 304 - 0.0140
343
+ 2014-06-03 13:08:15 -0700 INFO: Errno::ENOENT - No such file or directory - /home/chris/game_machine/server/web/views/index.haml:
344
+ org/jruby/RubyFile.java:361:in `initialize'
345
+ org/jruby/RubyIO.java:1178:in `open'
346
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/tilt-1.4.1/lib/tilt/template.rb:91:in `read_template_file'
347
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/tilt-1.4.1/lib/tilt/template.rb:68:in `initialize'
348
+ org/jruby/RubyProc.java:271:in `call'
349
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/tilt-1.4.1/lib/tilt/template.rb:69:in `initialize'
350
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:853:in `compile_template'
351
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/tilt-1.4.1/lib/tilt.rb:127:in `fetch'
352
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:832:in `compile_template'
353
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:813:in `render'
354
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:675:in `haml'
355
+ /home/chris/game_machine/server/web/config.ru:3:in `HEAD /'
356
+ org/jruby/RubyMethod.java:124:in `call'
357
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1603:in `compile!'
358
+ org/jruby/RubyProc.java:271:in `call'
359
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:966:in `route!'
360
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:985:in `route_eval'
361
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:966:in `route!'
362
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1006:in `process_route'
363
+ org/jruby/RubyKernel.java:1264:in `catch'
364
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1004:in `process_route'
365
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:964:in `route!'
366
+ org/jruby/RubyArray.java:1613:in `each'
367
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:963:in `route!'
368
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1076:in `dispatch!'
369
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
370
+ org/jruby/RubyKernel.java:1264:in `catch'
371
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
372
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1073:in `dispatch!'
373
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:898:in `call!'
374
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
375
+ org/jruby/RubyKernel.java:1264:in `catch'
376
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
377
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:898:in `call!'
378
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:886:in `call'
379
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/xss_header.rb:18:in `call'
380
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/path_traversal.rb:16:in `call'
381
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/json_csrf.rb:18:in `call'
382
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call'
383
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call'
384
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/frame_options.rb:31:in `call'
385
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/logger.rb:15:in `call'
386
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/commonlogger.rb:33:in `call'
387
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:217:in `call'
388
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:210:in `call'
389
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/head.rb:11:in `call'
390
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/methodoverride.rb:21:in `call'
391
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/show_exceptions.rb:21:in `call'
392
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:180:in `call'
393
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:2014:in `call'
394
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1478:in `call'
395
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1788:in `synchronize'
396
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1478:in `call'
397
+ file:/home/chris/.rvm/gems/jruby-1.7.12/gems/jruby-rack-1.1.14/lib/jruby-rack-1.1.14.jar!/rack/handler/servlet.rb:22:in `call'
398
+ 2014-06-03 13:08:15 -0700 INFO: 192.168.1.2 - [03/Jun/2014 13:08:15] "GET /__sinatra__/500.png " 304 - 0.0030
399
+ 2014-06-03 13:16:52 -0700 INFO: jruby 1.7.12 (1.9.3p392) 2014-04-15 643e292 on OpenJDK 64-Bit Server VM 1.7.0_55-b14 [linux-amd64]
400
+ 2014-06-03 13:16:52 -0700 INFO: using 1:5 runtime pool with acquire timeout of 5.0 seconds
401
+ 2014-06-03 13:16:53 -0700 INFO: added application to pool, size now = 1
402
+ 2014-06-03 13:16:59 -0700 INFO: NameError - uninitialized constant Web:
403
+ org/jruby/RubyModule.java:2690:in `const_missing'
404
+ /home/chris/game_machine/server/web/config.ru:3:in `HEAD /'
405
+ org/jruby/RubyMethod.java:124:in `call'
406
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1603:in `compile!'
407
+ org/jruby/RubyProc.java:271:in `call'
408
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:966:in `route!'
409
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:985:in `route_eval'
410
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:966:in `route!'
411
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1006:in `process_route'
412
+ org/jruby/RubyKernel.java:1264:in `catch'
413
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1004:in `process_route'
414
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:964:in `route!'
415
+ org/jruby/RubyArray.java:1613:in `each'
416
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:963:in `route!'
417
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1076:in `dispatch!'
418
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
419
+ org/jruby/RubyKernel.java:1264:in `catch'
420
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
421
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1073:in `dispatch!'
422
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:898:in `call!'
423
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
424
+ org/jruby/RubyKernel.java:1264:in `catch'
425
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
426
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:898:in `call!'
427
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:886:in `call'
428
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/xss_header.rb:18:in `call'
429
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/path_traversal.rb:16:in `call'
430
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/json_csrf.rb:18:in `call'
431
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call'
432
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call'
433
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/frame_options.rb:31:in `call'
434
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/logger.rb:15:in `call'
435
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/commonlogger.rb:33:in `call'
436
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:217:in `call'
437
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:210:in `call'
438
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/head.rb:11:in `call'
439
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/methodoverride.rb:21:in `call'
440
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/show_exceptions.rb:21:in `call'
441
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:180:in `call'
442
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:2014:in `call'
443
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1478:in `call'
444
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1788:in `synchronize'
445
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1478:in `call'
446
+ file:/home/chris/.rvm/gems/jruby-1.7.12/gems/jruby-rack-1.1.14/lib/jruby-rack-1.1.14.jar!/rack/handler/servlet.rb:22:in `call'
447
+ 2014-06-03 13:18:40 -0700 INFO: jruby 1.7.12 (1.9.3p392) 2014-04-15 643e292 on OpenJDK 64-Bit Server VM 1.7.0_55-b14 [linux-amd64]
448
+ 2014-06-03 13:18:40 -0700 INFO: using 1:5 runtime pool with acquire timeout of 5.0 seconds
449
+ 2014-06-03 13:18:41 -0700 INFO: added application to pool, size now = 1
450
+ 2014-06-03 13:22:03 -0700 INFO: jruby 1.7.12 (1.9.3p392) 2014-04-15 643e292 on OpenJDK 64-Bit Server VM 1.7.0_55-b14 [linux-amd64]
451
+ 2014-06-03 13:22:03 -0700 INFO: using a shared (threadsafe!) runtime
452
+ 2014-06-03 13:22:22 -0700 INFO: Errno::ENOENT - No such file or directory - /home/chris/game_machine/server/web/views/index.haml:
453
+ org/jruby/RubyFile.java:361:in `initialize'
454
+ org/jruby/RubyIO.java:1178:in `open'
455
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/tilt-1.4.1/lib/tilt/template.rb:91:in `read_template_file'
456
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/tilt-1.4.1/lib/tilt/template.rb:68:in `initialize'
457
+ org/jruby/RubyProc.java:271:in `call'
458
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/tilt-1.4.1/lib/tilt/template.rb:69:in `initialize'
459
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:853:in `compile_template'
460
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/tilt-1.4.1/lib/tilt.rb:127:in `fetch'
461
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:832:in `compile_template'
462
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:813:in `render'
463
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:675:in `haml'
464
+ /home/chris/game_machine/server/web/config.ru:9:in `HEAD /'
465
+ org/jruby/RubyMethod.java:124:in `call'
466
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1603:in `compile!'
467
+ org/jruby/RubyProc.java:271:in `call'
468
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:966:in `route!'
469
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:985:in `route_eval'
470
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:966:in `route!'
471
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1006:in `process_route'
472
+ org/jruby/RubyKernel.java:1264:in `catch'
473
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1004:in `process_route'
474
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:964:in `route!'
475
+ org/jruby/RubyArray.java:1613:in `each'
476
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:963:in `route!'
477
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1076:in `dispatch!'
478
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
479
+ org/jruby/RubyKernel.java:1264:in `catch'
480
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
481
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1073:in `dispatch!'
482
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:898:in `call!'
483
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
484
+ org/jruby/RubyKernel.java:1264:in `catch'
485
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
486
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:898:in `call!'
487
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:886:in `call'
488
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/xss_header.rb:18:in `call'
489
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/path_traversal.rb:16:in `call'
490
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/json_csrf.rb:18:in `call'
491
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call'
492
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call'
493
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/frame_options.rb:31:in `call'
494
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/logger.rb:15:in `call'
495
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/commonlogger.rb:33:in `call'
496
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:217:in `call'
497
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:210:in `call'
498
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/head.rb:11:in `call'
499
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/methodoverride.rb:21:in `call'
500
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/show_exceptions.rb:21:in `call'
501
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:180:in `call'
502
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:2014:in `call'
503
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1478:in `call'
504
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1788:in `synchronize'
505
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1478:in `call'
506
+ file:/home/chris/.rvm/gems/jruby-1.7.12/gems/jruby-rack-1.1.14/lib/jruby-rack-1.1.14.jar!/rack/handler/servlet.rb:22:in `call'
507
+ 2014-06-03 13:22:22 -0700 INFO: 192.168.1.2 - [03/Jun/2014 13:22:22] "GET /__sinatra__/500.png " 200 24378 0.0540
508
+ 2014-06-03 13:22:28 -0700 INFO: Errno::ENOENT - No such file or directory - /home/chris/game_machine/server/web/views/index.haml:
509
+ org/jruby/RubyFile.java:361:in `initialize'
510
+ org/jruby/RubyIO.java:1178:in `open'
511
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/tilt-1.4.1/lib/tilt/template.rb:91:in `read_template_file'
512
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/tilt-1.4.1/lib/tilt/template.rb:68:in `initialize'
513
+ org/jruby/RubyProc.java:271:in `call'
514
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/tilt-1.4.1/lib/tilt/template.rb:69:in `initialize'
515
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:853:in `compile_template'
516
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/tilt-1.4.1/lib/tilt.rb:127:in `fetch'
517
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:832:in `compile_template'
518
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:813:in `render'
519
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:675:in `haml'
520
+ /home/chris/game_machine/server/web/config.ru:9:in `HEAD /'
521
+ org/jruby/RubyMethod.java:124:in `call'
522
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1603:in `compile!'
523
+ org/jruby/RubyProc.java:271:in `call'
524
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:966:in `route!'
525
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:985:in `route_eval'
526
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:966:in `route!'
527
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1006:in `process_route'
528
+ org/jruby/RubyKernel.java:1264:in `catch'
529
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1004:in `process_route'
530
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:964:in `route!'
531
+ org/jruby/RubyArray.java:1613:in `each'
532
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:963:in `route!'
533
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1076:in `dispatch!'
534
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
535
+ org/jruby/RubyKernel.java:1264:in `catch'
536
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
537
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1073:in `dispatch!'
538
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:898:in `call!'
539
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
540
+ org/jruby/RubyKernel.java:1264:in `catch'
541
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
542
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:898:in `call!'
543
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:886:in `call'
544
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/xss_header.rb:18:in `call'
545
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/path_traversal.rb:16:in `call'
546
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/json_csrf.rb:18:in `call'
547
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call'
548
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call'
549
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/frame_options.rb:31:in `call'
550
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/logger.rb:15:in `call'
551
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/commonlogger.rb:33:in `call'
552
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:217:in `call'
553
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:210:in `call'
554
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/head.rb:11:in `call'
555
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/methodoverride.rb:21:in `call'
556
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/show_exceptions.rb:21:in `call'
557
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:180:in `call'
558
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:2014:in `call'
559
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1478:in `call'
560
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1788:in `synchronize'
561
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1478:in `call'
562
+ file:/home/chris/.rvm/gems/jruby-1.7.12/gems/jruby-rack-1.1.14/lib/jruby-rack-1.1.14.jar!/rack/handler/servlet.rb:22:in `call'
563
+ 2014-06-03 13:22:28 -0700 INFO: 192.168.1.2 - [03/Jun/2014 13:22:28] "GET /__sinatra__/500.png " 304 - 0.0090
564
+ 2014-06-03 13:22:29 -0700 INFO: Errno::ENOENT - No such file or directory - /home/chris/game_machine/server/web/views/index.haml:
565
+ org/jruby/RubyFile.java:361:in `initialize'
566
+ org/jruby/RubyIO.java:1178:in `open'
567
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/tilt-1.4.1/lib/tilt/template.rb:91:in `read_template_file'
568
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/tilt-1.4.1/lib/tilt/template.rb:68:in `initialize'
569
+ org/jruby/RubyProc.java:271:in `call'
570
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/tilt-1.4.1/lib/tilt/template.rb:69:in `initialize'
571
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:853:in `compile_template'
572
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/tilt-1.4.1/lib/tilt.rb:127:in `fetch'
573
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:832:in `compile_template'
574
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:813:in `render'
575
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:675:in `haml'
576
+ /home/chris/game_machine/server/web/config.ru:9:in `HEAD /'
577
+ org/jruby/RubyMethod.java:124:in `call'
578
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1603:in `compile!'
579
+ org/jruby/RubyProc.java:271:in `call'
580
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:966:in `route!'
581
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:985:in `route_eval'
582
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:966:in `route!'
583
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1006:in `process_route'
584
+ org/jruby/RubyKernel.java:1264:in `catch'
585
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1004:in `process_route'
586
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:964:in `route!'
587
+ org/jruby/RubyArray.java:1613:in `each'
588
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:963:in `route!'
589
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1076:in `dispatch!'
590
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
591
+ org/jruby/RubyKernel.java:1264:in `catch'
592
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
593
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1073:in `dispatch!'
594
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:898:in `call!'
595
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
596
+ org/jruby/RubyKernel.java:1264:in `catch'
597
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
598
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:898:in `call!'
599
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:886:in `call'
600
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/xss_header.rb:18:in `call'
601
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/path_traversal.rb:16:in `call'
602
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/json_csrf.rb:18:in `call'
603
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call'
604
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call'
605
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/frame_options.rb:31:in `call'
606
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/logger.rb:15:in `call'
607
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/commonlogger.rb:33:in `call'
608
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:217:in `call'
609
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:210:in `call'
610
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/head.rb:11:in `call'
611
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/methodoverride.rb:21:in `call'
612
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/show_exceptions.rb:21:in `call'
613
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:180:in `call'
614
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:2014:in `call'
615
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1478:in `call'
616
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1788:in `synchronize'
617
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1478:in `call'
618
+ file:/home/chris/.rvm/gems/jruby-1.7.12/gems/jruby-rack-1.1.14/lib/jruby-rack-1.1.14.jar!/rack/handler/servlet.rb:22:in `call'
619
+ 2014-06-03 13:22:29 -0700 INFO: 192.168.1.2 - [03/Jun/2014 13:22:29] "GET /__sinatra__/500.png " 304 - 0.0070
620
+ 2014-06-03 13:22:30 -0700 INFO: Errno::ENOENT - No such file or directory - /home/chris/game_machine/server/web/views/index.haml:
621
+ org/jruby/RubyFile.java:361:in `initialize'
622
+ org/jruby/RubyIO.java:1178:in `open'
623
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/tilt-1.4.1/lib/tilt/template.rb:91:in `read_template_file'
624
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/tilt-1.4.1/lib/tilt/template.rb:68:in `initialize'
625
+ org/jruby/RubyProc.java:271:in `call'
626
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/tilt-1.4.1/lib/tilt/template.rb:69:in `initialize'
627
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:853:in `compile_template'
628
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/tilt-1.4.1/lib/tilt.rb:127:in `fetch'
629
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:832:in `compile_template'
630
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:813:in `render'
631
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:675:in `haml'
632
+ /home/chris/game_machine/server/web/config.ru:9:in `HEAD /'
633
+ org/jruby/RubyMethod.java:124:in `call'
634
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1603:in `compile!'
635
+ org/jruby/RubyProc.java:271:in `call'
636
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:966:in `route!'
637
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:985:in `route_eval'
638
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:966:in `route!'
639
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1006:in `process_route'
640
+ org/jruby/RubyKernel.java:1264:in `catch'
641
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1004:in `process_route'
642
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:964:in `route!'
643
+ org/jruby/RubyArray.java:1613:in `each'
644
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:963:in `route!'
645
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1076:in `dispatch!'
646
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
647
+ org/jruby/RubyKernel.java:1264:in `catch'
648
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
649
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1073:in `dispatch!'
650
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:898:in `call!'
651
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
652
+ org/jruby/RubyKernel.java:1264:in `catch'
653
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
654
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:898:in `call!'
655
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:886:in `call'
656
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/xss_header.rb:18:in `call'
657
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/path_traversal.rb:16:in `call'
658
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/json_csrf.rb:18:in `call'
659
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call'
660
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call'
661
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/frame_options.rb:31:in `call'
662
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/logger.rb:15:in `call'
663
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/commonlogger.rb:33:in `call'
664
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:217:in `call'
665
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:210:in `call'
666
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/head.rb:11:in `call'
667
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/methodoverride.rb:21:in `call'
668
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/show_exceptions.rb:21:in `call'
669
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:180:in `call'
670
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:2014:in `call'
671
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1478:in `call'
672
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1788:in `synchronize'
673
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1478:in `call'
674
+ file:/home/chris/.rvm/gems/jruby-1.7.12/gems/jruby-rack-1.1.14/lib/jruby-rack-1.1.14.jar!/rack/handler/servlet.rb:22:in `call'
675
+ 2014-06-03 13:22:30 -0700 INFO: 192.168.1.2 - [03/Jun/2014 13:22:30] "GET /__sinatra__/500.png " 304 - 0.0070
676
+ 2014-06-03 13:22:31 -0700 INFO: Errno::ENOENT - No such file or directory - /home/chris/game_machine/server/web/views/index.haml:
677
+ org/jruby/RubyFile.java:361:in `initialize'
678
+ org/jruby/RubyIO.java:1178:in `open'
679
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/tilt-1.4.1/lib/tilt/template.rb:91:in `read_template_file'
680
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/tilt-1.4.1/lib/tilt/template.rb:68:in `initialize'
681
+ org/jruby/RubyProc.java:271:in `call'
682
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/tilt-1.4.1/lib/tilt/template.rb:69:in `initialize'
683
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:853:in `compile_template'
684
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/tilt-1.4.1/lib/tilt.rb:127:in `fetch'
685
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:832:in `compile_template'
686
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:813:in `render'
687
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:675:in `haml'
688
+ /home/chris/game_machine/server/web/config.ru:9:in `HEAD /'
689
+ org/jruby/RubyMethod.java:124:in `call'
690
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1603:in `compile!'
691
+ org/jruby/RubyProc.java:271:in `call'
692
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:966:in `route!'
693
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:985:in `route_eval'
694
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:966:in `route!'
695
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1006:in `process_route'
696
+ org/jruby/RubyKernel.java:1264:in `catch'
697
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1004:in `process_route'
698
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:964:in `route!'
699
+ org/jruby/RubyArray.java:1613:in `each'
700
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:963:in `route!'
701
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1076:in `dispatch!'
702
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
703
+ org/jruby/RubyKernel.java:1264:in `catch'
704
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
705
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1073:in `dispatch!'
706
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:898:in `call!'
707
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
708
+ org/jruby/RubyKernel.java:1264:in `catch'
709
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
710
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:898:in `call!'
711
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:886:in `call'
712
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/xss_header.rb:18:in `call'
713
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/path_traversal.rb:16:in `call'
714
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/json_csrf.rb:18:in `call'
715
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call'
716
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call'
717
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/frame_options.rb:31:in `call'
718
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/logger.rb:15:in `call'
719
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/commonlogger.rb:33:in `call'
720
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:217:in `call'
721
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:210:in `call'
722
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/head.rb:11:in `call'
723
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/methodoverride.rb:21:in `call'
724
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/show_exceptions.rb:21:in `call'
725
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:180:in `call'
726
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:2014:in `call'
727
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1478:in `call'
728
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1788:in `synchronize'
729
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1478:in `call'
730
+ file:/home/chris/.rvm/gems/jruby-1.7.12/gems/jruby-rack-1.1.14/lib/jruby-rack-1.1.14.jar!/rack/handler/servlet.rb:22:in `call'
731
+ 2014-06-03 13:22:31 -0700 INFO: 192.168.1.2 - [03/Jun/2014 13:22:31] "GET /__sinatra__/500.png " 304 - 0.0030
732
+ 2014-06-03 13:22:49 -0700 INFO: 192.168.1.2 - [03/Jun/2014 13:22:49] "GET / " 200 6 0.0330
733
+ 2014-06-03 13:22:51 -0700 INFO: 192.168.1.2 - [03/Jun/2014 13:22:51] "GET / " 200 6 0.0130
734
+ 2014-06-03 13:22:52 -0700 INFO: 192.168.1.2 - [03/Jun/2014 13:22:52] "GET / " 200 6 0.0170
735
+ 2014-06-03 13:22:53 -0700 INFO: 192.168.1.2 - [03/Jun/2014 13:22:53] "GET / " 200 6 0.0170
736
+ 2014-06-03 13:22:55 -0700 INFO: 192.168.1.2 - [03/Jun/2014 13:22:55] "GET / " 200 6 0.0110
737
+ 2014-06-03 13:22:56 -0700 INFO: 192.168.1.2 - [03/Jun/2014 13:22:56] "GET / " 200 6 0.0120
738
+ 2014-06-03 13:23:59 -0700 INFO: 192.168.1.2 - [03/Jun/2014 13:23:59] "GET / " 200 18 0.0150
739
+ 2014-06-03 13:24:00 -0700 INFO: 192.168.1.2 - [03/Jun/2014 13:24:00] "GET / " 200 18 0.0130
740
+ 2014-06-03 13:24:18 -0700 INFO: 192.168.1.2 - [03/Jun/2014 13:24:18] "GET / " 200 35 0.0150
741
+ 2014-06-03 13:24:19 -0700 INFO: 192.168.1.2 - [03/Jun/2014 13:24:19] "GET / " 200 35 0.0180
742
+ 2014-06-03 13:24:20 -0700 INFO: 192.168.1.2 - [03/Jun/2014 13:24:20] "GET / " 200 35 0.0130
743
+ 2014-06-03 13:24:21 -0700 INFO: 192.168.1.2 - [03/Jun/2014 13:24:21] "GET / " 200 35 0.0120
744
+ 2014-06-03 13:35:12 -0700 INFO: jruby 1.7.12 (1.9.3p392) 2014-04-15 643e292 on OpenJDK 64-Bit Server VM 1.7.0_55-b14 [linux-amd64]
745
+ 2014-06-03 13:35:12 -0700 INFO: using a shared (threadsafe!) runtime
746
+ 2014-06-03 13:35:13 -0700 INFO: An exception happened during JRuby-Rack startup
747
+ uninitialized constant Web::Controllers::BaseController
748
+ --- System
749
+ jruby 1.7.12 (1.9.3p392) 2014-04-15 643e292 on OpenJDK 64-Bit Server VM 1.7.0_55-b14 [linux-amd64]
750
+ Time: 2014-06-03 13:35:13 -0700
751
+ Server: Apache Tomcat/7.0.50
752
+ jruby.home: /home/chris/.rvm/rubies/jruby-1.7.12
753
+
754
+ --- Context Init Parameters:
755
+ app.root = /home/chris/game_machine/server/web
756
+ jruby.compat.version = 1.9.3
757
+ jruby.initial.runtimes = 1
758
+ jruby.max.runtimes = 1
759
+ jruby.min.runtimes = 1
760
+ jruby.rack.error = false
761
+ jruby.rack.layout_class = JRuby::Rack::FileSystemLayout
762
+ jruby.rack.logging = JUL
763
+ jruby.rack.logging.name = org.apache.catalina.core.ContainerBase.[Tomcat].[0.0.0.0].[default]
764
+ jruby.runtime.acquire.timeout = 5.0
765
+ public.root = public
766
+ rack.env = development
767
+ rackup.path = config.ru
768
+
769
+ --- Backtrace
770
+ NameError: uninitialized constant Web::Controllers::BaseController
771
+ const_missing at org/jruby/RubyModule.java:2690
772
+ Controllers at /home/chris/game_machine/server/web/controllers/auth_controller.rb:3
773
+ Web at /home/chris/game_machine/server/web/controllers/auth_controller.rb:2
774
+ (root) at /home/chris/game_machine/server/web/controllers/auth_controller.rb:1
775
+ require at org/jruby/RubyKernel.java:1065
776
+ require at /home/chris/.rvm/rubies/jruby-1.7.12/lib/ruby/shared/rubygems/core_ext/kernel_require.rb:55
777
+ require at /home/chris/.rvm/rubies/jruby-1.7.12/lib/ruby/shared/rubygems/core_ext/kernel_require.rb:53
778
+ (root) at file:/home/chris/.rvm/rubies/jruby-1.7.12/lib/jruby.jar!/jruby/kernel19/kernel.rb:1
779
+ require_relative at file:/home/chris/.rvm/rubies/jruby-1.7.12/lib/jruby.jar!/jruby/kernel19/kernel.rb:21
780
+ instance_eval at org/jruby/RubyBasicObject.java:1533
781
+ (root) at /home/chris/game_machine/server/web/config.ru:4
782
+ initialize at /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/builder.rb:55
783
+
784
+ --- RubyGems
785
+ Gem.dir: /home/chris/.rvm/gems/jruby-1.7.12
786
+ Gem.path:
787
+ /home/chris/.rvm/gems/jruby-1.7.12
788
+ /home/chris/.rvm/gems/jruby-1.7.12@global
789
+ Activated gems:
790
+ rack-1.5.2
791
+ tilt-1.4.1
792
+ rack-protection-1.5.3
793
+ sinatra-1.4.5
794
+
795
+ --- Bundler
796
+ undefined method `bundle_path' for Bundler:Module
797
+
798
+ --- JRuby-Rack Config
799
+ compat_version = RUBY1_9
800
+ default_logger = org.jruby.rack.logging.StandardOutLogger@4b2e17d1
801
+ equals = <error: >
802
+ err = java.io.PrintStream@30627bfc
803
+ filter_adds_html = true
804
+ filter_verifies_resource = false
805
+ ignore_environment = false
806
+ initial_memory_buffer_size =
807
+ initial_runtimes = 1
808
+ jms_connection_factory =
809
+ jms_jndi_properties =
810
+ logger = org.jruby.rack.logging.JulLogger@51480f71
811
+ logger_class_name = JUL
812
+ logger_name = org.apache.catalina.core.ContainerBase.[Tomcat].[0.0.0.0].[default]
813
+ maximum_memory_buffer_size =
814
+ maximum_runtimes = 1
815
+ num_initializer_threads =
816
+ out = java.io.PrintStream@56dee91c
817
+ rackup =
818
+ rackup_path = config.ru
819
+ rewindable = true
820
+ runtime_arguments =
821
+ runtime_environment =
822
+ runtime_timeout_seconds =
823
+ serial_initialization = false
824
+ servlet_context = org.apache.catalina.core.ApplicationContextFacade@6d9078b3
825
+ throw_init_exception = true
826
+ 2014-06-03 13:35:13 -0700 SEVERE: Exception sending context initialized event to listener instance of class org.jruby.rack.RackServletContextListener
827
+ org.jruby.rack.RackInitializationException: uninitialized constant Web::Controllers::BaseController
828
+ from org/jruby/RubyModule.java:2690:in `const_missing'
829
+ from /home/chris/game_machine/server/web/controllers/auth_controller.rb:3:in `Controllers'
830
+ from /home/chris/game_machine/server/web/controllers/auth_controller.rb:2:in `Web'
831
+ from /home/chris/game_machine/server/web/controllers/auth_controller.rb:1:in `(root)'
832
+ from org/jruby/RubyKernel.java:1065:in `require'
833
+ from /home/chris/.rvm/rubies/jruby-1.7.12/lib/ruby/shared/rubygems/core_ext/kernel_require.rb:55:in `require'
834
+ from /home/chris/.rvm/rubies/jruby-1.7.12/lib/ruby/shared/rubygems/core_ext/kernel_require.rb:53:in `require'
835
+ from file:/home/chris/.rvm/rubies/jruby-1.7.12/lib/jruby.jar!/jruby/kernel19/kernel.rb:1:in `(root)'
836
+ from file:/home/chris/.rvm/rubies/jruby-1.7.12/lib/jruby.jar!/jruby/kernel19/kernel.rb:21:in `require_relative'
837
+ from org/jruby/RubyBasicObject.java:1533:in `instance_eval'
838
+ from /home/chris/game_machine/server/web/config.ru:4:in `(root)'
839
+ from /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/builder.rb:55:in `initialize'
840
+
841
+ at org.jruby.rack.RackInitializationException.wrap(RackInitializationException.java:29)
842
+ at org.jruby.rack.RackApplicationFactoryDecorator.init(RackApplicationFactoryDecorator.java:104)
843
+ at org.jruby.rack.RackServletContextListener.contextInitialized(RackServletContextListener.java:50)
844
+ at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:4961)
845
+ at org.apache.catalina.core.StandardContext.startInternal(StandardContext.java:5455)
846
+ at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:150)
847
+ at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1559)
848
+ at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1549)
849
+ at java.util.concurrent.FutureTask.run(FutureTask.java:262)
850
+ at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
851
+ at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
852
+ at java.lang.Thread.run(Thread.java:744)
853
+ Caused by: org.jruby.exceptions.RaiseException: (NameError) uninitialized constant Web::Controllers::BaseController
854
+ at org.jruby.RubyModule.const_missing(org/jruby/RubyModule.java:2690)
855
+ at RUBY.Controllers(/home/chris/game_machine/server/web/controllers/auth_controller.rb:3)
856
+ at RUBY.Web(/home/chris/game_machine/server/web/controllers/auth_controller.rb:2)
857
+ at RUBY.(root)(/home/chris/game_machine/server/web/controllers/auth_controller.rb:1)
858
+ at org.jruby.RubyKernel.require(org/jruby/RubyKernel.java:1065)
859
+ at Kernel.require(/home/chris/.rvm/rubies/jruby-1.7.12/lib/ruby/shared/rubygems/core_ext/kernel_require.rb:55)
860
+ at Kernel.require(/home/chris/.rvm/rubies/jruby-1.7.12/lib/ruby/shared/rubygems/core_ext/kernel_require.rb:53)
861
+ at RUBY.(root)(file:/home/chris/.rvm/rubies/jruby-1.7.12/lib/jruby.jar!/jruby/kernel19/kernel.rb:1)
862
+ at RUBY.require_relative(file:/home/chris/.rvm/rubies/jruby-1.7.12/lib/jruby.jar!/jruby/kernel19/kernel.rb:21)
863
+ at org.jruby.RubyBasicObject.instance_eval(org/jruby/RubyBasicObject.java:1533)
864
+ at RUBY.(root)(/home/chris/game_machine/server/web/config.ru:4)
865
+ at RUBY.initialize(/home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/builder.rb:55)
866
+
867
+ 2014-06-03 13:36:19 -0700 INFO: jruby 1.7.12 (1.9.3p392) 2014-04-15 643e292 on OpenJDK 64-Bit Server VM 1.7.0_55-b14 [linux-amd64]
868
+ 2014-06-03 13:36:19 -0700 INFO: using a shared (threadsafe!) runtime
869
+ 2014-06-03 13:36:30 -0700 INFO: 192.168.1.2 - [03/Jun/2014 13:36:30] "GET / " 200 35 1.1400
870
+ 2014-06-03 13:36:31 -0700 INFO: 192.168.1.2 - [03/Jun/2014 13:36:31] "GET / " 200 35 0.0210
871
+ 2014-06-03 13:36:36 -0700 INFO: ArgumentError - wrong number of arguments calling `initialize` (0 for 2):
872
+ /home/chris/game_machine/server/web/config.ru:15:in `HEAD /auth'
873
+ org/jruby/RubyMethod.java:124:in `call'
874
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1603:in `compile!'
875
+ org/jruby/RubyProc.java:271:in `call'
876
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:966:in `route!'
877
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:985:in `route_eval'
878
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:966:in `route!'
879
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1006:in `process_route'
880
+ org/jruby/RubyKernel.java:1264:in `catch'
881
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1004:in `process_route'
882
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:964:in `route!'
883
+ org/jruby/RubyArray.java:1613:in `each'
884
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:963:in `route!'
885
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1076:in `dispatch!'
886
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
887
+ org/jruby/RubyKernel.java:1264:in `catch'
888
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
889
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1073:in `dispatch!'
890
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:898:in `call!'
891
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
892
+ org/jruby/RubyKernel.java:1264:in `catch'
893
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
894
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:898:in `call!'
895
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:886:in `call'
896
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/xss_header.rb:18:in `call'
897
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/path_traversal.rb:16:in `call'
898
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/json_csrf.rb:18:in `call'
899
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call'
900
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call'
901
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/frame_options.rb:31:in `call'
902
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/logger.rb:15:in `call'
903
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/commonlogger.rb:33:in `call'
904
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:217:in `call'
905
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:210:in `call'
906
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/head.rb:11:in `call'
907
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/methodoverride.rb:21:in `call'
908
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/show_exceptions.rb:21:in `call'
909
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:180:in `call'
910
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:2014:in `call'
911
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1478:in `call'
912
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1788:in `synchronize'
913
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1478:in `call'
914
+ file:/home/chris/.rvm/gems/jruby-1.7.12/gems/jruby-rack-1.1.14/lib/jruby-rack-1.1.14.jar!/rack/handler/servlet.rb:22:in `call'
915
+ 2014-06-03 13:37:24 -0700 INFO: ArgumentError - wrong number of arguments calling `initialize` (0 for 2):
916
+ /home/chris/game_machine/server/web/config.ru:15:in `HEAD /auth'
917
+ org/jruby/RubyMethod.java:124:in `call'
918
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1603:in `compile!'
919
+ org/jruby/RubyProc.java:271:in `call'
920
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:966:in `route!'
921
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:985:in `route_eval'
922
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:966:in `route!'
923
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1006:in `process_route'
924
+ org/jruby/RubyKernel.java:1264:in `catch'
925
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1004:in `process_route'
926
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:964:in `route!'
927
+ org/jruby/RubyArray.java:1613:in `each'
928
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:963:in `route!'
929
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1076:in `dispatch!'
930
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
931
+ org/jruby/RubyKernel.java:1264:in `catch'
932
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
933
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1073:in `dispatch!'
934
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:898:in `call!'
935
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
936
+ org/jruby/RubyKernel.java:1264:in `catch'
937
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
938
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:898:in `call!'
939
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:886:in `call'
940
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/xss_header.rb:18:in `call'
941
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/path_traversal.rb:16:in `call'
942
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/json_csrf.rb:18:in `call'
943
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call'
944
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call'
945
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/frame_options.rb:31:in `call'
946
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/logger.rb:15:in `call'
947
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/commonlogger.rb:33:in `call'
948
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:217:in `call'
949
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:210:in `call'
950
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/head.rb:11:in `call'
951
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/methodoverride.rb:21:in `call'
952
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/show_exceptions.rb:21:in `call'
953
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:180:in `call'
954
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:2014:in `call'
955
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1478:in `call'
956
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1788:in `synchronize'
957
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1478:in `call'
958
+ file:/home/chris/.rvm/gems/jruby-1.7.12/gems/jruby-rack-1.1.14/lib/jruby-rack-1.1.14.jar!/rack/handler/servlet.rb:22:in `call'
959
+ 2014-06-03 13:37:24 -0700 INFO: 192.168.1.2 - [03/Jun/2014 13:37:24] "GET /__sinatra__/500.png " 304 - 0.0050
960
+ 2014-06-03 13:38:02 -0700 INFO: jruby 1.7.12 (1.9.3p392) 2014-04-15 643e292 on OpenJDK 64-Bit Server VM 1.7.0_55-b14 [linux-amd64]
961
+ 2014-06-03 13:38:02 -0700 INFO: using a shared (threadsafe!) runtime
962
+ 2014-06-03 13:38:08 -0700 INFO: ArgumentError - wrong number of arguments calling `login` (2 for 0):
963
+ /home/chris/game_machine/server/web/controllers/auth_controller.rb:6:in `process'
964
+ /home/chris/game_machine/server/web/config.ru:16:in `HEAD /auth'
965
+ org/jruby/RubyMethod.java:124:in `call'
966
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1603:in `compile!'
967
+ org/jruby/RubyProc.java:271:in `call'
968
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:966:in `route!'
969
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:985:in `route_eval'
970
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:966:in `route!'
971
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1006:in `process_route'
972
+ org/jruby/RubyKernel.java:1264:in `catch'
973
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1004:in `process_route'
974
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:964:in `route!'
975
+ org/jruby/RubyArray.java:1613:in `each'
976
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:963:in `route!'
977
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1076:in `dispatch!'
978
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
979
+ org/jruby/RubyKernel.java:1264:in `catch'
980
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
981
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1073:in `dispatch!'
982
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:898:in `call!'
983
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
984
+ org/jruby/RubyKernel.java:1264:in `catch'
985
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
986
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:898:in `call!'
987
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:886:in `call'
988
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/xss_header.rb:18:in `call'
989
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/path_traversal.rb:16:in `call'
990
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/json_csrf.rb:18:in `call'
991
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call'
992
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call'
993
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/frame_options.rb:31:in `call'
994
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/logger.rb:15:in `call'
995
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/commonlogger.rb:33:in `call'
996
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:217:in `call'
997
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:210:in `call'
998
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/head.rb:11:in `call'
999
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/methodoverride.rb:21:in `call'
1000
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/show_exceptions.rb:21:in `call'
1001
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:180:in `call'
1002
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:2014:in `call'
1003
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1478:in `call'
1004
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1788:in `synchronize'
1005
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1478:in `call'
1006
+ file:/home/chris/.rvm/gems/jruby-1.7.12/gems/jruby-rack-1.1.14/lib/jruby-rack-1.1.14.jar!/rack/handler/servlet.rb:22:in `call'
1007
+ 2014-06-03 13:38:08 -0700 INFO: 192.168.1.2 - [03/Jun/2014 13:38:08] "GET /__sinatra__/500.png " 304 - 0.0450
1008
+ 2014-06-03 13:38:12 -0700 INFO: ArgumentError - wrong number of arguments calling `login` (2 for 0):
1009
+ /home/chris/game_machine/server/web/controllers/auth_controller.rb:6:in `process'
1010
+ /home/chris/game_machine/server/web/config.ru:16:in `HEAD /auth'
1011
+ org/jruby/RubyMethod.java:124:in `call'
1012
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1603:in `compile!'
1013
+ org/jruby/RubyProc.java:271:in `call'
1014
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:966:in `route!'
1015
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:985:in `route_eval'
1016
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:966:in `route!'
1017
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1006:in `process_route'
1018
+ org/jruby/RubyKernel.java:1264:in `catch'
1019
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1004:in `process_route'
1020
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:964:in `route!'
1021
+ org/jruby/RubyArray.java:1613:in `each'
1022
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:963:in `route!'
1023
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1076:in `dispatch!'
1024
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
1025
+ org/jruby/RubyKernel.java:1264:in `catch'
1026
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
1027
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1073:in `dispatch!'
1028
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:898:in `call!'
1029
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
1030
+ org/jruby/RubyKernel.java:1264:in `catch'
1031
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
1032
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:898:in `call!'
1033
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:886:in `call'
1034
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/xss_header.rb:18:in `call'
1035
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/path_traversal.rb:16:in `call'
1036
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/json_csrf.rb:18:in `call'
1037
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call'
1038
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call'
1039
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/frame_options.rb:31:in `call'
1040
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/logger.rb:15:in `call'
1041
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/commonlogger.rb:33:in `call'
1042
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:217:in `call'
1043
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:210:in `call'
1044
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/head.rb:11:in `call'
1045
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/methodoverride.rb:21:in `call'
1046
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/show_exceptions.rb:21:in `call'
1047
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:180:in `call'
1048
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:2014:in `call'
1049
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1478:in `call'
1050
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1788:in `synchronize'
1051
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1478:in `call'
1052
+ file:/home/chris/.rvm/gems/jruby-1.7.12/gems/jruby-rack-1.1.14/lib/jruby-rack-1.1.14.jar!/rack/handler/servlet.rb:22:in `call'
1053
+ 2014-06-03 13:38:12 -0700 INFO: 192.168.1.2 - [03/Jun/2014 13:38:12] "GET /__sinatra__/500.png " 304 - 0.0050
1054
+ 2014-06-03 13:38:13 -0700 INFO: ArgumentError - wrong number of arguments calling `login` (2 for 0):
1055
+ /home/chris/game_machine/server/web/controllers/auth_controller.rb:6:in `process'
1056
+ /home/chris/game_machine/server/web/config.ru:16:in `HEAD /auth'
1057
+ org/jruby/RubyMethod.java:124:in `call'
1058
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1603:in `compile!'
1059
+ org/jruby/RubyProc.java:271:in `call'
1060
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:966:in `route!'
1061
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:985:in `route_eval'
1062
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:966:in `route!'
1063
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1006:in `process_route'
1064
+ org/jruby/RubyKernel.java:1264:in `catch'
1065
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1004:in `process_route'
1066
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:964:in `route!'
1067
+ org/jruby/RubyArray.java:1613:in `each'
1068
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:963:in `route!'
1069
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1076:in `dispatch!'
1070
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
1071
+ org/jruby/RubyKernel.java:1264:in `catch'
1072
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
1073
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1073:in `dispatch!'
1074
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:898:in `call!'
1075
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
1076
+ org/jruby/RubyKernel.java:1264:in `catch'
1077
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
1078
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:898:in `call!'
1079
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:886:in `call'
1080
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/xss_header.rb:18:in `call'
1081
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/path_traversal.rb:16:in `call'
1082
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/json_csrf.rb:18:in `call'
1083
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call'
1084
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call'
1085
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/frame_options.rb:31:in `call'
1086
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/logger.rb:15:in `call'
1087
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/commonlogger.rb:33:in `call'
1088
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:217:in `call'
1089
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:210:in `call'
1090
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/head.rb:11:in `call'
1091
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/methodoverride.rb:21:in `call'
1092
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/show_exceptions.rb:21:in `call'
1093
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:180:in `call'
1094
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:2014:in `call'
1095
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1478:in `call'
1096
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1788:in `synchronize'
1097
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1478:in `call'
1098
+ file:/home/chris/.rvm/gems/jruby-1.7.12/gems/jruby-rack-1.1.14/lib/jruby-rack-1.1.14.jar!/rack/handler/servlet.rb:22:in `call'
1099
+ 2014-06-03 13:38:13 -0700 INFO: 192.168.1.2 - [03/Jun/2014 13:38:13] "GET /__sinatra__/500.png " 304 - 0.0050
1100
+ 2014-06-03 13:38:14 -0700 INFO: ArgumentError - wrong number of arguments calling `login` (2 for 0):
1101
+ /home/chris/game_machine/server/web/controllers/auth_controller.rb:6:in `process'
1102
+ /home/chris/game_machine/server/web/config.ru:16:in `HEAD /auth'
1103
+ org/jruby/RubyMethod.java:124:in `call'
1104
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1603:in `compile!'
1105
+ org/jruby/RubyProc.java:271:in `call'
1106
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:966:in `route!'
1107
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:985:in `route_eval'
1108
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:966:in `route!'
1109
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1006:in `process_route'
1110
+ org/jruby/RubyKernel.java:1264:in `catch'
1111
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1004:in `process_route'
1112
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:964:in `route!'
1113
+ org/jruby/RubyArray.java:1613:in `each'
1114
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:963:in `route!'
1115
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1076:in `dispatch!'
1116
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
1117
+ org/jruby/RubyKernel.java:1264:in `catch'
1118
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
1119
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1073:in `dispatch!'
1120
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:898:in `call!'
1121
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
1122
+ org/jruby/RubyKernel.java:1264:in `catch'
1123
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
1124
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:898:in `call!'
1125
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:886:in `call'
1126
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/xss_header.rb:18:in `call'
1127
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/path_traversal.rb:16:in `call'
1128
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/json_csrf.rb:18:in `call'
1129
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call'
1130
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call'
1131
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/frame_options.rb:31:in `call'
1132
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/logger.rb:15:in `call'
1133
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/commonlogger.rb:33:in `call'
1134
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:217:in `call'
1135
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:210:in `call'
1136
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/head.rb:11:in `call'
1137
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/methodoverride.rb:21:in `call'
1138
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/show_exceptions.rb:21:in `call'
1139
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:180:in `call'
1140
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:2014:in `call'
1141
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1478:in `call'
1142
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1788:in `synchronize'
1143
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1478:in `call'
1144
+ file:/home/chris/.rvm/gems/jruby-1.7.12/gems/jruby-rack-1.1.14/lib/jruby-rack-1.1.14.jar!/rack/handler/servlet.rb:22:in `call'
1145
+ 2014-06-03 13:38:14 -0700 INFO: 192.168.1.2 - [03/Jun/2014 13:38:14] "GET /__sinatra__/500.png " 304 - 0.0040
1146
+ 2014-06-03 13:38:15 -0700 INFO: ArgumentError - wrong number of arguments calling `login` (2 for 0):
1147
+ /home/chris/game_machine/server/web/controllers/auth_controller.rb:6:in `process'
1148
+ /home/chris/game_machine/server/web/config.ru:16:in `HEAD /auth'
1149
+ org/jruby/RubyMethod.java:124:in `call'
1150
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1603:in `compile!'
1151
+ org/jruby/RubyProc.java:271:in `call'
1152
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:966:in `route!'
1153
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:985:in `route_eval'
1154
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:966:in `route!'
1155
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1006:in `process_route'
1156
+ org/jruby/RubyKernel.java:1264:in `catch'
1157
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1004:in `process_route'
1158
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:964:in `route!'
1159
+ org/jruby/RubyArray.java:1613:in `each'
1160
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:963:in `route!'
1161
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1076:in `dispatch!'
1162
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
1163
+ org/jruby/RubyKernel.java:1264:in `catch'
1164
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
1165
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1073:in `dispatch!'
1166
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:898:in `call!'
1167
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
1168
+ org/jruby/RubyKernel.java:1264:in `catch'
1169
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
1170
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:898:in `call!'
1171
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:886:in `call'
1172
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/xss_header.rb:18:in `call'
1173
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/path_traversal.rb:16:in `call'
1174
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/json_csrf.rb:18:in `call'
1175
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call'
1176
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call'
1177
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/frame_options.rb:31:in `call'
1178
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/logger.rb:15:in `call'
1179
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/commonlogger.rb:33:in `call'
1180
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:217:in `call'
1181
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:210:in `call'
1182
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/head.rb:11:in `call'
1183
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/methodoverride.rb:21:in `call'
1184
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/show_exceptions.rb:21:in `call'
1185
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:180:in `call'
1186
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:2014:in `call'
1187
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1478:in `call'
1188
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1788:in `synchronize'
1189
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1478:in `call'
1190
+ file:/home/chris/.rvm/gems/jruby-1.7.12/gems/jruby-rack-1.1.14/lib/jruby-rack-1.1.14.jar!/rack/handler/servlet.rb:22:in `call'
1191
+ 2014-06-03 13:38:15 -0700 INFO: 192.168.1.2 - [03/Jun/2014 13:38:15] "GET /__sinatra__/500.png " 304 - 0.0050
1192
+ 2014-06-03 13:38:49 -0700 INFO: jruby 1.7.12 (1.9.3p392) 2014-04-15 643e292 on OpenJDK 64-Bit Server VM 1.7.0_55-b14 [linux-amd64]
1193
+ 2014-06-03 13:38:49 -0700 INFO: using a shared (threadsafe!) runtime
1194
+ 2014-06-03 13:38:50 -0700 INFO: NameError - uninitialized constant Web::Controllers::AuthController::GameMachine:
1195
+ org/jruby/RubyModule.java:2690:in `const_missing'
1196
+ /home/chris/game_machine/server/web/controllers/auth_controller.rb:14:in `login'
1197
+ /home/chris/game_machine/server/web/controllers/auth_controller.rb:6:in `process'
1198
+ /home/chris/game_machine/server/web/config.ru:16:in `HEAD /auth'
1199
+ org/jruby/RubyMethod.java:124:in `call'
1200
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1603:in `compile!'
1201
+ org/jruby/RubyProc.java:271:in `call'
1202
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:966:in `route!'
1203
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:985:in `route_eval'
1204
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:966:in `route!'
1205
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1006:in `process_route'
1206
+ org/jruby/RubyKernel.java:1264:in `catch'
1207
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1004:in `process_route'
1208
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:964:in `route!'
1209
+ org/jruby/RubyArray.java:1613:in `each'
1210
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:963:in `route!'
1211
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1076:in `dispatch!'
1212
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
1213
+ org/jruby/RubyKernel.java:1264:in `catch'
1214
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
1215
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1073:in `dispatch!'
1216
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:898:in `call!'
1217
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
1218
+ org/jruby/RubyKernel.java:1264:in `catch'
1219
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
1220
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:898:in `call!'
1221
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:886:in `call'
1222
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/xss_header.rb:18:in `call'
1223
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/path_traversal.rb:16:in `call'
1224
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/json_csrf.rb:18:in `call'
1225
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call'
1226
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call'
1227
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/frame_options.rb:31:in `call'
1228
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/logger.rb:15:in `call'
1229
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/commonlogger.rb:33:in `call'
1230
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:217:in `call'
1231
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:210:in `call'
1232
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/head.rb:11:in `call'
1233
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/methodoverride.rb:21:in `call'
1234
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/show_exceptions.rb:21:in `call'
1235
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:180:in `call'
1236
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:2014:in `call'
1237
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1478:in `call'
1238
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1788:in `synchronize'
1239
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1478:in `call'
1240
+ file:/home/chris/.rvm/gems/jruby-1.7.12/gems/jruby-rack-1.1.14/lib/jruby-rack-1.1.14.jar!/rack/handler/servlet.rb:22:in `call'
1241
+ 2014-06-03 13:38:50 -0700 INFO: 192.168.1.2 - [03/Jun/2014 13:38:50] "GET /__sinatra__/500.png " 304 - 0.0200
1242
+ 2014-06-03 13:38:54 -0700 INFO: NameError - uninitialized constant Web::Controllers::AuthController::GameMachine:
1243
+ org/jruby/RubyModule.java:2690:in `const_missing'
1244
+ /home/chris/game_machine/server/web/controllers/auth_controller.rb:14:in `login'
1245
+ /home/chris/game_machine/server/web/controllers/auth_controller.rb:6:in `process'
1246
+ /home/chris/game_machine/server/web/config.ru:16:in `HEAD /auth'
1247
+ org/jruby/RubyMethod.java:124:in `call'
1248
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1603:in `compile!'
1249
+ org/jruby/RubyProc.java:271:in `call'
1250
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:966:in `route!'
1251
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:985:in `route_eval'
1252
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:966:in `route!'
1253
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1006:in `process_route'
1254
+ org/jruby/RubyKernel.java:1264:in `catch'
1255
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1004:in `process_route'
1256
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:964:in `route!'
1257
+ org/jruby/RubyArray.java:1613:in `each'
1258
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:963:in `route!'
1259
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1076:in `dispatch!'
1260
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
1261
+ org/jruby/RubyKernel.java:1264:in `catch'
1262
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
1263
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1073:in `dispatch!'
1264
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:898:in `call!'
1265
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
1266
+ org/jruby/RubyKernel.java:1264:in `catch'
1267
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
1268
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:898:in `call!'
1269
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:886:in `call'
1270
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/xss_header.rb:18:in `call'
1271
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/path_traversal.rb:16:in `call'
1272
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/json_csrf.rb:18:in `call'
1273
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call'
1274
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call'
1275
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/frame_options.rb:31:in `call'
1276
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/logger.rb:15:in `call'
1277
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/commonlogger.rb:33:in `call'
1278
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:217:in `call'
1279
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:210:in `call'
1280
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/head.rb:11:in `call'
1281
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/methodoverride.rb:21:in `call'
1282
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/show_exceptions.rb:21:in `call'
1283
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:180:in `call'
1284
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:2014:in `call'
1285
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1478:in `call'
1286
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1788:in `synchronize'
1287
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1478:in `call'
1288
+ file:/home/chris/.rvm/gems/jruby-1.7.12/gems/jruby-rack-1.1.14/lib/jruby-rack-1.1.14.jar!/rack/handler/servlet.rb:22:in `call'
1289
+ 2014-06-03 13:38:54 -0700 INFO: 192.168.1.2 - [03/Jun/2014 13:38:54] "GET /__sinatra__/500.png " 304 - 0.0040
1290
+ 2014-06-03 13:39:27 -0700 INFO: jruby 1.7.12 (1.9.3p392) 2014-04-15 643e292 on OpenJDK 64-Bit Server VM 1.7.0_55-b14 [linux-amd64]
1291
+ 2014-06-03 13:39:27 -0700 INFO: using a shared (threadsafe!) runtime
1292
+ 2014-06-03 13:39:42 -0700 INFO: NameError - uninitialized constant GameMachine:
1293
+ org/jruby/RubyModule.java:2690:in `const_missing'
1294
+ /home/chris/game_machine/server/web/controllers/auth_controller.rb:14:in `login'
1295
+ /home/chris/game_machine/server/web/controllers/auth_controller.rb:6:in `process'
1296
+ /home/chris/game_machine/server/web/config.ru:16:in `HEAD /auth'
1297
+ org/jruby/RubyMethod.java:124:in `call'
1298
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1603:in `compile!'
1299
+ org/jruby/RubyProc.java:271:in `call'
1300
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:966:in `route!'
1301
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:985:in `route_eval'
1302
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:966:in `route!'
1303
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1006:in `process_route'
1304
+ org/jruby/RubyKernel.java:1264:in `catch'
1305
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1004:in `process_route'
1306
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:964:in `route!'
1307
+ org/jruby/RubyArray.java:1613:in `each'
1308
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:963:in `route!'
1309
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1076:in `dispatch!'
1310
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
1311
+ org/jruby/RubyKernel.java:1264:in `catch'
1312
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
1313
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1073:in `dispatch!'
1314
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:898:in `call!'
1315
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
1316
+ org/jruby/RubyKernel.java:1264:in `catch'
1317
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1058:in `invoke'
1318
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:898:in `call!'
1319
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:886:in `call'
1320
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/xss_header.rb:18:in `call'
1321
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/path_traversal.rb:16:in `call'
1322
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/json_csrf.rb:18:in `call'
1323
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call'
1324
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/base.rb:49:in `call'
1325
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-protection-1.5.3/lib/rack/protection/frame_options.rb:31:in `call'
1326
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/logger.rb:15:in `call'
1327
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/commonlogger.rb:33:in `call'
1328
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:217:in `call'
1329
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:210:in `call'
1330
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/head.rb:11:in `call'
1331
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/rack-1.5.2/lib/rack/methodoverride.rb:21:in `call'
1332
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/show_exceptions.rb:21:in `call'
1333
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:180:in `call'
1334
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:2014:in `call'
1335
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1478:in `call'
1336
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1788:in `synchronize'
1337
+ /home/chris/.rvm/gems/jruby-1.7.12/gems/sinatra-1.4.5/lib/sinatra/base.rb:1478:in `call'
1338
+ file:/home/chris/.rvm/gems/jruby-1.7.12/gems/jruby-rack-1.1.14/lib/jruby-rack-1.1.14.jar!/rack/handler/servlet.rb:22:in `call'
1339
+ 2014-06-03 13:39:43 -0700 INFO: 192.168.1.2 - [03/Jun/2014 13:39:43] "GET /__sinatra__/500.png " 304 - 0.0250