【问题标题】:when i try to push a gem to rubygems i get a message saying it's not allowed in gemspec when it is当我尝试将 gem 推送到 ruby​​gems 时,我收到一条消息,说它在 gemspec 中是不允许的
【发布时间】:2023-04-03 10:47:01
【问题描述】:

我正在尝试将 gem 推送到 ruby​​gems.org 并收到以下消息:

ERROR:  "https://rubygems.org" is not allowed by the gemspec, which only allows "Set to 'http://mygemserver.com'"

通用 mygemserver 条目是 gemspec 的那一行中的默认条目,我已将其更改为 ruby​​gems URL,但无济于事。

这是我的宝石规格:

# coding: utf-8



lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
# require 'seed_me_seymour/version'

Gem::Specification.new do |spec|
  spec.name          = "seed_me_seymour"
  spec.version       = SeedMeSeymour::VERSION
  spec.authors       = ["Tony S.", "Brandon G." ]
  spec.email         = ["saric.tony@gmail.com\n", "bmg.oak@gmail.com\n"]

  spec.summary       = %q{This gem will analyze your current database and make a seed file with pre-populated seed information using faker}
  spec.homepage      = "https://github.com/antoniosaric/seed_me_seymour"

  # Prevent pushing this gem to   RubyGems.org. To allow pushes either set the 'allowed_push_host'
  # to allow pushing to a single host or delete this section to allow pushing to any host.
  if spec.respond_to?(:metadata)
    spec.metadata['allowed_push_host'] = "https://rubygems.org"
  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 do |f|
    f.match(%r{^(test|spec|features)/})
  end
  spec.bindir        = "exe"
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.add_development_dependency "bundler", "~> 1.14"
  spec.add_development_dependency "rake", "~> 10.0"
end

这是我的仓库中这个文件的副本:

https://github.com/antoniosaric/seed_me_seymour/blob/create/seed_me_seymour.gemspec

我完全不知所措。有没有其他人遇到过这个或知道这里发生了什么?谢谢

【问题讨论】:

    标签: rubygems gemspecs


    【解决方案1】:

    更新此内容以防有人遇到同样的问题。不太确定是什么问题,但我最终重新开始。

    我最初使用这些说明来创建我的 gem:
    http://bundler.io/rubygems.html

    我清除了我的 github 存储库,并按照以下说明从头开始:

    http://guides.rubygems.org/make-your-own-gem/

    在此之后,我能够毫无问题地将我的宝石向上推。

    【讨论】:

      猜你喜欢
      • 2021-10-11
      • 1970-01-01
      • 2021-10-17
      • 1970-01-01
      • 2020-12-15
      • 2015-09-18
      • 1970-01-01
      • 2019-08-13
      • 2014-05-03
      相关资源
      最近更新 更多