Sha256: f33fe3ae95e8b91c09c1cd8da0d2b21b2eb3203fcc4a04d9366f12cb86b77f2d

Contents?: true

Size: 351 Bytes

Versions: 1

Compression:

Stored size: 351 Bytes

Contents

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

require "circle_orbit"
require "thor"

module CircleOrbit
  module Scripts
    class CheckComments < Thor
      desc "render", "check for new comments in Spaces posts and push them to Orbit"
      def render
        client = CircleOrbit::Client.new
        client.comments
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
circle_orbit-0.0.1 scripts/check_comments.rb