Critical fix: defining Opencode::Rails as a module shadowed ::Rails
under Ruby's constant lookup whenever host code referenced top-level
Rails.something from inside the Opencode:: namespace.
Caught when host code in lib/opencode/containers/container.rb failed
to boot:
/workspaces/app/lib/opencode/containers/container.rb:433:
undefined method 'root' for module Opencode::Rails (NoMethodError)
"notes.md" => Rails.root.join(...)
Ruby resolved 'Rails' to 'Opencode::Rails' first (the gem's version
namespace) before falling back to ::Rails. The fix removes the
intermediate module entirely:
module Opencode
RAILS_VERSION = "0.0.1.alpha1"
end
Added a regression test (test_no_opencode_rails_module) so the
shadowing never sneaks back in. opencode-ruby uses Opencode::VERSION
for its own gem version; we can't double-up on that constant, so this
gem uses RAILS_VERSION as a sibling on the same Opencode module.
49 lines
2.1 KiB
Ruby
49 lines
2.1 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require_relative "lib/opencode/rails/version"
|
|
|
|
Gem::Specification.new do |spec|
|
|
spec.name = "opencode-rails"
|
|
spec.version = Opencode::RAILS_VERSION
|
|
spec.authors = ["Ajay Krishnan"]
|
|
spec.email = ["ajay@krishnan.ca"]
|
|
|
|
spec.summary = "Production-grade Rails integration for OpenCode."
|
|
spec.description = <<~DESC
|
|
Rails companion to opencode-ruby. ActiveRecord-aware session lifecycle
|
|
(idempotent ensure!/recreate!/abort! with row-level locks), a Turn
|
|
orchestrator that drives the Reply state machine + handles
|
|
session-not-found recovery, an artifact pipeline backed by
|
|
ActiveStorage, sandbox seeding, and tool-display value objects for
|
|
Turbo Stream broadcasts. Drop into any Rails 7.1+ app that wants
|
|
production-grade OpenCode streaming without rolling your own
|
|
boilerplate.
|
|
DESC
|
|
spec.homepage = "https://gitea.krishnan.ca/ajaynomics/opencode-rails"
|
|
spec.license = "MIT"
|
|
spec.required_ruby_version = ">= 3.2.0"
|
|
|
|
spec.metadata["source_code_uri"] = spec.homepage
|
|
spec.metadata["changelog_uri"] = "#{spec.homepage}/src/branch/main/CHANGELOG.md"
|
|
spec.metadata["bug_tracker_uri"] = "#{spec.homepage}/issues"
|
|
|
|
spec.files = Dir.glob("lib/**/*.rb") +
|
|
%w[README.md LICENSE CHANGELOG.md opencode-rails.gemspec]
|
|
spec.require_paths = ["lib"]
|
|
|
|
# The opencode-ruby gem provides the wire-level Client + Reply primitives
|
|
# this gem builds on. Versions are kept in lockstep during the alpha
|
|
# phase; will relax to a looser pessimistic pin once both gems stabilize.
|
|
spec.add_runtime_dependency "opencode-ruby", "~> 0.0.1.alpha1"
|
|
|
|
# Rails sub-libraries used at runtime. Depending on these individually
|
|
# (instead of the `rails` umbrella) avoids forcing host apps to load
|
|
# ActionMailer, ActionCable, ActionView, etc. just to use this gem.
|
|
spec.add_runtime_dependency "activerecord", ">= 7.1", "< 9.0"
|
|
spec.add_runtime_dependency "activestorage", ">= 7.1", "< 9.0"
|
|
spec.add_runtime_dependency "activesupport", ">= 7.1", "< 9.0"
|
|
|
|
spec.add_development_dependency "minitest", "~> 5.20"
|
|
spec.add_development_dependency "rake", "~> 13.0"
|
|
end
|