我已逐步遵循本教程:https://wildandcrazytutorials.wordpress.com/2016/03/05/how-to-build-a-grape-standalone-rest-api/
然而我收到错误:
Puma starting in single mode...
Version 3.6.2 (ruby 2.2.2-p95), codename: Sleepy Sunday Serenity
Min threads: 0, max threads: 16
Environment: development
ERROR: No application configured, nothing to run
当我在In ./myapp中运行puma
我在MacOs上运行它。
我是葡萄新手,我会喜欢一些指导。我只是简单地按照教程“在每次更改后运行以下命令启动服务器......
在./myapp
$ puma“
答案 0 :(得分:0)
我从Daniel {https://groups.google.com/forum/#!forum/ruby-grape
得到了答案出现语法错误,下面的代码修复了我的问题,我很感激。
require 'rubygems'
require 'grape'
Dir.glob("**/*.rb").each do |f|
puts "Loaded #{f}"
require_relative "../#{f}" unless File.absolute_path(f) == __FILE__
end