about summary refs log tree commit diff stats
path: root/Gemfile
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2024-12-07 11:49:49 -0500
committerStar Rauchenberger <fefferburbia@gmail.com>2024-12-07 11:49:49 -0500
commit56f5841d4b9c12296cdfcaeff174b2627d59afc8 (patch)
tree4f7da4ebbe5ee15a1594b26466ed78e2cf10de35 /Gemfile
parentc1b0443ba2aebdbd39291ddab0c189f3f4831320 (diff)
downloadpokeviewer-56f5841d4b9c12296cdfcaeff174b2627d59afc8.tar.gz
pokeviewer-56f5841d4b9c12296cdfcaeff174b2627d59afc8.tar.bz2
pokeviewer-56f5841d4b9c12296cdfcaeff174b2627d59afc8.zip
Migrate to full rails app
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile96
1 files changed, 85 insertions, 11 deletions
diff --git a/Gemfile b/Gemfile index 1cdc7db..0e5e139 100644 --- a/Gemfile +++ b/Gemfile
@@ -1,14 +1,88 @@
1source 'https://rubygems.org' 1source "https://rubygems.org"
2 2
3# Declare your gem's dependencies in pokeviewer.gemspec. 3ruby "3.3.6"
4# Bundler will treat runtime dependencies like base dependencies, and
5# development dependencies will be added by default to the :development group.
6gemspec
7 4
8# Declare any dependencies that are still in development here instead of in 5# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
9# your gemspec. These might include edge Rails or gems from your path or 6gem "rails", "~> 7.1.1"
10# Git. Remember to move these dependencies to your gemspec before releasing
11# your gem to rubygems.org.
12 7
13# To use a debugger 8# The original asset pipeline for Rails [https://github.com/rails/sprockets-rails]
14# gem 'byebug', group: [:development, :test] 9gem "sprockets-rails"
10
11# Use sqlite3 as the database for Active Record
12gem "sqlite3", "~> 1.4"
13
14# Use the Puma web server [https://github.com/puma/puma]
15gem "puma", ">= 5.0"
16
17# Use JavaScript with ESM import maps [https://github.com/rails/importmap-rails]
18#gem "importmap-rails"
19
20# Hotwire's SPA-like page accelerator [https://turbo.hotwired.dev]
21#gem "turbo-rails"
22
23# Hotwire's modest JavaScript framework [https://stimulus.hotwired.dev]
24#gem "stimulus-rails"
25
26# Build JSON APIs with ease [https://github.com/rails/jbuilder]
27gem "jbuilder"
28
29# Use Redis adapter to run Action Cable in production
30# gem "redis", ">= 4.0.1"
31
32# Use Kredis to get higher-level data types in Redis [https://github.com/rails/kredis]
33# gem "kredis"
34
35# Use Active Model has_secure_password [https://guides.rubyonrails.org/active_model_basics.html#securepassword]
36# gem "bcrypt", "~> 3.1.7"
37
38# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
39gem "tzinfo-data", platforms: %i[ windows jruby ]
40
41# Reduces boot times through caching; required in config/boot.rb
42gem "bootsnap", require: false
43
44# Use Active Storage variants [https://guides.rubyonrails.org/active_storage_overview.html#transforming-images]
45# gem "image_processing", "~> 1.2"
46
47# Use Uglifier as compressor for JavaScript assets
48gem 'terser', '~> 1.1.19'
49
50# See https://github.com/rails/execjs#readme for more supported runtimes
51gem 'mini_racer'
52
53group :development, :test do
54 # See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
55 gem "debug", platforms: %i[ mri windows ]
56end
57
58group :development do
59 # Use console on exceptions pages [https://github.com/rails/web-console]
60 gem "web-console"
61
62 # Add speed badges [https://github.com/MiniProfiler/rack-mini-profiler]
63 # gem "rack-mini-profiler"
64
65 # Speed up commands on slow machines / big apps [https://github.com/rails/spring]
66 # gem "spring"
67end
68
69group :test do
70 # Use system testing [https://guides.rubyonrails.org/testing.html#system-testing]
71 gem "capybara"
72 gem "selenium-webdriver"
73end
74
75group :production do
76 gem 'mysql2'
77 gem 'rack', '2.2.8'
78end
79
80gem 'enumerize'
81gem 'sequenced'
82gem 'activerecord-diff'
83gem 'haml'
84gem 'sassc-rails'
85gem 'normalize-rails'
86gem 'coffee-rails', '~> 4.2'
87gem 'jquery-rails'
88gem 'victor'