Skip to content

Commit

Permalink
bumping libs using upgrade commands
Browse files Browse the repository at this point in the history
  • Loading branch information
opedrosouza committed Apr 26, 2024
1 parent 242e176 commit 524322a
Show file tree
Hide file tree
Showing 4 changed files with 297 additions and 245 deletions.
22 changes: 11 additions & 11 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ GEM
awesome_print (1.9.2)
base64 (0.2.0)
bcrypt (3.1.20)
bigdecimal (3.1.6)
bigdecimal (3.1.7)
bindex (0.8.1)
bootsnap (1.18.3)
msgpack (~> 1.2)
Expand Down Expand Up @@ -154,7 +154,7 @@ GEM
mini_magick (>= 4.9.5, < 5)
ruby-vips (>= 2.0.17, < 3)
io-console (0.7.2)
irb (1.11.2)
irb (1.12.0)
rdoc
reline (>= 0.4.2)
json (2.7.1)
Expand Down Expand Up @@ -189,7 +189,7 @@ GEM
method_source (1.0.0)
mini_magick (4.12.0)
mini_mime (1.1.5)
minitest (5.22.2)
minitest (5.22.3)
msgpack (1.7.2)
mutex_m (0.2.0)
net-imap (0.4.10)
Expand All @@ -202,13 +202,13 @@ GEM
net-smtp (0.4.0.1)
net-protocol
nio4r (2.7.0)
nokogiri (1.16.2-aarch64-linux)
nokogiri (1.16.4-aarch64-linux)
racc (~> 1.4)
nokogiri (1.16.2-arm64-darwin)
nokogiri (1.16.4-arm64-darwin)
racc (~> 1.4)
nokogiri (1.16.2-x86_64-darwin)
nokogiri (1.16.4-x86_64-darwin)
racc (~> 1.4)
nokogiri (1.16.2-x86_64-linux)
nokogiri (1.16.4-x86_64-linux)
racc (~> 1.4)
orm_adapter (0.5.0)
pagy (7.0.9)
Expand All @@ -228,7 +228,7 @@ GEM
pundit (2.3.1)
activesupport (>= 3.0.0)
racc (1.7.3)
rack (3.0.9.1)
rack (3.0.10)
rack-cors (2.0.2)
rack (>= 2.0.0)
rack-proxy (0.7.7)
Expand Down Expand Up @@ -277,12 +277,12 @@ GEM
thor (~> 1.0, >= 1.2.2)
zeitwerk (~> 2.6)
rainbow (3.1.1)
rake (13.1.0)
rdoc (6.6.2)
rake (13.2.1)
rdoc (6.6.3.1)
psych (>= 4.0.0)
redcarpet (3.6.0)
regexp_parser (2.9.0)
reline (0.4.3)
reline (0.5.3)
io-console (~> 0.5)
responders (3.1.1)
actionpack (>= 5.2)
Expand Down
25 changes: 25 additions & 0 deletions app/serializers/address_serializer.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
# frozen_string_literal: true

# == Schema Information
#
# Table name: addresses
#
# id :bigint not null, primary key
# addressable_type :string not null
# city :string
# complement :string
# country :string
# latitude :string
# longitude :string
# neighborhood :string
# number :string
# state :string
# street :string
# type :integer
# zipcode :string
# created_at :datetime not null
# updated_at :datetime not null
# addressable_id :bigint not null
#
# Indexes
#
# index_addresses_on_addressable (addressable_type,addressable_id)
#
class AddressSerializer < ActiveModel::Serializer

attributes :id, :country, :state, :city, :neighborhood, :street, :number, :complement, :zipcode, :latitude, :longitude, :type
Expand Down
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
},
"dependencies": {
"@hotwired/stimulus": "^3.2.2",
"@hotwired/turbo-rails": "^8.0.3",
"@hotwired/turbo-rails": "^8.0.4",
"@rails/actiontext": "^7.1.3",
"@rails/request.js": "^0.0.9",
"autoprefixer": "^10.4.18",
"autoprefixer": "^10.4.19",
"flowbite": "^2.3.0",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1",
"trix": "^2.0.10"
"postcss": "^8.4.38",
"tailwindcss": "^3.4.3",
"trix": "^2.1.0"
},
"scripts": {
"build:css": "tailwindcss -i ./app/frontend/stylesheets/application.tailwind.css -o ./app/frontend/entrypoints/application.css --minify"
Expand All @@ -22,16 +22,16 @@
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/line-clamp": "^0.4.4",
"@tailwindcss/typography": "^0.5.10",
"@tailwindcss/typography": "^0.5.12",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-tailwindcss": "^3.14.3",
"eslint-plugin-tailwindcss": "^3.15.1",
"path": "^0.12.7",
"postcss-import": "^16.0.1",
"postcss-import": "^16.1.0",
"prettier": "^3.2.5",
"stimulus-vite-helpers": "^3.1.0",
"vite": "^5.1.5",
"vite": "^5.2.10",
"vite-plugin-full-reload": "^1.1.0",
"vite-plugin-ruby": "^5.0.0",
"vite-plugin-stimulus-hmr": "^3.0.0"
Expand Down
Loading

0 comments on commit 524322a

Please sign in to comment.