Module: ActiveStorage

Extended by:
ActiveSupport::Autoload
Defined in:
activestorage/lib/active_storage.rb,
activestorage/lib/active_storage/engine.rb,
activestorage/lib/active_storage/errors.rb,
activestorage/lib/active_storage/service.rb,
activestorage/lib/active_storage/version.rb,
activestorage/lib/active_storage/analyzer.rb,
activestorage/lib/active_storage/attached.rb,
activestorage/lib/active_storage/previewer.rb,
activestorage/lib/active_storage/downloader.rb,
activestorage/lib/active_storage/reflection.rb,
activestorage/lib/active_storage/downloading.rb,
activestorage/lib/active_storage/gem_version.rb,
activestorage/lib/active_storage/attached/one.rb,
activestorage/lib/active_storage/attached/many.rb,
activestorage/lib/active_storage/attached/model.rb,
activestorage/lib/active_storage/log_subscriber.rb,
activestorage/lib/active_storage/attached/changes.rb,
activestorage/lib/active_storage/service/registry.rb,
activestorage/lib/active_storage/service/s3_service.rb,
activestorage/lib/active_storage/service/gcs_service.rb,
activestorage/lib/active_storage/service/configurator.rb,
activestorage/lib/active_storage/service/disk_service.rb,
activestorage/lib/active_storage/analyzer/null_analyzer.rb,
activestorage/lib/active_storage/service/mirror_service.rb,
activestorage/lib/active_storage/analyzer/image_analyzer.rb,
activestorage/lib/active_storage/analyzer/video_analyzer.rb,
activestorage/lib/active_storage/transformers/transformer.rb,
activestorage/lib/active_storage/previewer/mupdf_previewer.rb,
activestorage/lib/active_storage/previewer/video_previewer.rb,
activestorage/lib/active_storage/attached/changes/create_one.rb,
activestorage/lib/active_storage/attached/changes/delete_one.rb,
activestorage/lib/active_storage/attached/changes/create_many.rb,
activestorage/lib/active_storage/attached/changes/delete_many.rb,
activestorage/lib/active_storage/service/azure_storage_service.rb,
activestorage/lib/active_storage/previewer/poppler_pdf_previewer.rb,
activestorage/lib/active_storage/attached/changes/create_one_of_many.rb,
activestorage/lib/active_storage/transformers/mini_magick_transformer.rb,
activestorage/lib/active_storage/transformers/image_processing_transformer.rb

Defined Under Namespace

Modules: Downloading, Reflection, Transformers, VERSION Classes: Analyzer, Attached, Downloader, Engine, Error, FileNotFoundError, IntegrityError, InvariableError, LogSubscriber, Previewer, Service, UnpreviewableError, UnrepresentableError

Class Method Summary collapse

Methods included from ActiveSupport::Autoload

autoload, autoload_at, autoload_under, autoloads, eager_autoload, eager_load!, extended

Class Method Details

.gem_versionObject

Returns the version of the currently loaded Active Storage as a Gem::Version.



5
6
7
# File 'activestorage/lib/active_storage/gem_version.rb', line 5

def self.gem_version
  Gem::Version.new VERSION::STRING
end

.versionObject

Returns the version of the currently loaded ActiveStorage as a Gem::Version



7
8
9
# File 'activestorage/lib/active_storage/version.rb', line 7

def self.version
  gem_version
end