merged/Gemfile

30 lines
755 B
Ruby
Raw Normal View History

source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
# Specify your gem's dependencies in merged.gemspec.
gemspec
2022-11-28 22:50:04 +02:00
gem 'sprockets-rails', require: 'sprockets/railtie'
gem 'haml-rails' , require: "haml-rails"
gem "tailwindcss-rails"
gem "importmap-rails"
gem "sprockets-rails"
2022-12-22 21:28:00 +02:00
gem "devise"
2022-11-28 22:50:04 +02:00
2023-01-20 16:48:38 +02:00
gem "simple_form" , "5.1.0"
gem "simple_form_tailwind_css"
2022-12-26 21:02:42 +02:00
gem "ruby2js" , git: "https://github.com/ruby2js/ruby2js/" , branch: "haml_fix"
2022-11-28 22:30:00 +02:00
group :development, :test do
gem "capybara"
gem "selenium-webdriver"
gem "webdrivers"
gem "puma"
2022-12-22 21:28:00 +02:00
gem 'guard-minitest'
2022-12-23 15:25:53 +02:00
gem 'guard' # NOTE: this is necessary in newer versions
end
# Start debugger with binding.b [https://github.com/ruby/debug]
# gem "debug", ">= 1.0.0"