我正在尝试将gem推送到rubygems.org并收到此消息:
ERROR: "https://rubygems.org" is not allowed by the gemspec, which only allows "Set to 'http://mygemserver.com'"
通用mygemserver条目是gemspec那行中的默认条目,我已将其更改为rubygems URL无效。
这是我的gemspec:
# 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
我完全失去了。有没有其他人遇到这个或知道这里发生了什么?感谢
答案 0 :(得分:0)
如果有人遇到同样的问题,请更新此信息。不确定问题是什么,但我最终重新开始了。
我最初使用这些说明来创建我的宝石:
http://bundler.io/rubygems.html
我擦掉了我的github repo,并从头开始使用这些说明:
http://guides.rubygems.org/make-your-own-gem/
在此之后,我能够毫无问题地推动我的宝石。