Module: ActiveStorage
- Extended by:
- ActiveSupport::Autoload
- Defined in:
- lib/active_storage.rb,
lib/active_storage/engine.rb,
lib/active_storage/errors.rb,
lib/active_storage/service.rb,
lib/active_storage/version.rb,
lib/active_storage/analyzer.rb,
lib/active_storage/attached.rb,
lib/active_storage/previewer.rb,
lib/active_storage/deprecator.rb,
lib/active_storage/downloader.rb,
lib/active_storage/reflection.rb,
lib/active_storage/fixture_set.rb,
lib/active_storage/gem_version.rb,
lib/active_storage/attached/one.rb,
lib/active_storage/attached/many.rb,
lib/active_storage/attached/model.rb,
lib/active_storage/log_subscriber.rb,
lib/active_storage/attached/changes.rb,
lib/active_storage/service/registry.rb,
lib/active_storage/service/s3_service.rb,
lib/active_storage/service/gcs_service.rb,
lib/active_storage/service/configurator.rb,
lib/active_storage/service/disk_service.rb,
lib/active_storage/analyzer/null_analyzer.rb,
lib/active_storage/service/mirror_service.rb,
lib/active_storage/analyzer/audio_analyzer.rb,
lib/active_storage/analyzer/image_analyzer.rb,
lib/active_storage/analyzer/video_analyzer.rb,
lib/active_storage/transformers/transformer.rb,
lib/active_storage/previewer/mupdf_previewer.rb,
lib/active_storage/previewer/video_previewer.rb,
lib/active_storage/attached/changes/purge_one.rb,
lib/active_storage/attached/changes/create_one.rb,
lib/active_storage/attached/changes/delete_one.rb,
lib/active_storage/attached/changes/detach_one.rb,
lib/active_storage/attached/changes/purge_many.rb,
lib/active_storage/analyzer/image_analyzer/vips.rb,
lib/active_storage/attached/changes/create_many.rb,
lib/active_storage/attached/changes/delete_many.rb,
lib/active_storage/attached/changes/detach_many.rb,
lib/active_storage/service/azure_storage_service.rb,
lib/active_storage/previewer/poppler_pdf_previewer.rb,
lib/active_storage/attached/changes/create_one_of_many.rb,
lib/active_storage/analyzer/image_analyzer/image_magick.rb,
lib/active_storage/transformers/image_processing_transformer.rb
Overview
:markup: markdown :include: ../README.md
Defined Under Namespace
Modules: DisableSession, FileServer, Reflection, SetBlob, SetCurrent, Streaming, Transformers, VERSION Classes: AnalyzeJob, Analyzer, Attached, Attachment, BaseController, BaseJob, Blob, Current, DirectUploadsController, DiskController, Downloader, Engine, Error, FileNotFoundError, Filename, FixtureSet, IntegrityError, InvariableError, LogSubscriber, MirrorJob, NamedVariant, Preview, PreviewError, PreviewImageJob, Previewer, PurgeJob, Record, Service, TransformJob, UnpreviewableError, UnrepresentableError, Variant, VariantRecord, VariantWithRecord, Variation
Class Method Summary collapse
-
.deprecator ⇒ Object
:nodoc:.
-
.gem_version ⇒ Object
Returns the currently loaded version of Active Storage as a
Gem::Version
. -
.version ⇒ Object
Returns the currently loaded version of Active Storage as a
Gem::Version
.
Class Method Details
.deprecator ⇒ Object
:nodoc:
4 5 6 |
# File 'lib/active_storage/deprecator.rb', line 4 def self.deprecator # :nodoc: @deprecator ||= ActiveSupport::Deprecation.new end |
.gem_version ⇒ Object
Returns the currently loaded version of Active Storage as a Gem::Version
.
5 6 7 |
# File 'lib/active_storage/gem_version.rb', line 5 def self.gem_version Gem::Version.new VERSION::STRING end |
.version ⇒ Object
Returns the currently loaded version of Active Storage as a Gem::Version
.
7 8 9 |
# File 'lib/active_storage/version.rb', line 7 def self.version gem_version end |