Sha256: 117aef6a9b101811cb3db0ed4440051e5126611dd22851d6b1730cea78aa3a9b

Contents?: true

Size: 370 Bytes

Versions: 5

Compression:

Stored size: 370 Bytes

Contents

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

require "dev_orbit"
require "thor"

module DevOrbit
  module Scripts
    class CheckComments < Thor
      desc "render", "check for new DEV comments and push them to Orbit"
      def render(*params)
        client = DevOrbit::Client.new(historical_import: params[0])
        client.comments
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
dev_orbit-0.5.2 scripts/check_comments.rb
dev_orbit-0.5.1 scripts/check_comments.rb
dev_orbit-0.5.0 scripts/check_comments.rb
dev_orbit-0.4.1 scripts/check_comments.rb
dev_orbit-0.4.0 scripts/check_comments.rb