Commit c62c484
Remove unnecessary :require option from Gemfile example
`Bundler.require` automatically loads lib/rack/cors.rb even if there is no :require option.
This can be verified by the following code:
```rb
require "bundler/inline"
gemfile do
source "https://rubygems.org"
gem "rack-cors"
end
puts defined?(Rack::Cors)
```
```
$ ruby example.rb
constant
```
cf. https://guides.rubygems.org/name-your-gem/1 parent 30f63a7 commit c62c484
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
13 | 13 | | |
14 | 14 | | |
15 | 15 | | |
16 | | - | |
| 16 | + | |
17 | 17 | | |
18 | 18 | | |
19 | 19 | | |
| |||
0 commit comments