Grape 非常适合 REST API。它不会为您构建模型。
你用的是数据库,比如sqlite、mysql、postgres等吗?
我真的很喜欢用于数据库连接的“续集”gem。
这是来自续集页面的好信息:
require "rubygems"
require "sequel"
# connect to an in-memory database
DB = Sequel.sqlite
# create an items table
DB.create_table :items do
primary_key :id
String :name
Float :price
end
# create a dataset from the items table
items = DB[:items]
# populate the table
items.insert(:name => 'abc', :price => 100)
items.insert(:name => 'def', :price => 120)
items.insert(:name => 'ghi', :price => 150)
# print out the number of records
puts "Item count: #{items.count}"
# print out the average price
puts "The average price is: #{items.avg(:price)}"
有关续集的更多信息,请参见http://sequel.rubyforge.org/