# File lib/gemnasium.rb, line 156
    def migrate options
      @config = load_config(options[:project_path])

      if @config.needs_to_migrate?
        @config.migrate!
        notify "Your configuration has been updated.", :green
        notify "Run `gemnasium resolve` if your config is related to an existing project."
        notify "Run `gemnasium create` if you want to create a new project on Gemnasium."
      else
        notify "Your configuration file is already up-to-date.", :green
      end
    end