Class: RailsAssetslessContainer::Strategy::Base

Inherits:
Object
  • Object
show all
Defined in:
lib/rails_assetsless_container/strategy/base.rb

Direct Known Subclasses

AssetServer, Log

Instance Method Summary collapse

Instance Method Details

#after_sprockets(_path) ⇒ Object

Raises:

  • (NotImplementedError)


10
11
12
# File 'lib/rails_assetsless_container/strategy/base.rb', line 10

def after_sprockets(_path)
  raise NotImplementedError, SAVE_MSG
end

#after_webpacker(_path) ⇒ Object

Raises:

  • (NotImplementedError)


14
15
16
# File 'lib/rails_assetsless_container/strategy/base.rb', line 14

def after_webpacker(_path)
  raise NotImplementedError, SAVE_MSG
end

#write_sprockets_manifest(_path) ⇒ Object

Raises:

  • (NotImplementedError)


18
19
20
# File 'lib/rails_assetsless_container/strategy/base.rb', line 18

def write_sprockets_manifest(_path)
  raise NotImplementedError, WRITE_MSG
end

#write_webpacker_manifest(_path) ⇒ Object

Raises:

  • (NotImplementedError)


22
23
24
# File 'lib/rails_assetsless_container/strategy/base.rb', line 22

def write_webpacker_manifest(_path)
  raise NotImplementedError, WRITE_MSG
end