Sha256: 84c02ead6098d3296a7799e749dfd9d6761a79c64fe1c68a937583b47b6e6e08

Contents?: true

Size: 235 Bytes

Versions: 5

Compression:

Stored size: 235 Bytes

Contents

module Avo
  module Licensing
    class NullLicense < License
      def initialize(response = nil)
        response ||= {
          id: 'community',
          valid: true,
        }

        super(response)
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
avo-0.5.0.beta9 lib/avo/licensing/null_license.rb
avo-0.5.0.beta8 lib/avo/licensing/null_license.rb
avo-0.5.0.beta7 lib/avo/licensing/null_license.rb
avo-0.5.0.beta6 lib/avo/licensing/null_license.rb
avo-0.5.0.beta5 lib/avo/licensing/null_license.rb