Module: Rsteamshot

Defined in:
lib/rsteamshot.rb,
lib/rsteamshot/app.rb,
lib/rsteamshot/user.rb,
lib/rsteamshot/version.rb,
lib/rsteamshot/screenshot.rb,
lib/rsteamshot/configuration.rb,
lib/rsteamshot/screenshot_page.rb,
lib/rsteamshot/screenshot_paginator.rb

Overview

Public: Contains classes for finding screenshots uploaded by users to Steam. Screenshots are from Steam games (apps).

Defined Under Namespace

Classes: App, Configuration, Screenshot, ScreenshotPage, ScreenshotPaginator, User

Constant Summary collapse

VERSION =

Public: The current version of the Rsteamshot gem.

'0.1.3'

Class Attribute Summary collapse

Class Method Summary collapse

Class Attribute Details

.configurationObject



20
21
22
# File 'lib/rsteamshot.rb', line 20

def self.configuration
  @configuration ||= Configuration.new
end

Class Method Details

.configure {|configuration| ... } ⇒ Object

Public: Configure the Rsteamshot gem such as by setting the path to where you have downloaded the list of Steam apps as a JSON file.

Yields:



26
27
28
# File 'lib/rsteamshot.rb', line 26

def self.configure
  yield configuration
end