README.md in rails-crud-tools-0.6.9 vs README.md in rails-crud-tools-0.6.10
- old
+ new
@@ -35,17 +35,18 @@
.crudconfig.yml
```yaml
enabled: true # Enables or disables the CRUD tools functionality
base_dir: doc # The base directory where the CRUD files will be stored
-crud_file: crud.xlsx # The name of the CRUD Excel file
-sheet_name: CRUD # The name of the sheet in the CRUD Excel file
+crud_file:
+ file_name: crud.xlsx # The name of the CRUD Excel file
+ sheet_name: CRUD # The name of the sheet in the CRUD Excel file
+ header_bg_color: 00FFCC # The background color for the header in the CRUD Excel file
+ font_name: Arial # The font name used in the CRUD Excel file
method_col: Verb # Column indicating the HTTP method
action_col: Controller#Action # Column indicating the controller and action
-table_start_col: your_first_table # Column where the table starts
-header_bg_color: 00FFCC # The background color for the header in the CRUD Excel file
+table_start_col: your_first_table # Column where the table starts
sql_logging_enabled: true # Enables or disables SQL logging for CRUD operations
-font_name: Arial # The font name used in the CRUD Excel file
```
### How It Works
Once integrated, the gem automatically tracks CRUD operations (Create, Read, Update, Delete) performed in your application.