Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion administrate-field-enum.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ Gem::Specification.new do |s|
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")

s.add_dependency 'administrate', '~> 0.12'
s.add_dependency 'administrate', '~> 0.12, < 2.0'
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bug: Administrate Version Constraint Issue

The administrate dependency constraint ~> 0.12, < 2.0 doesn't enable administrate 1.x compatibility. The ~> 0.12 operator restricts versions to less than 1.0.0, making the < 2.0 part redundant and preventing the intended 1.x support.

Fix in Cursor Fix in Web

end