Skip to content
Draft
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
1 change: 1 addition & 0 deletions .bundle/config
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
---
BUNDLE_PATH: "vendor/bundle"
BUNDLE_WITHOUT: "taglib"
5 changes: 5 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ source 'https://rubygems.org/'
gem 'rails', '7.0.5'
gem 'pg'

gem 'turbo-rails'
gem 'stimulus-rails'
gem 'importmap-rails'
gem 'sprockets-rails'

gem 'spring', group: :development

gem 'devise'
Expand Down
22 changes: 22 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1626,6 +1626,10 @@ GEM
image_processing (1.12.2)
mini_magick (>= 4.9.5, < 5)
ruby-vips (>= 2.0.17, < 3)
importmap-rails (2.2.3)
actionpack (>= 6.0.0)
activesupport (>= 6.0.0)
railties (>= 6.0.0)
jmespath (1.6.2)
json (2.6.3)
json-api-vanilla (1.0.4)
Expand Down Expand Up @@ -1653,6 +1657,7 @@ GEM
mimemagic (~> 0.3.0)
terrapin (~> 0.6.0)
language_server-protocol (3.17.0.3)
logger (1.7.0)
lograge (0.12.0)
actionpack (>= 4)
activesupport (>= 4)
Expand Down Expand Up @@ -1842,9 +1847,19 @@ GEM
capistrano (>= 3.8.1)
sorbet-runtime (0.5.10914)
spring (4.1.1)
sprockets (4.2.2)
concurrent-ruby (~> 1.0)
logger
rack (>= 2.2.4, < 4)
sprockets-rails (3.5.2)
actionpack (>= 6.1)
activesupport (>= 6.1)
sprockets (>= 3.0.0)
sshkit (1.21.4)
net-scp (>= 1.1.2)
net-ssh (>= 2.8.0)
stimulus-rails (1.3.4)
railties (>= 6.0.0)
syntax_tree (6.1.1)
prettier_print (>= 1.2.0)
syslog_protocol (0.9.2)
Expand All @@ -1857,6 +1872,9 @@ GEM
tilt (2.1.0)
timecop (0.9.6)
timeout (0.4.0)
turbo-rails (2.0.12)
actionpack (>= 6.0.0)
railties (>= 6.0.0)
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
tzinfo-data (1.2023.3)
Expand Down Expand Up @@ -1918,6 +1936,7 @@ DEPENDENCIES
headless
httparty
image_processing (>= 1.2)
importmap-rails
jsonapi-serializer
kaminari
kt-paperclip (~> 6.4, >= 6.4.1)
Expand Down Expand Up @@ -1950,9 +1969,12 @@ DEPENDENCIES
slackistrano
so_id3!
spring
sprockets-rails
stimulus-rails
terrapin
thwait
timecop
turbo-rails
tzinfo-data
unicorn
vcr
Expand Down
3 changes: 3 additions & 0 deletions app/assets/config/manifest.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
//= link_tree ../images
//= link_directory ../stylesheets .css
//= link_tree ../../javascript .js
Empty file added app/assets/images/.keep
Empty file.
13 changes: 13 additions & 0 deletions app/assets/stylesheets/application.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
/*
* This is a manifest file that'll be compiled into application.css, which will include all the files
* listed below.
*
* Any CSS (not SASS) file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
* or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
*
* You're free to add application-wide styles to this file and they'll appear at the bottom of the
* compiled file so the styles you add here take precedence over styles in any other CSS files in this directory.
*
*= require home
*= require_self
*/
Loading
Loading