File tree Expand file tree Collapse file tree 2 files changed +33
-0
lines changed Expand file tree Collapse file tree 2 files changed +33
-0
lines changed Original file line number Diff line number Diff line change
1
+ ruby 3.3.3
Original file line number Diff line number Diff line change
1
+ ## INSTALATION
2
+
3
+ ### Install asdf
4
+ ```
5
+ sudo apt-get install git-core zlib1g-dev build-essential libssl-dev libreadline-dev libyaml-dev libsqlite3-dev sqlite3 libxml2-dev libxslt1-dev libcurl4-openssl-dev software-properties-common libffi-dev
6
+ git clone https://github.com/excid3/asdf.git ~/.asdf
7
+ cd
8
+ ls
9
+ echo '. "$HOME/.asdf/asdf.sh"' >> ~/.bashrc
10
+ echo '. "$HOME/.asdf/completions/asdf.bash"' >> ~/.bashrc
11
+ echo 'legacy_version_file = yes' >> ~/.asdfrc
12
+ echo 'export EDITOR="code --wait"' >> ~/.bashrc
13
+ exec $SHELL
14
+ ```
15
+
16
+ ### Install ruby and project
17
+ ```
18
+ asdf plugin list all
19
+ asdf plugin add ruby https://github.com/asdf-vm/asdf-ruby.git
20
+ asdf install ruby 3.3.3
21
+ asdf list
22
+ git clone <repository>
23
+ cd <repository>
24
+ asdf local ruby 3.3.3
25
+ ```
26
+
27
+ ### Prepare project
28
+ ```
29
+ gem install bundler
30
+ bundle install
31
+ bundle exec jekyll s
32
+ ```
You can’t perform that action at this time.
0 commit comments