Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds General and billing settings #54

Merged
merged 20 commits into from
Jan 18, 2024
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
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,7 @@
!/app/assets/builds/.keep

.idea/
spec/examples.txt
spec/examples.txt
.DS_Store

/config/credentials/production.key
7 changes: 5 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,12 @@ gem "sprockets-rails"
gem "pg", "~> 1.1"

gem "puma", ">= 5.0"

gem "sidekiq", "~> 7.2"
gem "importmap-rails"
gem "turbo-rails"
gem "stimulus-rails"
gem "stripe"
gem "money"
gem "tailwindcss-rails"

# Use Redis adapter to run Action Cable in production
Expand Down Expand Up @@ -65,4 +66,6 @@ group :test do
gem "factory_bot_rails"
gem 'shoulda-matchers', '~> 5.0'
gem "timecop"
end
gem "webmock"
gem "vcr"
end
25 changes: 23 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,8 @@ GEM
xpath (~> 3.2)
concurrent-ruby (1.2.2)
connection_pool (2.4.1)
crack (0.4.5)
rexml
crass (1.0.6)
date (3.3.4)
debug (1.9.0)
Expand Down Expand Up @@ -125,6 +127,7 @@ GEM
sprockets-rails
graphql (2.2.3)
racc (~> 1.4)
hashdiff (1.1.0)
i18n (1.14.1)
concurrent-ruby (~> 1.0)
importmap-rails (1.2.3)
Expand Down Expand Up @@ -152,6 +155,8 @@ GEM
method_source (1.0.0)
mini_mime (1.1.5)
minitest (5.20.0)
money (6.16.0)
i18n (>= 0.6.4, <= 2)
msgpack (1.7.2)
mutex_m (0.2.0)
net-imap (0.4.9)
Expand Down Expand Up @@ -220,6 +225,8 @@ GEM
rake (13.1.0)
rdoc (6.6.2)
psych (>= 4.0.0)
redis-client (0.19.1)
connection_pool
regexp_parser (2.8.3)
reline (0.4.1)
io-console (~> 0.5)
Expand Down Expand Up @@ -249,6 +256,11 @@ GEM
websocket (~> 1.0)
shoulda-matchers (5.3.0)
activesupport (>= 5.2.0)
sidekiq (7.2.0)
concurrent-ruby (< 2)
connection_pool (>= 2.3.0)
rack (>= 2.2.4)
redis-client (>= 0.14.0)
sprockets (4.2.1)
concurrent-ruby (~> 1.0)
rack (>= 2.2.4, < 4)
Expand All @@ -259,7 +271,7 @@ GEM
stimulus-rails (1.3.0)
railties (>= 6.0.0)
stringio (3.1.0)
stripe (10.5.0)
stripe (5.55.0)
tailwindcss-rails (2.0.33-aarch64-linux)
railties (>= 6.0.0)
tailwindcss-rails (2.0.33-arm64-darwin)
Expand All @@ -276,6 +288,7 @@ GEM
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
uniform_notifier (1.16.0)
vcr (6.2.0)
view_component (3.9.0)
activesupport (>= 5.2.0, < 8.0)
concurrent-ruby (~> 1.0)
Expand All @@ -285,6 +298,10 @@ GEM
activemodel (>= 6.0.0)
bindex (>= 0.4.0)
railties (>= 6.0.0)
webmock (3.19.1)
addressable (>= 2.8.0)
crack (>= 0.3.2)
hashdiff (>= 0.4.0, < 2.0.0)
webrick (1.8.1)
websocket (1.2.10)
websocket-driver (0.7.6)
Expand Down Expand Up @@ -312,25 +329,29 @@ DEPENDENCIES
graphql (~> 2.2)
importmap-rails
letter_opener
money
passwordless (~> 1.1)
pg (~> 1.1)
puma (>= 5.0)
rails (= 7.1.2)
rspec-rails
selenium-webdriver
shoulda-matchers (~> 5.0)
sidekiq (~> 7.2)
sprockets-rails
stimulus-rails
stripe
tailwindcss-rails
timecop
turbo-rails
tzinfo-data
vcr
view_component
web-console
webmock

RUBY VERSION
ruby 3.3.0p0
ruby 3.2.0p0

BUNDLED WITH
2.4.7
1 change: 1 addition & 0 deletions Procfile.dev
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
web: env RUBY_DEBUG_OPEN=true bin/rails server -p 3000
css: bin/rails tailwindcss:watch
sidekiq: bundle exec sidekiq -C config/sidekiq.yml
1 change: 1 addition & 0 deletions app/assets/images/credit-cards/alipay.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions app/assets/images/credit-cards/amex.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions app/assets/images/credit-cards/code-front.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading