You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
gem"vite_rails"# Leverage Vite to power the frontend of your Rails app [https://vite-ruby.netlify.app/guide/rails.html]
23
23
24
24
# Utilities
25
+
gem"addressable"# Addressable is an alternative implementation to URI [https://github.com/sporkmonger/addressable]
25
26
gem"bcrypt","~> 3.1.7"# Use Active Model has_secure_password [https://guides.rubyonrails.org/active_model_basics.html#securepassword]
27
+
gem"color_conversion"# A ruby gem to perform color conversions [https://github.com/devrieda/color_conversion]
28
+
gem"commonmarker",require: false
29
+
gem"device_detector"# DeviceDetector is a precise and fast user agent parser and device detector written in Ruby [https://github.com/podigee/device_detector]
30
+
gem"fastimage",require: false# FastImage finds the size or type of an image given its uri by fetching as little as needed [https://github.com/sdsykes/fastimage]
26
31
gem"flipper"# Feature flipping for Ruby [https://www.flippercloud.io/]
27
32
gem"flipper-active_record"# ActiveRecord adapter for Flipper [https://www.flippercloud.io/docs/adapters/active-record]
28
-
gem"device_detector"# DeviceDetector is a precise and fast user agent parser and device detector written in Ruby [https://github.com/podigee/device_detector]
29
-
gem"warden"# General Rack Authentication Framework [https://github.com/wardencommunity/warden]
gem"rails_admin"# RailsAdmin is a Rails engine that provides an easy-to-use interface for managing your data [https://github.com/railsadminteam/rails_admin]
33
-
gem"addressable"# Addressable is an alternative implementation to URI [https://github.com/sporkmonger/addressable]
33
+
gem"invisible_captcha"# Unobtrusive and flexible spam protection for Rails apps [https://github.com/markets/invisible_captcha]
gem"rails_admin"# RailsAdmin is a Rails engine that provides an easy-to-use interface for managing your data [https://github.com/railsadminteam/rails_admin]
gem"warden"# General Rack Authentication Framework [https://github.com/wardencommunity/warden]
36
41
37
42
# Rendering
38
43
gem"image_processing"# Use Active Storage variants [https://guides.rubyonrails.org/active_storage_overview.html#transforming-images]
39
44
gem"inline_svg"# Embed SVGs in Rails views and style them with CSS [https://github.com/jamesmartin/inline_svg
45
+
gem"meta-tags"# Search Engine Optimization (SEO) for Ruby on Rails applications. [https://github.com/kpumuk/meta-tags]
40
46
gem"rouge"# Pure Ruby syntax highlighter [https://github.com/rouge-ruby/rouge
41
47
gem"sitepress-rails"# Static site generator for Rails [https://sitepress.cc/getting-started/rails]
42
48
43
49
gem"phlex","2.0.0.rc1"# An object-oriented view layer. [https://github.com/phlex-ruby/phlex]
44
50
gem"phlex-rails","2.0.0.rc1"# Rails integration for Phlex [https://github.com/phlex-ruby/phlex-rails]
45
51
46
-
gem"commonmarker",require: false
47
-
gem"invisible_captcha"# Unobtrusive and flexible spam protection for Rails apps [https://github.com/markets/invisible_captcha]
48
-
gem"color_conversion"# A ruby gem to perform color conversions [https://github.com/devrieda/color_conversion]
49
-
gem"meta-tags"# Search Engine Optimization (SEO) for Ruby on Rails applications. [https://github.com/kpumuk/meta-tags]
50
-
gem"fastimage",require: false# FastImage finds the size or type of an image given its uri by fetching as little as needed [https://github.com/sdsykes/fastimage]
51
-
52
52
gem"bootsnap",require: false# Reduces boot times through caching; required in config/boot.rb [https://github.com/Shopify/bootsnap]
53
53
54
54
# Clients
55
-
gem"httpx"# An HTTP client library for Ruby [https://gitlab.com/os85/httpx]
55
+
gem"aws-sdk-s3"# Official AWS Ruby gem for Amazon S3 [https://github.com/aws/aws-sdk-ruby]
56
56
gem"honeybadger",require: false# Error monitoring and uptime reporting [https://www.honeybadger.io]
57
+
gem"httpx"# An HTTP client library for Ruby [https://gitlab.com/os85/httpx]
57
58
gem"litestream"# Standalone streaming replication for SQLite [https://litestream.io]
58
-
gem"web-push"# Web Push library for Ruby [https://github.com/pushpad/web-push]
59
-
gem"aws-sdk-s3"# Official AWS Ruby gem for Amazon S3 [https://github.com/aws/aws-sdk-ruby]
60
59
gem"ruby-openai"# Use OpenAI in Ruby [https://github.com/alexrudall/ruby-openai]
60
+
gem"web-push"# Web Push library for Ruby [https://github.com/pushpad/web-push]
61
61
62
62
# Admin
63
63
gem"flipper-ui"# UI for the Flipper gem [https://www.flippercloud.io/docs/ui]
@@ -75,18 +75,18 @@ group :test do
75
75
gem"capybara"# Acceptance test framework for web applications [https://github.com/teamcapybara/capybara]
76
76
gem"cuprite"# Headless Chrome driver for Capybara [https://github.com/rubycdp/cuprite]
77
77
gem"simplecov",require: false# Code coverage for Ruby [https://github.com/simplecov-ruby/simplecov]
78
-
gem"simplecov-tailwindcss",require: false# Alternative HTML formatter for SimpleCov [https://github.com/chiefpansancolt/simplecov-tailwindcss]
79
78
gem"simplecov-cobertura",require: false# Produces Cobertura formatted XML from SimpleCov. [https://github.com/dashingrocket/simplecov-cobertura]
79
+
gem"simplecov-tailwindcss",require: false# Alternative HTML formatter for SimpleCov [https://github.com/chiefpansancolt/simplecov-tailwindcss]
80
80
gem"webmock",require: false# Library for stubbing HTTP requests [https://github.com/bblimke/webmock]
81
81
82
82
# Uncomment the following line and bundle to use Selenium with Firefox
83
83
# gem "selenium-webdriver" # Ruby bindings for Selenium [https://www.rubydoc.info/gems/selenium-webdriver/frames]
84
84
end
85
85
86
86
group:development,:testdo
87
-
gem"css_parser",require: false# A pure Ruby CSS parser based on the CSS Syntax Level 3 specification [https://github.com/rgrove/crass]
88
87
gem"brakeman",require: false# A static analysis security vulnerability scanner for Ruby on Rails applications [https://github.com/presidentbeef/brakeman]
89
88
gem"bundle-audit",require: false# Patch level verification for Bundler [https://github.com/rubysec/bundler-audit]
89
+
gem"css_parser",require: false# A pure Ruby CSS parser based on the CSS Syntax Level 3 specification [https://github.com/rgrove/crass]
90
90
gem"debug",platforms: %i[mriwindows]# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
91
91
gem"dotenv"# A Ruby gem to load environment variables from `.env` [https://github.com/bkeepers/dotenv]
92
92
gem"factory_bot_rails",require: false# A library for setting up Ruby objects as test data [https://github.com/thoughtbot/factory_bot_rails]
0 commit comments