diff options
author | David RodrÃguez <[email protected]> | 2023-12-15 17:02:15 +0100 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2023-12-16 10:04:38 +0800 |
commit | c8e9cd2b8b65e58e48d4ca14203c5a5d08a2d728 (patch) | |
tree | 11c755e9b8f88efa571a0072541a04f9a8e621dd /lib | |
parent | b8074c2f043d99f6f30ab75ad21cc2c998f49dcf (diff) |
[rubygems/rubygems] Fix Ruby DSL no longer working as expected
https://github.com/rubygems/rubygems/commit/f6258e5679
Co-authored-by: AndrewSwerlick <[email protected]>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/bundler/dsl.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/dsl.rb b/lib/bundler/dsl.rb index 5add07c1dd..a67f7ed8a1 100644 --- a/lib/bundler/dsl.rb +++ b/lib/bundler/dsl.rb @@ -20,7 +20,7 @@ module Bundler GITHUB_PULL_REQUEST_URL = %r{\Ahttps://github\.com/([A-Za-z0-9_\-\.]+/[A-Za-z0-9_\-\.]+)/pull/(\d+)\z} - attr_reader :gemspecs + attr_reader :gemspecs, :gemfile attr_accessor :dependencies def initialize |