lib/hashid/rails/configuration.rb in hashid-rails-0.6.0 vs lib/hashid/rails/configuration.rb in hashid-rails-0.7.0

- old
+ new

@@ -1,13 +1,14 @@ module Hashid module Rails class Configuration - attr_accessor :secret, :length, :alphabet + attr_accessor :secret, :length, :alphabet, :disable_find def initialize @secret = "" @length = 6 @alphabet = nil + @disable_find = false end end end end