Class: Dato::Dump::Runner
- Inherits:
-
Object
- Object
- Dato::Dump::Runner
- Defined in:
- lib/dato/dump/runner.rb
Instance Attribute Summary collapse
-
#client ⇒ Object
readonly
Returns the value of attribute client.
-
#config_path ⇒ Object
readonly
Returns the value of attribute config_path.
-
#destination_path ⇒ Object
readonly
Returns the value of attribute destination_path.
-
#loader ⇒ Object
readonly
Returns the value of attribute loader.
-
#preview_mode ⇒ Object
readonly
Returns the value of attribute preview_mode.
Instance Method Summary collapse
-
#initialize(config_path, client, preview_mode, loader, destination_path = Dir.pwd) ⇒ Runner
constructor
A new instance of Runner.
- #operation ⇒ Object
- #run ⇒ Object
Constructor Details
#initialize(config_path, client, preview_mode, loader, destination_path = Dir.pwd) ⇒ Runner
Returns a new instance of Runner.
13 14 15 16 17 18 19 |
# File 'lib/dato/dump/runner.rb', line 13 def initialize(config_path, client, preview_mode, loader, destination_path = Dir.pwd) @config_path = config_path @preview_mode = preview_mode @client = client @destination_path = destination_path @loader = loader end |
Instance Attribute Details
#client ⇒ Object (readonly)
Returns the value of attribute client.
11 12 13 |
# File 'lib/dato/dump/runner.rb', line 11 def client @client end |
#config_path ⇒ Object (readonly)
Returns the value of attribute config_path.
11 12 13 |
# File 'lib/dato/dump/runner.rb', line 11 def config_path @config_path end |
#destination_path ⇒ Object (readonly)
Returns the value of attribute destination_path.
11 12 13 |
# File 'lib/dato/dump/runner.rb', line 11 def destination_path @destination_path end |
#loader ⇒ Object (readonly)
Returns the value of attribute loader.
11 12 13 |
# File 'lib/dato/dump/runner.rb', line 11 def loader @loader end |
#preview_mode ⇒ Object (readonly)
Returns the value of attribute preview_mode.
11 12 13 |
# File 'lib/dato/dump/runner.rb', line 11 def preview_mode @preview_mode end |
Instance Method Details
#operation ⇒ Object
36 37 38 |
# File 'lib/dato/dump/runner.rb', line 36 def operation @operation ||= Operation::Root.new(destination_path) end |
#run ⇒ Object
21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
# File 'lib/dato/dump/runner.rb', line 21 def run I18n.available_locales = loader.items_repo.available_locales I18n.locale = I18n.available_locales.first Dsl::Root.new( File.read(config_path), loader.items_repo, operation, ) operation.perform puts "\e[32m✓\e[0m Done!" end |