Sha256: 6da7288e93b6441f7960cc34ade64a3eefc8069bffd939b7eb61a721caab496f
Contents?: true
Size: 405 Bytes
Versions: 5
Compression:
Stored size: 405 Bytes
Contents
#!/usr/bin/env ruby # frozen_string_literal: true require "dev_orbit" require "thor" module DevOrbit module Scripts class CheckOrgComments < Thor desc "render", "check for new DEV comments on an organization and push them to Orbit" def render(*params) client = DevOrbit::Client.new(historical_import: params[0]) client.organization_comments end end end end
Version data entries
5 entries across 5 versions & 1 rubygems