vagrant/plugins/commands/plugin/state_file.rb

50 lines
1.2 KiB
Ruby
Raw Normal View History

require "json"
module VagrantPlugins
module CommandPlugin
# This is a helper to deal with the plugin state file that Vagrant
# uses to track what plugins are installed and activated and such.
class StateFile
def initialize(path)
@path = path
@data = {}
@data = JSON.parse(@path.read) if @path.exist?
@data["installed"] ||= []
end
# Add a plugin that is installed to the state file.
#
# @param [String] name The name of the plugin
def add_plugin(name)
if !@data["installed"].include?(name)
@data["installed"] << name
end
2013-02-03 18:35:59 +00:00
save!
end
2013-02-03 07:59:48 +00:00
# This returns a list of installed plugins according to the state
# file. Note that this may _not_ directly match over to actually
# installed gems.
#
# @return [Array<String>]
def installed_plugins
@data["installed"]
end
# This saves the state back into the state file.
def save!
# Scrub some fields
2013-02-03 18:35:59 +00:00
@data["installed"].sort!
@data["installed"].uniq!
# Save
@path.open("w+") do |f|
f.write(JSON.dump(@data))
end
end
end
end
end