1 Star 0 Fork 0

NATS/nats-pure.rb

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Gemfile 499 Bytes
一键复制 编辑 原始数据 按行查看 历史
Vladimir Dementyev 提交于 2025-01-06 12:34 . Gem housekeeping, pt. 1
# frozen_string_literal: true
source "https://rubygems.org"
gemspec
# Rails deps
unless ENV["SKIP_RAILS"] == "true"
gem 'rails', require: false
gem 'sqlite3', require: false
end
# Dev deps
gem "debug", platform: :mri unless ENV["CI"]
gem 'ruby-progressbar'
eval_gemfile "gemfiles/rubocop.gemfile"
local_gemfile = ENV.fetch("LOCAL_GEMFILE") { File.expand_path("../Gemfile.local", __dir__) }
if File.exist?(local_gemfile)
eval(File.read(local_gemfile)) # rubocop:disable Security/Eval
end
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/nats-io/nats-pure.rb.git
[email protected]:nats-io/nats-pure.rb.git
nats-io
nats-pure.rb
nats-pure.rb
main

搜索帮助