0

我创建了一个新的 Rails 项目rails new app。然后命令提示符显示了一些文件的创建,然后显示run bundle install并显示了一些内容。

但是,然后我更改了 Gemfile 以添加一些新的 gem,然后bundle install再次运行以安装这些 gem,但invalid argument出现错误。那么,如何运行捆绑安装?

Rails 版本:3.2.1,Ruby 版本:1.9.3

这是宝石文件

source 'https://rubygems.org'

gem 'rails', '3.2.1'

# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'

gem 'sqlite3'


# Gems used only for assets and not required
# in production environments by default.
group :assets do
  gem 'sass-rails',   '~> 3.2.3'
  gem 'coffee-rails', '~> 3.2.1'

  # See https://github.com/sstephenson/execjs#readme for more supported runtimes
  # gem 'therubyracer'

  gem 'uglifier', '>= 1.0.3'
end

group :development do
  gem 'rspec-rails', '2.0.0.beta.18'
end

group :test do
    gem 'rspec', '2.0.0.beta.18'
end

gem 'jquery-rails'

更新

事实证明,我之前安装了一个叫做 MoSync 的东西,它可能附带了一个 bundle 命令。所以,当我输入 时bundle install,它试图运行其他东西但找不到有效的参数。

当我bundle在 powershell 中输入并看到以下内容时,情况变得很清楚:

MAUtil::MAFS Bundle tool

This tool is used to build a binary image of a folder on a desktop computer.

Usage:
bundle <parameters>

Parameters:
  -in <input file or folder> the input files or folders to add to the
                             image (multiple -in directives may be added).
  -out <output file>         the name of the image to be created (only one).
  -toUpper/-toLower          change case of all file names to upper or lower
                             case.

Example:
  bundle -in data -out anotherworld.bun -toLower
4

3 回答 3

2

您将需要使用以下命令创建别名doskey

doskey bundull=C:\ruby\bin\bundle
bundull install

或者使用完整路径运行它:

C:\ruby\bin\bundle install

请注意,应将 C:\ruby\ 更改为您安装 Rails Installer 的路径。

您还可以C:\ruby\通过转到“控制面板>系统>环境变量(底部的按钮)”然后编辑路径并将Rails Installer的路径向上移动(在其他任何东西之前)来调整路径并使其最重要。这样做方法将防止将来出现 Rails 错误,但有时您必须调整路径,因为其他东西可以在安装时调整您的路径。

于 2012-12-29T00:21:00.837 回答
0

好像您正在运行 Windows 操作系统。也许它可能是某个地方的隐藏角色?最简单的方法是安装 RVM(Ruby 版本管理器)之类的东西。我相信它是适用于 Windows 的 Pik(https://github.com/vertiginous/pik/)。再次尝试安装。

也尝试删除“beta”之后的所有内容

2.0.0.beta.18

让它

宝石'rspec-rails','2.0.0.beta'

于 2012-12-28T10:23:18.027 回答
0
MAUtil::MAFS Bundle tool

This tool is used to build a binary image of a folder on a desktop computer.

Usage:
bundle <parameters>

Parameters:
  -in <input file or folder> the input files or folders to add to the
                             image (multiple -in directives may be added).
  -out <output file>         the name of the image to be created (only one).
  -toUpper/-toLower          change case of all file names to upper or lower
                             case.

Example:
  bundle -in data -out anotherworld.bun -toLower

从 Mosync 执行的捆绑命令。检查此链接。 http://www.mosync.com/docs/sdk/cpp/guides/storage/mafs-library/index.html

[解决方案 1] 从 SYSTEM PATH 中删除 Mosync,然后再次尝试使用 bundle。

[解决方案 2] 直接访问 bundle for ruby

C:\Ruby193\bin\bundle install
于 2013-09-29T13:20:01.993 回答