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
+28-23Lines changed: 28 additions & 23 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,5 @@
1
1
# SkillRX
2
+
2
3
SkillRX is a Ruby on Rails content management application which will allow medical training providers to upload and manage content which will be delivered to Raspberry Pi and other computers in low-resource areas for use by medical professionals at these locations.
3
4
4
5
The project provides a ground-up rewrite of the [CMES Admin Panel](https://github.com/techieswithoutborders/cmes-admin-panel-next) for [Techies Without Borders](https://techieswithoutborders.us/).
@@ -15,7 +16,6 @@ Thank you for checking out our work. We are in the process of setting up the rep
15
16
16
17
[Contribution guidelines for this project](CONTRIBUTING.md)
17
18
18
-
19
19
# Install & Setup
20
20
21
21
Clone the codebase
@@ -35,7 +35,7 @@ bin/setup
35
35
36
36
To run the app locally, use:
37
37
```
38
-
bin/dev
38
+
bin/server
39
39
```
40
40
41
41
To update dependencies in Gemfile, use:
@@ -48,39 +48,32 @@ You should see the seed organization by going to:
48
48
http://localhost:3000/
49
49
```
50
50
51
-
52
51
# Running specs
53
52
53
+
This project uses:
54
+
*`rspec` for testing
55
+
*`shoulda-matchers` for expectations
56
+
*`factory_bot` for making records
57
+
58
+
To run tests, simply use `bin/rspec`. You can also use `bin/quality` to check for code style issues.
59
+
54
60
```sh
55
61
# Default: Run all spec files (i.e., those matching spec/**/*_spec.rb)
56
-
$ bundle execrspec
62
+
$ bin/rspec
57
63
58
64
# Run all spec files in a single directory (recursively)
0 commit comments