Module: LearnWeb::ResponseParsable

Class Method Summary collapse

Class Method Details

.included(base) ⇒ Object



3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# File 'lib/learn_web/response_parsable.rb', line 3

def self.included(base)
  base.class_eval do
    def parse!
      case response.status
      when 200
        self.data = Oj.load(response.body, symbol_keys: true)
        populate_attributes!
      when 401
        puts "It seems your OAuth token is incorrect. Please re-run config with: learn reset"
        exit
      when 500
        puts "Something went wrong. Please try again."
        exit
      else
        puts "Something when wrong. Please try again."
        exit
      end

      self
    end
  end
end