Ruby bundle exec 默默地失败 运行 gem
Ruby bundle exec silently fails to run gem
我在 CentOS 7.1 x86_64
上有 Ruby 2.1.5p273
和 RubyGems v2.4.6
。当我 运行 bundle exec bin/awesome_app
时,屏幕上没有任何错误,我的应用程序也没有 运行。但是,打开 --verbose 后,我看到了这个:
$ bundle --verbose exec bin/recall_app
ERROR: "bundle install" was called with arguments ["exec", "bin/recall_app"]
Usage: "bundle install [OPTIONS]"
不过,我已经运行bundle install
在gem的目录中了。我不确定我还需要做什么。
根据您的要求:要 运行 带有捆绑器的 Sinatra
应用程序,命令是 bundle exec ruby your_main_app_file.rb
。
我在 CentOS 7.1 x86_64
上有 Ruby 2.1.5p273
和 RubyGems v2.4.6
。当我 运行 bundle exec bin/awesome_app
时,屏幕上没有任何错误,我的应用程序也没有 运行。但是,打开 --verbose 后,我看到了这个:
$ bundle --verbose exec bin/recall_app
ERROR: "bundle install" was called with arguments ["exec", "bin/recall_app"]
Usage: "bundle install [OPTIONS]"
不过,我已经运行bundle install
在gem的目录中了。我不确定我还需要做什么。
根据您的要求:要 运行 带有捆绑器的 Sinatra
应用程序,命令是 bundle exec ruby your_main_app_file.rb
。