projects.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
       ---
       projects.rb (424B)
       ---
            1 # == Schema Information
            2 #
            3 # Table name: projects
            4 #
            5 #  id          :integer          not null, primary key
            6 #  created_at  :datetime
            7 #  updated_at  :datetime
            8 #  name        :text             not null
            9 #  description :text
           10 #  included    :text
           11 #  excluded    :text
           12 #  created_by  :string(255)
           13 #
           14 
           15 FactoryGirl.define do
           16   factory :project do
           17     name { Faker::Lorem.sentence }
           18     description { Faker::Lorem.sentence }
           19   end
           20 
           21 end