Class: Tebako::Packager::RubygemsPatch
- Defined in:
- lib/tebako/packager/rubygems_patch.rb
Overview
Shared accross Pass1Patch and RybugemsUpdatePatch
Direct Known Subclasses
Constant Summary collapse
- RUBYGEMS_OPENSSL_RB_SUBST =
"# Start of tebako patch\nrequire \"openssl\"\n# End of tebako patch\nautoload :OpenSSL, \"openssl\"\n"- RUBYGEMS_OPENSSL_RB_PATCH =
{ 'autoload :OpenSSL, "openssl"' => RUBYGEMS_OPENSSL_RB_SUBST }.freeze
Instance Method Summary collapse
-
#initialize(mount_point) ⇒ RubygemsPatch
constructor
A new instance of RubygemsPatch.
Methods inherited from Patch
Constructor Details
#initialize(mount_point) ⇒ RubygemsPatch
Returns a new instance of RubygemsPatch.
45 46 47 48 |
# File 'lib/tebako/packager/rubygems_patch.rb', line 45 def initialize(mount_point) super() @mount_point = mount_point end |