Skip to content

Commit fec0ae9

Browse files
committed
updated ruby version and readme
1 parent 61715ea commit fec0ae9

File tree

2 files changed

+26
-2
lines changed

2 files changed

+26
-2
lines changed

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ruby-3.3.1
1+
ruby-3.2.5

README.md

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
Heya there, this is ACM Teach LA's website! It's goal is to give Teach LA a more formal online presence, and to create a one-stop shop for prospective tutors and schools to get more information about us!
88

9-
This website is built with [Jekyll](https://jekyllrb.com), with some component implementations taken from [ACM's main website](https://github.com/uclaacm/website) (conforming to [ACM Design's Style Guide](https://github.com/uclaacm/Styleguide)). We build and test this website with [GitHub Actions](https://github.com/features/actions), and deploy it on [Netlify](https://www.netlify.com/).
9+
This website is built with [Jekyll](https://jekyllrb.com), with some component implementations taken from [ACM's main website](https://github.com/uclaacm/website) (conforming to [ACM Design's Style Guide](https://github.com/uclaacm/Styleguide)). We build and test this website with [GitHub Actions](https://github.com/features/actions), and deploy it on [Netlify](https://www.netlify.com/). We will be running on ruby 3.2.5 and jekyll 4.3.3
1010

1111
## Development Setup
1212

@@ -72,3 +72,27 @@ Want to make a change to the website? Great! Here are the steps:
7272
## Adding Yourself to the Teams Page
7373

7474
[Moved to here](https://github.com/uclaacm/teach-la-website/blob/master/_team/README.md).
75+
76+
## Troubleshooting tips:
77+
1. run gem install bundler
78+
- if doesnt work try to sudo
79+
2. install homebrew. This way we can manage ruby version conflicts
80+
3. run ruby -v. You want to be on version 3.2.5 (REALLY IMPORTANT)
81+
4. run
82+
83+
```bash
84+
85+
brew install rbenv
86+
brew install ruby-build
87+
rbenv init
88+
rbenv install 3.2.5
89+
rbenv global 3.2.4
90+
gem update jekyll
91+
gem update bundler
92+
bundle install
93+
bundle update
94+
95+
```
96+
97+
** note: may need to sudo if you do not have permission
98+
I hope this helps

0 commit comments

Comments
 (0)