Skip to content

Commit e894402

Browse files
authored
Merge pull request #56 from rustagir/DOCSP-42745-interact-data
DOCSP-42745: interact with data
2 parents 9a1918c + 437ffda commit e894402

File tree

3 files changed

+33
-6
lines changed

3 files changed

+33
-6
lines changed

.github/workflows/vale-tdbx.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,27 +12,30 @@ jobs:
1212
- name: checkout
1313
uses: actions/checkout@v4
1414

15+
- name: Install docutils
16+
run: sudo apt-get install -y docutils
17+
1518
- id: files
1619
uses: masesgroup/retrieve-changed-files@v2
1720
with:
18-
format: 'csv'
21+
format: "csv"
1922

2023
- name: checkout-latest-rules
2124
uses: actions/checkout@v4
2225
with:
2326
repository: mongodb/mongodb-vale-action
24-
path: './tdbx-vale-rules'
27+
path: "./tdbx-vale-rules"
2528
token: ${{secrets.GITHUB_TOKEN}}
2629

2730
- name: move-files-for-vale-action
2831
run: |
29-
cp tdbx-vale-rules/.vale.ini .vale.ini
30-
mkdir -p .github/styles/
31-
cp -rf tdbx-vale-rules/.github/styles/ .github/
32+
cp tdbx-vale-rules/.vale.ini .vale.ini
33+
mkdir -p .github/styles/
34+
cp -rf tdbx-vale-rules/.github/styles/ .github/
3235
- name: run-vale
3336
uses: errata-ai/vale-action@reviewdog
3437
with:
3538
reporter: github-pr-check
3639
files: ${{steps.files.outputs.added_modified}}
3740
fail_on_error: true
38-
token: ${{secrets.GITHUB_TOKEN}}
41+
token: ${{secrets.GITHUB_TOKEN}}

source/index.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ MongoDB in Ruby. To work with {+odm+} from the command line using
1414

1515
/quick-start-rails
1616
/quick-start-sinatra
17+
/interact-data
1718
installation-configuration
1819
tutorials
1920
schema-configuration

source/interact-data.txt

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
.. _mongoid-interact-data:
2+
3+
==================
4+
Interact with Data
5+
==================
6+
7+
.. facet::
8+
:name: genre
9+
:values: reference
10+
11+
.. meta::
12+
:keywords: ruby framework, odm, crud, query
13+
14+
.. TODO
15+
.. toctree::
16+
:caption: Interact with Data
17+
/interact-data/specify-query
18+
19+
In this section, you can learn how to use {+odm+} to interact with your
20+
MongoDB data.
21+
22+
.. - :ref:`mongoid-data-specify-query`: Learn how to construct
23+
.. queries to match specific documents in a MongoDB collection.

0 commit comments

Comments
 (0)