Wojtek Kruszewski
Wojtek Kruszewski
ft is eruby, but eruby plugin internally differentiates between "subtypes", e.g. to change indent for .js.erb only you can do: ``` autocmd FileType eruby \ if b:eruby_subtype ==# 'javascript' \...
asset_packager would have to scan for relative patchs and replace them with absolute ones. Can be implemented, but definitely not trivial. And I suspect the solution would be error-prone.
It's probably due to Railtie not loading: ``` ::PaperTrail::Version.include(::PaperTrailAssociationTracking::VersionConcern) ``` https://github.com/westonganger/paper_trail-association_tracking/blob/master/lib/paper_trail_association_tracking/frameworks/rails/railtie.rb#L13 I opted to manually add the associatio: ```ruby class WidgetVersion < ActiveRecord::Base include PaperTrail::VersionConcern has_many :version_associations, class_name: 'PaperTrail::VersionAssociation', foreign_key:...
I'd love to have that feature too
@ProGM downgrading ruby to 2.3.1 from 2.3.3 fixed the problem for me. MacOS Sierra 10.12.6, RVM.
@jhenkens can you submit a pull request?
Actually, only now I realized `warden.set_user(new_user, :scope => :user)` in the controller is all it takes to switch user. I removed switch_user gem and added some custom code for my...
Works for me. I had to tweak status command, otherwise git-radar would always run in the same directory, regardless of pane: ``` set -g status-right '#(cd "#{pane_current_path}" && git-radar --tmux)'...