-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
37 lines (25 loc) · 1.34 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
# Specify your gem's dependencies in ink-components.gemspec.
gemspec
gem "puma"
gem "sqlite3", "2.1.0"
gem "sprockets-rails"
# Building reusable, testable & encapsulated view components [https://github.com/viewcomponent/view_component]
gem "view_component", "3.14.0"
# A collection of extension and developer tools for ViewComponent [https://github.com/palkan/view_component-contrib]
gem "view_component-contrib", "0.2.3"
# Bundle and process CSS in Rails with Tailwind, PostCSS, and Sass via Node.js [https://github.com/rails/cssbundling-rails]
gem "cssbundling-rails", "1.1.2"
# Bundle and transpile JavaScript in Rails with esbuild, rollup.js, or Webpack [https://github.com/rails/jsbundling-rails]
gem "jsbundling-rails", "1.1.1"
# Utility function to efficiently merge Tailwind CSS classes without style conflicts [https://github.com/gjtorikian/tailwind_merge]
gem "tailwind_merge", "0.13.1"
# Start debugger with binding.b [https://github.com/ruby/debug]
# gem "debug", ">= 1.0.0"
group :development do
# Omakase Ruby styling for Rails [https://github.com/rails/rubocop-rails-omakase]
gem "rubocop-rails-omakase", "1.0.0"
end
# Embed SVG documents in your Rails views and style them with CSS [https://github.com/jamesmartin/inline_svg]
gem "inline_svg"