lines.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
       ---
       lines.rb (386B)
       ---
            1 # == Schema Information
            2 #
            3 # Table name: lines
            4 #
            5 #  id         :integer          not null, primary key
            6 #  created_at :datetime
            7 #  updated_at :datetime
            8 #  number     :text             not null
            9 #  project_id :integer          not null
           10 #  line_type  :text
           11 #  notes      :text
           12 #
           13 
           14 FactoryGirl.define do
           15   factory :line do
           16     project
           17     number { Faker::PhoneNumber.phone_number }
           18   end
           19 
           20 end