Module: Commercelayer::CLI::Bootstrappers
- Included in:
- Base
- Defined in:
- lib/commercelayer/cli/bootstrappers.rb,
lib/commercelayer/cli/bootstrappers/datocms.rb
Defined Under Namespace
Classes: DatoCMS
Instance Method Summary collapse
Instance Method Details
#bootstrap_data!(destination) ⇒ Object
7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
# File 'lib/commercelayer/cli/bootstrappers.rb', line 7 def bootstrap_data!(destination) commercelayer_client. case destination when "datocms" if yes? "Warning: this will erase your DatoCMS site. Continue?", :yellow say "Exporting data to DatoCMS...", :blue DatoCMS.new.bootstrap! else say "Nothing to do here. Bye!", :blue end else say "coming soon...", :yellow end end |