Class: Embork::Extension
- Inherits:
-
Object
- Object
- Embork::Extension
- Defined in:
- lib/embork/extension.rb
Instance Attribute Summary collapse
-
#project_root ⇒ Object
readonly
Returns the value of attribute project_root.
Instance Method Summary collapse
- #helpers ⇒ Object
-
#initialize(project_root, options = {}) ⇒ Extension
constructor
A new instance of Extension.
Constructor Details
#initialize(project_root, options = {}) ⇒ Extension
Returns a new instance of Extension.
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
# File 'lib/embork/extension.rb', line 7 def initialize(project_root, = {}) # Set up defaults bundled_assets = [:bundled_assets] || false environment = [:environment] || nil @environment = environment || ENV['RACK_ENV'] || Embork.env Embork.env = @environment @project_root = project_root if bundled_assets version_file_path = File.join(project_root, 'build', @environment.to_s, 'current-version') @bundle_version = File.read(version_file_path).strip @use_bundled_assets = true end end |
Instance Attribute Details
#project_root ⇒ Object (readonly)
Returns the value of attribute project_root.
5 6 7 |
# File 'lib/embork/extension.rb', line 5 def project_root @project_root end |