Sha256: 5dd470a98c37535585a04147d0b70cf9d1e08ad39190e3aca75d34c64b416b2c

Contents?: true

Size: 355 Bytes

Versions: 4

Compression:

Stored size: 355 Bytes

Contents

#!/usr/bin/env ruby
# frozen_string_literal: true

require "linkedin_orbit"
require "thor"

module LinkedinOrbit
  module Scripts
    class CheckComments < Thor
      desc "render", "check for new LinkedIn post comments and push them to Orbit"
      def render
        client = LinkedinOrbit::Client.new
        client.comments
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
linkedin_orbit-0.1.4 scripts/check_comments.rb
linkedin_orbit-0.1.3 scripts/check_comments.rb
linkedin_orbit-0.1.2 scripts/check_comments.rb
linkedin_orbit-0.1.1 scripts/check_comments.rb