Skip to content
Merged
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
11 changes: 6 additions & 5 deletions lib/rubygems/package.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@
# Copyright (C) 2004 Mauricio Julio Fernández Pradier
# See LICENSE.txt for additional licensing information.
#++
#

require_relative "../rubygems"
require_relative 'security'
require_relative 'user_interaction'

##
# Example using a Gem::Package
#
# Builds a .gem file given a Gem::Specification. A .gem file is a tarball
Expand Down Expand Up @@ -41,10 +46,6 @@
# #files are the files in the .gem tar file, not the Ruby files in the gem
# #extract_files and #contents automatically call #verify

require_relative "../rubygems"
require_relative 'security'
require_relative 'user_interaction'

class Gem::Package
include Gem::UserInteraction

Expand Down