Sha256: 5b34f3e82b99c5646dcce236b13e1bddb9ceb510b484bb3a83362647d38d6be0
Contents?: true
Size: 341 Bytes
Versions: 12
Compression:
Stored size: 341 Bytes
Contents
# nodoc module ActionTracker class << self attr_accessor :configuration def configuration @configuration ||= Configuration.new end end def self.configure yield(configuration) end # nodoc class Configuration attr_accessor :track_events def initialize @track_events = true end end end
Version data entries
12 entries across 12 versions & 1 rubygems