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 21:50:04 +01: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 20:28:00 +01:00
gem "devise"
2022-11-28 21:50:04 +01:00
2023-01-20 15:48:38 +01:00
gem "simple_form" , "5.1.0"
gem "simple_form_tailwind_css"
2022-12-26 20:02:42 +01:00
gem "ruby2js" , git: "https://github.com/ruby2js/ruby2js/" , branch: "haml_fix"
2022-11-28 21:30:00 +01:00
group :development, :test do
gem "capybara"
gem "selenium-webdriver"
gem "webdrivers"
gem "puma"
2022-12-22 20:28:00 +01:00
gem 'guard-minitest'
2022-12-23 14:25:53 +01: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"