Sha256: 1bfb3b41aebb4c0bc5d0cf8bb9f9c7ce5d621da65d4b4a02415c0e96cb743084

Contents?: true

Size: 350 Bytes

Versions: 3

Compression:

Stored size: 350 Bytes

Contents

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

require "dev_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

3 entries across 3 versions & 1 rubygems

Version Path
linkedin_orbit-0.1.0 scripts/check_comments.rb
linkedin_orbit-0.0.2 scripts/check_comments.rb
linkedin_orbit-0.0.1 scripts/check_comments.rb