Skip to content

Commit

Permalink
Feature/ux enhancements 12182024 (#631)
Browse files Browse the repository at this point in the history
* Add conditional message to save tooltip

* Make location address and website clickable

* Add alert info in list

* Make zoom btns appear in top left corner

* Update actionpack

* Make pills expandable

* Make tabs change on hover

* Update ruby version

* Keep underline hover animation

* Update rails

* Update mini magick

* Fix vulnerability

* Update image processing

* Fix rubocop

* Update gh workflow
  • Loading branch information
aliciapaz authored Jan 8, 2025
1 parent 6b1debc commit a00172f
Show file tree
Hide file tree
Showing 13 changed files with 187 additions and 147 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ruby-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,8 @@ jobs:
- name: Install Node packages
run: |
bin/yarn install --ignore-engines
- name: Install ImageMagick
run: sudo apt-get install imagemagick
- name: Run tests
run: |
bundle exec rspec --fail-fast
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.1.0
3.1.5
9 changes: 4 additions & 5 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }

ruby "3.1.0"
ruby "3.1.5"

# Bundle edge Rails instead: gem 'rails', github: 'rails/rails', branch: 'main'
gem "rails", "~> 7.0.8.5"
gem "rails", "~> 7.0.8.7"
# Use postgresql as the database for Active Record
gem "pg", "~> 1.1"
# Use Puma as the app server
Expand All @@ -24,7 +24,6 @@ gem "redis", "~> 4.0"
# gem 'bcrypt', '~> 3.1.7'

# Use Active Storage variant
# gem 'image_processing', '~> 1.2'

# Use Devise for authentication
gem "devise"
Expand Down Expand Up @@ -66,7 +65,7 @@ gem "administrate"
gem "administrate-field-active_storage"
gem "administrate-field-nested_has_many", git: "https://github.com/TelosLabs/administrate-field-nested_has_many.git", branch: "feature/stimulus-controller"
gem "administrate-field-select", "~> 2.0", require: "administrate/field/select_basic"
gem "image_processing"
gem "image_processing", "~> 1.13"

# Reduces boot times through caching; required in config/boot.rb
gem "bootsnap", require: false
Expand Down Expand Up @@ -131,4 +130,4 @@ end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", platforms: %i[mingw mswin x64_mingw jruby]

gem "mini_magick", "~> 4.11"
gem "mini_magick"
Loading

0 comments on commit a00172f

Please sign in to comment.