Sha256: 8dda0cd7c24865201277a7f0358375efce0cd3e346cbab63070973e3fbd8a60e

Contents?: true

Size: 333 Bytes

Versions: 7

Compression:

Stored size: 333 Bytes

Contents

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

require "notion_orbit"
require "thor"

module NotionOrbit
  module Scripts
    class CheckNotes < Thor
      desc "render", "check for new Notion notes and push them to Orbit"
      def render
        client = NotionOrbit::Client.new
        client.notes
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
notion_orbit-0.0.7 scripts/check_notes.rb
notion_orbit-0.0.6 scripts/check_notes.rb
notion_orbit-0.0.5 scripts/check_notes.rb
notion_orbit-0.0.4 scripts/check_notes.rb
notion_orbit-0.0.3 scripts/check_notes.rb
notion_orbit-0.0.2 scripts/check_notes.rb
notion_orbit-0.0.1 scripts/check_notes.rb