Skip to content

Instantly share code, notes, and snippets.

View SuperTux88's full-sized avatar

Benjamin Neff SuperTux88

  • REWE digital
  • Cologne
  • 11:35 (UTC +02:00)
View GitHub Profile
@SuperTux88
SuperTux88 / freeze.md
Created April 11, 2018 13:11 — forked from denschub/freeze.md
diaspora release announcement templates

diaspora* |VERSION| freeze

As scheduled, we froze diaspora* minor release |VERSION|. Please check the Changelog for more information on changes included in this release.

Please help us test the RC before the minor gets released next Sunday. To get the code, run git pull; git checkout release/|VERSION| on your development pod. Please be aware that this is a release candidate and, although we did careful testing, bugs may occur. Please follow the usual update instructions to get your testing system updated.


Next release (|THIS_RELEASE|): |THIS_RELEASE_DATE|
Next minor freeze (|NEXT_FREEZE|): |NEXT_FREEZE_DATE|

@SuperTux88
SuperTux88 / .gitignore
Created October 22, 2017 18:38
diaspora-tool to read emails and disable email notfications
config.rb

Keybase proof

I hereby claim:

  • I am supertux88 on github.
  • I am supertux88 (https://keybase.io/supertux88) on keybase.
  • I have a public key ASBCIdwqOMiT5SiCXBNeJUWh_tUqSxIrfCZ-lSdo4ILFzAo

To claim this, I am signing this object:

@SuperTux88
SuperTux88 / fix-deprecation-warning.rb
Created June 4, 2015 00:06
Fix ActiveRecord Deprecation Warning
current_behavior = ActiveSupport::Deprecation.behavior
ActiveSupport::Deprecation.behavior = lambda do |message, callstack|
return if message =~ /`serialized_attributes` is deprecated without replacement/ && callstack.any? { |m| m =~ /fixture_builder\/builder.rb:(96|97)/ }
Array.wrap(current_behavior).each { |behavior| behavior.call(message, callstack) }
end