class Avo::Licensing::License

def lacks_with_trial(ability)

Returns if lacks ability and if is a valid license or app is in development.
def lacks_with_trial(ability)
  !can(ability) && (valid? || Rails.env.development? || Rails.env.test?)
end