Sha256: 024cd8d6385f1e26b9dabb92b0150e89d90dbb5bbb6ca8f247de667f24063d26

Contents?: true

Size: 334 Bytes

Versions: 16

Compression:

Stored size: 334 Bytes

Contents

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

require "dev_orbit"
require "thor"

module DevOrbit
  module Scripts
    class CheckFollowers < Thor
      desc "render", "check for new DEV followers and push them to Orbit"
      def render
        client = DevOrbit::Client.new
        client.followers
      end
    end
  end
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
dev_orbit-0.5.2 scripts/check_followers.rb
dev_orbit-0.5.1 scripts/check_followers.rb
dev_orbit-0.5.0 scripts/check_followers.rb
dev_orbit-0.4.1 scripts/check_followers.rb
dev_orbit-0.4.0 scripts/check_followers.rb
dev_orbit-0.3.0 scripts/check_followers.rb
dev_orbit-0.2.0 scripts/check_followers.rb
dev_orbit-0.1.6 scripts/check_followers.rb
dev_orbit-0.1.5 scripts/check_followers.rb
dev_orbit-0.1.4 scripts/check_followers.rb
dev_orbit-0.1.3 scripts/check_followers.rb
dev_orbit-0.1.2 scripts/check_followers.rb
dev_orbit-0.1.1 scripts/check_followers.rb
dev_orbit-0.1.0 scripts/check_followers.rb
dev_orbit-0.0.10 scripts/check_followers.rb
dev_orbit-0.0.9 scripts/check_followers.rb