Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我只需要sinatra/base,但我不知道如何使用捆绑器来做到这一点。因为在Gemfile我不能给它'sinatra/base',而是给它gem名称sinatra。
sinatra/base
Gemfile
sinatra
任何想法?
在您的 Gemfile 中使用以下语法:
gem "sinatra", "X.Y.Z", :require => "sinatra/base"
然后,您可以使用 #require 方法通过捆绑程序要求它:
Bundler.require :default