module Flash::Integration

Constants

VERSION

When updating version, keep in mind Semantic Versioning semver.org/ TL;DR; (Major.Minor.Patch) Releases before 1.0.0 are in active development and can change anytime 1.0.0 and up is indication and declaration of a stable public API Major - Incremented for incompatible changes with previous release (or big enough new features) Minor - Incremented for new backwards-compatible features + deprecations Patch - Incremented for backwards-compatible bug fixes

Attributes

configuration[W]

Public Class Methods

configuration() click to toggle source
# File lib/flash_integration.rb, line 15
def configuration
  @configuration ||= Configuration.new
end
configure() { |configuration| ... } click to toggle source
# File lib/flash_integration.rb, line 20
def self.configure
  self.configuration ||= Configuration.new

  yield(configuration)
end