module FirefoxJson

Constants

VERSION

Public Class Methods

available_profiles() click to toggle source
# File lib/firefox-json.rb, line 5
def self.available_profiles
  Profiles.new.list
end
load_profile(name) click to toggle source
# File lib/firefox-json.rb, line 9
def self.load_profile(name)
  profiles = Profiles.new
  profiles[name]
end