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.
我刚开始使用 Ruby on Rails,需要使用 RubyXL gem (https://github.com/gilt/rubyXL)。其他开发人员之一告诉我使用捆绑安装。但是,如果我运行“bundle install ./rubyXL-1.2.10.gem”,我似乎无法获得正确的语法,我会得到“安装”被错误地调用。调用为“bundle install”。”。我如何使用外滩
你想要gem install ./rubyXL-1.2.10.gem。
gem install ./rubyXL-1.2.10.gem
如果您需要捆绑器,您可以添加
gem 'rubyXL', :path => '_path_to_file_' 给你的Gemfile
gem 'rubyXL', :path => '_path_to_file_'
Gemfile