mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00

These offenses appear when you create a gem with `bundle gem foo` and run `rubocop` over it. Initially, there were around 45 offenses detected, but with #3731 and this, the number of offenses have been reduced to 2. Signed-off-by: Utkarsh Gupta <utkarsh@debian.org> https://github.com/rubygems/rubygems/commit/fe9dcaa1b4
16 lines
397 B
Text
16 lines
397 B
Text
# frozen_string_literal: true
|
|
|
|
#!/usr/bin/env ruby
|
|
|
|
require "bundler/setup"
|
|
require "<%= config[:namespaced_path] %>"
|
|
|
|
# You can add fixtures and/or initialization code here to make experimenting
|
|
# with your gem easier. You can also use a different console, if you like.
|
|
|
|
# (If you use this, don't forget to add pry to your Gemfile!)
|
|
# require "pry"
|
|
# Pry.start
|
|
|
|
require "irb"
|
|
IRB.start(__FILE__)
|