You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+47-52Lines changed: 47 additions & 52 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,140 +2,136 @@
2
2
howto.md
3
3
A step-by-step guide to integrate Ruby on Rails with Syncfusion TS Scheduler
4
4
-->
5
-
# How to Integrate Ruby on Rails with Syncfusion TS Scheduler
6
-
This repository contains a sample full-stack application demonstrating how to display events in syncfuison TS Scheduler component using Ruby on Rails. The TS frontend provides a responsive UI for viewing and managing calendar events.
5
+
##How to Integrate Ruby on Rails with Syncfusion Scheduler
6
+
This repository contains a sample full-stack application demonstrating how to display events in syncfuison Scheduler component using Ruby on Rails.
7
7
8
8
## Prerequisites
9
-
-Ruby - (3.2.2)
10
-
-Node JS - (>=18.13.0)
11
-
-Yarn - (>=1.22.19)
9
+
-Ruby - (3.2.2)
10
+
-Node JS - (>=18.13.0)
11
+
-Yarn - (>=1.22.19)
12
12
13
13
## Project Structure
14
14
```
15
15
├── README.md # This guide
16
16
├── postcss.config.js
17
17
├── package.json
18
-
├── package-lock.json
19
-
├── test
20
-
│ ├── events_controller_test.rb
18
+
├── test #Testing the functionality
19
+
│ ├── events_controller_test.rb
21
20
│ ├── schedule_controller_test.rb
22
-
├── app
23
-
│ ├── javascript
21
+
├── app
22
+
│ ├── javascript #Main JavaScript entry point that initializes frontend behavior
24
23
│ │ ├── application.js
25
24
│ │ ├── controllers
26
25
│ │ │ ├── index.js
27
26
└── views
28
27
├── layouts
29
-
│ ├── application.html.erb
28
+
│ ├── application.html.erb #Base HTML layout wrapping all views
30
29
└── welcome
31
-
└── index.html.erb
30
+
└── index.html.erb # View template for the welcome page
32
31
```
33
32
34
-
## Ruby setup
33
+
## Project Setup
35
34
### Installation
36
-
1.## Ruby setup
35
+
1.#### Clone the project
36
+
Clone the project from the repository by creating a fork and branch.
0 commit comments