summaryrefslogtreecommitdiff
path: root/lib/rubygems/source
diff options
context:
space:
mode:
-rw-r--r--lib/rubygems/source/git.rb2
-rw-r--r--lib/rubygems/source/installed.rb2
-rw-r--r--lib/rubygems/source/local.rb2
-rw-r--r--lib/rubygems/source/lock.rb2
-rw-r--r--lib/rubygems/source/specific_file.rb2
-rw-r--r--lib/rubygems/source/vendor.rb2
6 files changed, 6 insertions, 6 deletions
@@ -1,4 +1,4 @@
-# frozen_string_literal: false
require 'digest'
require 'rubygems/util'
@@ -1,4 +1,4 @@
-# frozen_string_literal: false
##
# Represents an installed gem. This is used for dependency resolution.
@@ -1,4 +1,4 @@
-# frozen_string_literal: false
##
# The local source finds gems in the current directory for fulfilling
# dependencies.
@@ -1,4 +1,4 @@
-# frozen_string_literal: false
##
# A Lock source wraps an installed gem's source and sorts before other sources
# during dependency resolution. This allows RubyGems to prefer gems from
@@ -1,4 +1,4 @@
-# frozen_string_literal: false
##
# A source representing a single .gem file. This is used for installation of
# local gems.
@@ -1,4 +1,4 @@
-# frozen_string_literal: false
##
# This represents a vendored source that is similar to an installed gem.