Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,29 @@

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.2.1] - 2022-11-06

### Fixed

- Fixed git configuration
- Fixed FireFox favorites reference

### Updated

- Updated docs

## [1.2.0] - 2022-09-16

### Updated

- Updated `asdf`
- Updated `vscode` installing flow
- Updated docs

## [1.1.0] - 2022-09-16

### Updated

- Updated to Ruby 3.1.2
- Added Postgres dependencies

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Automation script for spinning-up Ruby developer environment. Configure your dev
* Installs & configures [MRI Ruby](https://www.ruby-lang.org/en/downloads/releases) 3.1.2 with default gem set
* Installs [Postgres](https://www.postgresql.org/download/linux/ubuntu) & system deps
* Installs & configures [Visual Studio Code](https://code.visualstudio.com)
* Addes favorites to Gnome dock panel

## Requirements/Preconditions

Expand Down
4 changes: 2 additions & 2 deletions setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ function step_6() {
wget https://raw.githubusercontent.com/RubyWorkout/frs/master/.gitignore_global
credentials="$HOME/.my-credentials"
echo -n "" > ${credentials}
echo "https://${git_profile}:${git_token}@github.com" >> ${credentials}
echo "https://${git_username}:${git_token}@github.com" >> ${credentials}
git config --global user.email ${email}
git config --global user.name ${name}
git config --global credential.helper "store --file ${credentials}"
Expand All @@ -109,7 +109,7 @@ function step_7() {
# Add shortcuts to dock
function step_8() {
step_title $1 "Adding favorites to dock"
gsettings set org.gnome.shell favorite-apps "['firefox.desktop', 'org.gnome.Nautilus.desktop', 'snap-store_ubuntu-software.desktop', 'org.gnome.Terminal.desktop', 'code.desktop']"
gsettings set org.gnome.shell favorite-apps "['firefox.desktop', 'firefox_firefox.desktop', 'org.gnome.Nautilus.desktop', 'snap-store_ubuntu-software.desktop', 'org.gnome.Terminal.desktop', 'code.desktop']"
}

# Reboot OS
Expand Down