forked from martintomas/activeadmin-globalize
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
41 lines (36 loc) · 971 Bytes
/
Gemfile
File metadata and controls
41 lines (36 loc) · 971 Bytes
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
38
39
40
41
source 'https://rubygems.org'
gemspec
gem 'rails', '~> 7.0'
gem 'devise', '~> 4.9'
# Rails 7 and ActiveAdmin dependencies
gem 'activeadmin', '~> 3.3'
gem 'formtastic', '~> 4.0'
gem 'sprockets-rails', '~> 3.4'
gem 'sassc-rails', '~> 2.1'
gem 'coffee-rails', '~> 5.0'
# Ruby 3.4 compatibility - these gems were moved from default to bundled
gem 'bigdecimal', '~> 3.1'
gem 'logger', '~> 1.6'
gem 'ostruct', '~> 0.6'
gem 'csv', '~> 3.3'
gem 'mutex_m', '~> 0.2'
gem 'base64', '~> 0.2'
gem 'drb', '~> 2.2'
gem 'benchmark', '~> 0.3'
group :test do
gem 'sqlite3', '~> 1.4'
gem 'rspec-rails', '~> 6.0'
gem 'factory_bot_rails', '~> 6.0'
gem 'database_cleaner', '~> 2.0'
gem 'spring', require: false
gem 'spring-commands-rspec', require: false
gem 'capybara', '~> 3.38'
gem 'capybara-screenshot'
gem 'selenium-webdriver'
gem 'fuubar', '~> 2.5'
gem 'appraisal'
gem 'awesome_print'
gem 'pry'
gem 'puma', '~> 5.0'
gem 'rspec-collection_matchers'
end