settings.rb - warvox - VoIP based wardialing tool, forked from rapid7/warvox.
 (HTM) git clone git://jay.scot/warvox
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
       ---
       settings.rb (362B)
       ---
            1 # == Schema Information
            2 #
            3 # Table name: settings
            4 #
            5 #  id         :integer          not null, primary key
            6 #  var        :string(255)      not null
            7 #  value      :text
            8 #  thing_id   :integer
            9 #  thing_type :string(30)
           10 #  created_at :datetime
           11 #  updated_at :datetime
           12 #
           13 
           14 FactoryGirl.define do
           15   factory :setting, class: 'Settings' do
           16     var "CachedStuff"
           17   end
           18 
           19 end