Sha256: e6d117282dc53ac9489749ae213f8d5d94a2907a382a2d18d2011c44fce1c9f9

Contents?: true

Size: 331 Bytes

Versions: 14

Compression:

Stored size: 331 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
        client = DevOrbit::Client.new
        client.comments
      end
    end
  end
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
dev_orbit-0.3.0 scripts/check_comments.rb
dev_orbit-0.2.0 scripts/check_comments.rb
dev_orbit-0.1.6 scripts/check_comments.rb
dev_orbit-0.1.5 scripts/check_comments.rb
dev_orbit-0.1.4 scripts/check_comments.rb
dev_orbit-0.1.3 scripts/check_comments.rb
dev_orbit-0.1.2 scripts/check_comments.rb
dev_orbit-0.1.1 scripts/check_comments.rb
dev_orbit-0.1.0 scripts/check_comments.rb
dev_orbit-0.0.10 scripts/check_comments.rb
dev_orbit-0.0.9 scripts/check_comments.rb
dev_orbit-0.0.8 scripts/check_comments.rb
dev_orbit-0.0.7 scripts/check_comments.rb
dev_orbit-0.0.6 scripts/check_comments.rb