2022-11-28 18:22:50 +01:00
|
|
|
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 'rspec-rails' , require: "rspec-rails"
|
2022-11-29 00:13:05 +01:00
|
|
|
gem 'haml-rails' , require: "haml-rails"
|
2022-12-07 17:02:27 +01:00
|
|
|
gem "tailwindcss-rails"
|
2022-12-08 16:16:29 +01:00
|
|
|
gem "importmap-rails"
|
|
|
|
gem "sprockets-rails"
|
2022-11-28 21:50:04 +01:00
|
|
|
|
2022-12-17 20:22:31 +01:00
|
|
|
gem "ruby2js" , path: "../ruby2js"
|
|
|
|
|
2022-11-28 21:30:00 +01:00
|
|
|
group :development, :test do
|
2022-12-08 16:16:29 +01:00
|
|
|
gem "capybara"
|
|
|
|
gem 'guard-rspec', require: false
|
2022-12-17 20:22:31 +01:00
|
|
|
gem "selenium-webdriver"
|
|
|
|
gem "webdrivers"
|
|
|
|
gem "puma"
|
2022-11-28 21:30:00 +01:00
|
|
|
end
|
2022-11-28 18:22:50 +01:00
|
|
|
|
|
|
|
# Start debugger with binding.b [https://github.com/ruby/debug]
|
|
|
|
# gem "debug", ">= 1.0.0"
|