class Config::Configuration

Attributes

add_tag_per_post[RW]
comments[RW]
infinite_tags[RW]
log_status[RW]
max_comment_per_day[RW]
max_follow_per_day[RW]
max_like_per_day[RW]
max_unfollow_per_day[RW]
password[RW]
pre_load[RW]
print_banner[RW]
proxy[RW]
tags[RW]
unwanted_list[RW]
use_proxy[RW]
use_tor[RW]
username[RW]
wait_per_action[RW]
white_list_users[RW]

Public Class Methods

new() click to toggle source
# File lib/instabot/config.rb, line 20
def initialize
    @wait_per_action      = 1 * 60
    @max_comment_per_day  = 50
    @max_follow_per_day   = 50
    @max_like_per_day     = 50
    @max_unfollow_per_day = 50
    @username             = nil
    @password             = nil
    @proxy                = nil
    @username             = nil
    @infinite_tags        = true
    @pre_load             = true
    @print_banner         = true
    @log_status           = true
    @use_proxy            = false
    @use_tor              = false
    @add_tag_per_post     = 1
    @tags                 = []
    @unwanted_list        = []
    @white_list_users     = []
    
    @comments             = [
        %w[this the your],
        %w[photo picture pic shot snapshot],
        %w[is looks feels is really],
        %w[great super good very good good wow WOW cool GREAT magnificent magical very cool stylish beautiful so beautiful so stylish so professional lovely so lovely very lovely glorious so glorious very glorious adorable excellent amazing],
        %w[. .. ... ! !! !!!]
    ]
end