ruby-on-rails - ... : wrong number of arguments (0 for 1+) 中的 gemspec 无效

标签 ruby-on-rails rubygems gemspecs

在我第一次尝试创建gem时,我遇到了这个错误

[rulers.gemspec] 中的 gemspec 无效:参数数量错误(0 代表 1+)

当我尝试构建它时(gem buildrules.gemspec)。

我已粘贴下面的 gemspec 文件的代码。

我哪里出错了?

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'rulers/version'

Gem::Specification.new do |spec|
  spec.name          = "rulers"
  spec.version       = Rulers::VERSION
  spec.authors       = ["Noffica"]
  spec.email         = ["<a href="https://stackoverflow.com/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="543139353d3814303b39353d3a7a373b39" rel="noreferrer noopener nofollow">[email protected]</a>"]

  spec.summary       = %q{An attempt to create a Rails-like framework...}
  spec.description   = %q{... written in Ruby.}
  spec.homepage      = ""

  # Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
  # delete this section to allow pushing this gem to any host.
  if spec.respond_to?(:metadata)
    spec.metadata['allowed_push_host'] = ""
  else
    raise "RubyGems 2.0 or newer is required to protect against public gem pushes."
  end

  spec.files         = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
  spec.bindir        = "exe"
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.add_development_dependency "bundler", "~> 1.10"
  spec.add_development_dependency "rake", "~> 10.0"
  spec.add_development_dependency "rspec"

  gem.add_runtime_dependency "rack"
end

最佳答案

倒数第二行应该是

spec.add_runtime_dependency "rack"

参数是spec,而不是gem

关于ruby-on-rails - ... : wrong number of arguments (0 for 1+) 中的 gemspec 无效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32342137/

相关文章:

ruby-on-rails - 如何在 Rails 中的表中设置默认数据?

ruby - 配置 i18n-tasks 丢失

ruby - 安装新 Ruby gem 时 RDoc::TopLevel:Class 的未定义方法 `reset'

ruby-on-rails - 在同一页面上创建多个非嵌套模型

ruby-on-rails - Rails:载波未初始化的恒定误差

ruby - 我如何在我的 gemspec 中使用来自 github 的依赖项?

ruby-on-rails - 如何将应用程序布局打包到 Ruby gem 中?

ruby - JRuby 中的 Gem 定义 : Ignore extconf. rb

ruby-on-rails - Ruby on Rails gem 让密码更安全?

ruby-on-rails - Ruby on Rails 配置 - Plaid Gem