salesforce_bulk_api 1.2.0 → 1.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 795266bc08c0155140c8281a50f60e45ebbfada3013b8d70032a7d1ce833097d
4
- data.tar.gz: b119ea90f9cf8c4f9ef5a5af96c3d0c340a37eb7531605893be9e03738805bb9
3
+ metadata.gz: 8a14ceabe8f5e98c4c3c17d48ffe978e538f1c54e4bd464f2abc453be87fd6b2
4
+ data.tar.gz: 005cff290cbcbda160324c83d9b006342987602ddd1d7c0a1c16074c70456a86
5
5
  SHA512:
6
- metadata.gz: b5a1d165ab6c908dd13ed49eb15e5928a918e337b011375fac49a226656921e6900058975901d27270cf344053751c2cea5ea3365b435b8243283ebb12dc1eb2
7
- data.tar.gz: 4be3074ac16caa9de211d34e31677e5e460c94423ee4aff1057318f3112b9f963d6a165f8966c487a31c457a1160f4a610999142217b7f33cc10844c0a2ef189
6
+ metadata.gz: 1a73ef01dc86add8fbca0ef24bfd0f36d068aef7a75147a0b7919af6f4f6688d6514387738fdf3efc7a92218a1c21128fbb1ea892a9add8244ca33586e2ba10c
7
+ data.tar.gz: 1bc022e65b9fdbd9c9b1deb920d07062988ed65c7e04698a9ae1010596b9803cf44c8ee14025a061e893121235cd34147388c935e97f359e06b487349baa6a7f
data/.env.sample ADDED
@@ -0,0 +1,7 @@
1
+ SALESFORCE_CLIENT_ID=3MVG9FakeClientID1234567890abcdefgXYZ1234567890abcdefg
2
+ SALESFORCE_CLIENT_SECRET=FAKECLIENTSECRET1234567890ABCDEF1234567890ABCDEF
3
+ SALESFORCE_USERNAME=fakeuser@example.com
4
+ SALESFORCE_PASSWORD=MySecretPassword123!
5
+ SALESFORCE_SECURITY_TOKEN=FAKESecurityTokenABC1234567890XYZ
6
+ SALESFORCE_TEST_ACCOUNT_ID=001FAKE00000XyZ01
7
+ SALESFORCE_HOST=login.salesforce.com
@@ -0,0 +1,36 @@
1
+ # .github/workflows/ci.yml
2
+ name: Lint and Test
3
+
4
+ on:
5
+ pull_request:
6
+
7
+ jobs:
8
+ lint:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v4
12
+
13
+ - uses: ruby/setup-ruby@v1
14
+ with:
15
+ ruby-version: "3.2"
16
+
17
+ - name: Install dependencies
18
+ run: bundle install --jobs 4 --retry 3
19
+
20
+ - name: Run RuboCop
21
+ run: bundle exec rubocop
22
+
23
+ # test:
24
+ # runs-on: ubuntu-latest
25
+ # steps:
26
+ # - uses: actions/checkout@v4
27
+
28
+ # - uses: ruby/setup-ruby@v1
29
+ # with:
30
+ # ruby-version: "3.2"
31
+
32
+ # - name: Install dependencies
33
+ # run: bundle install --jobs 4 --retry 3
34
+
35
+ # - name: Run RSpec
36
+ # run: bundle exec rspec
data/.gitignore CHANGED
@@ -7,3 +7,4 @@ pkg/*
7
7
  auth_credentials.yml
8
8
  *.swp
9
9
  .idea
10
+ .env
data/.rspec CHANGED
@@ -1,2 +1,2 @@
1
1
  --color
2
- --format progress
2
+ --format documentation