Sha256: 688aab752e4ad30e9bc9b88c0a6b963ef953ae3af5696897096288df1a6f02e1

Contents?: true

Size: 343 Bytes

Versions: 1

Compression:

Stored size: 343 Bytes

Contents

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

require "circle_orbit"
require "thor"

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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
circle_orbit-0.0.1 scripts/check_posts.rb