You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm not sure if stickler is supposed to run on windows or not. It comes with .cmd wrappers for the stickler and stickler-server commands, but that could just be auto-gen code.
Anyway, after patching some binmodes into local.rb
tempfile = Tempfile.new( "uploaded-gem.", temp_dir )
tempfile.binmode
tempfile.write( io.read )
and
def install_gem( spec, io )
File.open( full_path_to_gem( spec ) , "w+" ) do |of|
of.binmode
io.each do |str|
of.write( str )
end
end
end
and "deactivating" syslog in the logable.rb it seems to work.
But the question is, should it...?
The text was updated successfully, but these errors were encountered:
@xrmb Yes, the .cmd wrappers are autogen by rubygems on installation. And those are totally reasonable suggestions. Stickler is long overdue for an update especially since it doesn't support the bundler api. so that may be a project coming up.
I'm not sure if stickler is supposed to run on windows or not. It comes with .cmd wrappers for the stickler and stickler-server commands, but that could just be auto-gen code.
Anyway, after patching some binmodes into local.rb
tempfile = Tempfile.new( "uploaded-gem.", temp_dir )
tempfile.binmode
tempfile.write( io.read )
and
and "deactivating" syslog in the logable.rb it seems to work.
But the question is, should it...?
The text was updated successfully, but these errors were encountered: