From 9b530ee16710f23657ec18dc9a9a929c11151dda Mon Sep 17 00:00:00 2001 From: Joey Date: Mon, 19 Feb 2024 11:41:06 -0800 Subject: [PATCH 1/2] chore: fix typo for setting up developer account --- .ruby-version | 1 + Rakefile | 4 ++++ getting_started/new_account.md | 2 +- 3 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .ruby-version create mode 100644 Rakefile diff --git a/.ruby-version b/.ruby-version new file mode 100644 index 0000000..6a81b4c --- /dev/null +++ b/.ruby-version @@ -0,0 +1 @@ +2.7.8 diff --git a/Rakefile b/Rakefile new file mode 100644 index 0000000..77457e3 --- /dev/null +++ b/Rakefile @@ -0,0 +1,4 @@ +desc "Serve Jekyll project" +task :serve do + sh "bundle exec jekyll serve" +end diff --git a/getting_started/new_account.md b/getting_started/new_account.md index 87c1cba..6b61fa7 100644 --- a/getting_started/new_account.md +++ b/getting_started/new_account.md @@ -5,7 +5,7 @@ layout: default section_title: Getting Started --- -The first toward developing a custom integration (Procore Clients) or App Markeplace application (Technology Partners) is to register a new Developer Account on the Procore Developer Portal. +The first step toward developing a custom integration (Procore Clients) or App Markeplace application (Technology Partners) is to register a new Developer Account on the Procore Developer Portal. Here are the steps to properly navigate the Developer Portal and successfully register for a new Developer Account. 1. First, open your browser and navigate to the [Developer Portal](https://developers.procore.com/) landing page. From 09aec1ef6b1f5f8d4010f8f4f1582ff8dad89a71 Mon Sep 17 00:00:00 2001 From: Joey Date: Mon, 19 Feb 2024 11:46:16 -0800 Subject: [PATCH 2/2] chore: update Rakefile for default task --- .gitignore | 1 + .ruby-version | 1 - Rakefile | 6 +++++- 3 files changed, 6 insertions(+), 2 deletions(-) delete mode 100644 .ruby-version diff --git a/.gitignore b/.gitignore index f40fbd8..189c20d 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ _site .jekyll-cache .jekyll-metadata vendor +.ruby-version diff --git a/.ruby-version b/.ruby-version deleted file mode 100644 index 6a81b4c..0000000 --- a/.ruby-version +++ /dev/null @@ -1 +0,0 @@ -2.7.8 diff --git a/Rakefile b/Rakefile index 77457e3..037bd29 100644 --- a/Rakefile +++ b/Rakefile @@ -1,4 +1,8 @@ -desc "Serve Jekyll project" +# frozen_string_literal: true + +desc "Serve API documentation locally" task :serve do sh "bundle exec jekyll serve" end + +task default: :serve