class Twimock::RequestToken
Constants
- COLUMN_NAMES
- TABLE_NAME
Public Class Methods
new(options={})
click to toggle source
# File lib/twimock/request_token.rb, line 9 def initialize(options={}) opts = Hashie::Mash.new(options) id = opts.id.to_i @id = id if id > 0 @string = opts.string || Faker::Lorem.characters(32) @secret = opts.secret || Faker::Lorem.characters(32) @verifier = opts.verifier || Faker::Lorem.characters(32) app_id = opts.application_id.to_i @application_id = app_id if app_id > 0 user_id = opts.user_id.to_i @user_id = user_id if user_id > 0 @created_at = opts.created_at end