URI: 
       signatures.rb - warvox - VoIP based wardialing tool, forked from rapid7/warvox.
  HTML git clone git://jay.scot/warvox
   DIR Log
   DIR Files
   DIR Refs
   DIR README
       ---
       signatures.rb (620B)
       ---
            1 # == Schema Information
            2 #
            3 # Table name: signatures
            4 #
            5 #  id          :integer          not null, primary key
            6 #  created_at  :datetime
            7 #  updated_at  :datetime
            8 #  name        :text             not null
            9 #  source      :string(255)
           10 #  description :text
           11 #  category    :string(255)
           12 #  line_type   :string(255)
           13 #  risk        :integer
           14 #
           15 
           16 FactoryGirl.define do
           17   factory :signature do
           18     name { Faker::Commerce.product_name }
           19     source { Faker::PhoneNumber.cell_phone }
           20     description { Faker::Lorem.sentence }
           21     category { Faker::Lorem.word }
           22     line_type { Faker::Lorem.word }
           23     risk { Faker::Lorem.word }
           24   end
           25 
           26 end