-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #28 from gosuperfast/add/posting-functionality
Add/posting functionality
- Loading branch information
Showing
30 changed files
with
922 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,69 +1,69 @@ | ||
source "https://rubygems.org" | ||
source 'https://rubygems.org' | ||
|
||
# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main" | ||
gem "rails", "~> 8.0.0" | ||
gem 'rails', '~> 8.0.0' | ||
# The modern asset pipeline for Rails [https://github.com/rails/propshaft] | ||
gem "propshaft" | ||
gem 'propshaft' | ||
# Use postgresql as the database for Active Record | ||
gem "pg", "~> 1.1" | ||
gem 'pg', '~> 1.1' | ||
# Use the Puma web server [https://github.com/puma/puma] | ||
gem "puma", ">= 5.0" | ||
gem 'puma', '>= 5.0' | ||
# Use JavaScript with ESM import maps [https://github.com/rails/importmap-rails] | ||
gem "importmap-rails" | ||
gem 'importmap-rails' | ||
# Hotwire's SPA-like page accelerator [https://turbo.hotwired.dev] | ||
gem "turbo-rails" | ||
gem 'turbo-rails' | ||
# Hotwire's modest JavaScript framework [https://stimulus.hotwired.dev] | ||
gem "stimulus-rails" | ||
gem 'stimulus-rails' | ||
# Build JSON APIs with ease [https://github.com/rails/jbuilder] | ||
gem "jbuilder" | ||
gem 'jbuilder' | ||
|
||
# Use Active Model has_secure_password [https://guides.rubyonrails.org/active_model_basics.html#securepassword] | ||
# gem "bcrypt", "~> 3.1.7" | ||
|
||
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem | ||
gem "tzinfo-data", platforms: %i[ windows jruby ] | ||
gem 'tzinfo-data', platforms: %i[windows jruby] | ||
|
||
# Use the database-backed adapters for Rails.cache, Active Job, and Action Cable | ||
gem "solid_cache" | ||
gem "solid_queue" | ||
gem "solid_cable" | ||
gem 'solid_cable' | ||
gem 'solid_cache' | ||
gem 'solid_queue' | ||
|
||
# Reduces boot times through caching; required in config/boot.rb | ||
gem "bootsnap", require: false | ||
gem 'bootsnap', require: false | ||
|
||
# Deploy this application anywhere as a Docker container [https://kamal-deploy.org] | ||
gem "kamal", require: false | ||
gem 'kamal', require: false | ||
|
||
# Add HTTP asset caching/compression and X-Sendfile acceleration to Puma [https://github.com/basecamp/thruster/] | ||
gem "thruster", require: false | ||
gem 'thruster', require: false | ||
|
||
# Use Active Storage variants [https://guides.rubyonrails.org/active_storage_overview.html#transforming-images] | ||
# gem "image_processing", "~> 1.2" | ||
gem 'image_processing', '~> 1.2' | ||
|
||
group :development, :test do | ||
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem | ||
gem "debug", platforms: %i[ mri windows ], require: "debug/prelude" | ||
gem 'debug', platforms: %i[mri windows], require: 'debug/prelude' | ||
|
||
# Static analysis for security vulnerabilities [https://brakemanscanner.org/] | ||
gem "brakeman", require: false | ||
gem 'brakeman', require: false | ||
|
||
# Omakase Ruby styling [https://github.com/rails/rubocop-rails-omakase/] | ||
gem "rubocop-rails-omakase", require: false | ||
gem 'rubocop-rails-omakase', require: false | ||
end | ||
|
||
group :development do | ||
# Use console on exceptions pages [https://github.com/rails/web-console] | ||
gem "web-console" | ||
gem 'web-console' | ||
end | ||
|
||
group :test do | ||
# Use system testing [https://guides.rubyonrails.org/testing.html#system-testing] | ||
gem "capybara" | ||
gem "selenium-webdriver" | ||
gem 'capybara' | ||
gem 'selenium-webdriver' | ||
end | ||
|
||
gem "tailwindcss-rails", "~> 3.0" | ||
gem 'tailwindcss-rails', '~> 3.0' | ||
|
||
gem "devise", "~> 4.9" | ||
gem 'devise', '~> 4.9' | ||
|
||
gem "simple_form", "~> 5.3" | ||
gem 'simple_form', '~> 5.3' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.