-
Notifications
You must be signed in to change notification settings - Fork 3
/
Gemfile
50 lines (37 loc) · 1.5 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
38
39
40
41
42
43
44
45
46
47
48
49
50
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "3.2.4"
# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
gem "rails", "~> 7.2.1"
# The original asset pipeline for Rails [https://github.com/rails/sprockets-rails]
gem "sprockets-rails"
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]
# Use JavaScript with ESM import maps [https://github.com/rails/importmap-rails]
gem "importmap-rails"
# Use Sass to process CSS
gem "sassc-rails"
group :development, :test do
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
gem "debug", platforms: [:mri, :mingw, :x64_mingw]
end
group :development do
# Use console on exceptions pages [https://github.com/rails/web-console]
gem "web-console"
# Use WEBrick as the app server
gem "webrick"
end
# Twitter Bootstrap 2.x
gem "bootstrap-sass", "< 3"
# Required for using of bootstrap-sass 2.x in Rails.
gem "sass-rails", ">= 6"
# Use jquery as the JavaScript library
gem "jquery-rails"
# Delivering exception notifications by email
gem "exception_notification"
group :development do
gem "standard", require: false
end
# Atlantica Online Craft Calculator
gem "atlantica_online_craft_calculator_engine", github: "jana4u/atlantica_online_craft_calculator_engine"
gem "atlantica_online_craft_calculator", github: "jana4u/atlantica_online_craft_calculator"