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/downloader.rb,
lib/active_storage/reflection.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/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/create_one.rb,
lib/active_storage/attached/changes/delete_one.rb,
lib/active_storage/attached/changes/create_many.rb,
lib/active_storage/attached/changes/delete_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/transformers/image_processing_transformer.rb
Defined Under Namespace
Modules: FileServer, Reflection, SetBlob, SetCurrent, SetHeaders, Transformers, VERSION Classes: AnalyzeJob, Analyzer, Attached, Attachment, BaseController, BaseJob, Blob, Current, DirectUploadsController, DiskController, Downloader, Engine, Error, FileNotFoundError, Filename, IntegrityError, InvariableError, LogSubscriber, MirrorJob, Preview, Previewer, PurgeJob, Record, Service, UnpreviewableError, UnrepresentableError, Variant, VariantRecord, VariantWithRecord, Variation
Class Method Summary collapse
-
.gem_version ⇒ Object
Returns the version of the currently loaded Active Storage as a
Gem::Version
. -
.version ⇒ Object
Returns the version of the currently loaded ActiveStorage as a
Gem::Version
.
Class Method Details
.gem_version ⇒ Object
Returns the version of the currently loaded 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 version of the currently loaded ActiveStorage as a Gem::Version
7 8 9 |
# File 'lib/active_storage/version.rb', line 7 def self.version gem_version end |