Sha256: 7551e868984604e64b319346fa0efec4d8994e546300242d697f7dd2a23e28ee
Contents?: true
Size: 454 Bytes
Versions: 6
Compression:
Stored size: 454 Bytes
Contents
class InstaScrape::InstagramUserWithPosts attr_accessor :username, :image, :post_count, :follower_count, :following_count, :description, :posts def initialize(username, image, post_count, follower_count, following_count, description, posts) @username = username @image = image @post_count = post_count @follower_count = follower_count @following_count = following_count @description = description @posts = posts end end
Version data entries
6 entries across 6 versions & 1 rubygems