Sha256: 155c92160891b8b7b468dc527a5b98cd49ee88dca70c5b6206969abdded7aed5

Contents?: true

Size: 464 Bytes

Versions: 6

Compression:

Stored size: 464 Bytes

Contents

module LearnWeb
  class Client
    module Lesson
      class CurrentLesson
        attr_reader   :response
        attr_accessor :data, :id, :title, :link, :github_repo, :forked_repo,
                      :clone_repo, :assessments, :lab, :dot_learn

        include LearnWeb::AttributePopulatable
        include LearnWeb::ResponseParsable

        def initialize(response)
          @response = response

          parse!
        end
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
learn-web-1.5.5 lib/learn_web/client/lesson/current_lesson.rb
learn-web-1.5.4 lib/learn_web/client/lesson/current_lesson.rb
learn-web-1.5.3 lib/learn_web/client/lesson/current_lesson.rb
learn-web-1.5.2 lib/learn_web/client/lesson/current_lesson.rb
learn-web-1.5.1 lib/learn_web/client/lesson/current_lesson.rb
learn-web-1.5.0 lib/learn_web/client/lesson/current_lesson.rb