Skip to content

Commit 809bce0

Browse files
authored
Merge pull request rails#48904 from p8/doc/use-sdoc-main-on-edge
Use sdoc main branch for edge API docs
2 parents 8ec27a4 + 8d08867 commit 809bce0

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Gemfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,11 @@ group :mdl do
5959
end
6060

6161
group :doc do
62-
gem "sdoc", ">= 2.6.0"
62+
if ENV["EDGE"]
63+
gem "sdoc", git: "https://github.com/rails/sdoc.git", branch: "main"
64+
else
65+
gem "sdoc", ">= 2.6.0"
66+
end
6367
gem "rdoc", "~> 6.5"
6468
gem "redcarpet", "~> 3.2.3", platforms: :ruby
6569
gem "w3c_validators", "~> 1.3.6"

0 commit comments

Comments
 (0)