-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
42 lines (34 loc) · 1.53 KB
/
Gemfile
File metadata and controls
42 lines (34 loc) · 1.53 KB
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
source 'https://rubygems.org'
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
"https://github.com/#{repo_name}.git"
end
ruby '3.0.3'
gem 'rails', '6.1.7.5'
gem 'sqlite3'
gem 'puma', '~> 6.3', '>= 6.3.1'
gem 'sass-rails', '~> 6.0'
gem 'uglifier', '~> 4.2'
gem 'coffee-rails', '~> 5.0'
gem 'turbolinks', '~> 5.2', '>= 5.2.1'
gem 'font-awesome-rails', '~> 4.7', '>= 4.7.0.1'
gem 'bootstrap-sass', '~> 3.3', '>= 3.3.7'
gem 'camaleon_cms', '~> 2.7', '>= 2.7.4'
gem 'draper', '~> 4.0', '>= 4.0.2'
gem 'haml-rails', '~> 2.1'
group :development, :test do
gem 'pry-rails', '~> 0.3.9'
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
gem 'capybara', '~> 3.39', '>= 3.39.2'
gem 'selenium-webdriver'
end
group :development do
gem 'web-console', '~> 4.2'
gem 'listen', '~> 3.8'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.1'
end
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
#################### Camaleon CMS include all gems for plugins and themes ####################
require './lib/plugin_routes'
instance_eval(PluginRoutes.draw_gems)