Felix Wolfsteller
Felix Wolfsteller
> Also, may want to call them "callback methods" rather than "template methods"... There is no reference to "template" in the code. We currently run a fork of `devise-pwned_password` with...
thanks @Klap-in . The given version is the latest in ubuntu 14.04 LTS. As far as I understand, the dokuwiki bureaucracy plugin page lists it as compatible ("blinky"). If I...
This plugin seems superseeded by `storage`(http://dokku.viewdocs.io/dokku/dokku-storage/)
As the error points to bin/vedeu:16 it seems to me that `Bundler.setup` gets the evil things going. The documentation is at http://bundler.io/v1.10/bundler_setup.html (maybe it should be `Bundler.setup(:default)`?). **Quick update:** Removing...
Thanks @aldesantis , unfortunately that one doesnt work either.
To be clear what else I tried: ```ruby # app/models/spree/address/optional_phone.rb module Spree::Address::OptionalPhone def require_phone? false end Spree::Address.prepend self end ``` ```bash $ pkill -f spring # just be sure $...
> @fwolfst can you clarify? What do you see when you open a console and type `Spree::Address.ancestors`? ``` [Spree::Address (call 'Spree::Address.connection' to establish a connection), Spree::Address::GeneratedAssociationMethods, Spree::Address::GeneratedAttributeMethods, Spree::Base(abstract), Spree::RansackableAttributes, Spree::Preferences::Preferable,...
Probably I have a typo in a file name or something, but then I probably have to go to an optician. If I execute `Spree::Address.prepend Soshop::Spree::Address::MakePhoneOptional` in a Rails console,...
What I understand: - the idea is that the module autoloads and prepends itself "against" the `Spree::Address` model. - in my case (and this is a vanilla install, except for...
> You need to tell rails to load decorators folder as well: > > ``` > config.to_prepare do > Dir.glob(File.join(File.dirname(__FILE__), '../app/**/decorators/**/*.rb')) do |klass| > require_dependency(klass) > end > end >...