Sha256: e5eb76f34f7dea973979b5d93857b734e6e4420b1a4b909953554abb7e6e754c
Contents?: true
Size: 472 Bytes
Versions: 29
Compression:
Stored size: 472 Bytes
Contents
module Lono class Upgrade def initialize(options) @options = options end def run app_blueprints_move # v6 to v7 puts "Lono project upgraded" end def app_blueprints_move return if File.exist?("#{Lono.root}/app/blueprints") return unless File.exist?("#{Lono.root}/blueprints") FileUtils.mv("#{Lono.root}/blueprints", "#{Lono.root}/app/blueprints") puts "Move blueprints to app/blueprints" end end end
Version data entries
29 entries across 29 versions & 1 rubygems