forked from itsubscriptionmoleskine/msk-works-with
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
63 lines (54 loc) · 1.62 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
51
52
53
54
55
56
57
58
59
60
61
source 'https://rubygems.org'
ruby "2.5.3"
git_source(:github) do |repo_name|
repo_name = '#{repo_name}/#{repo_name}' unless repo_name.include?('/')
'https://github.com/#{repo_name}.git'
end
gem 'activeadmin', '~> 1.4'
gem 'breadcrumbs_on_rails', '~> 3.0'
gem 'devise', '~> 4.5'
gem 'dotenv-rails', '~> 2.5'
gem 'font-awesome-sass', '~> 5.5'
gem 'haml-rails', '~> 1.0'
gem 'inline_svg', '~> 1.3'
gem 'jbuilder', '~> 2.5'
gem 'jquery-rails', '~> 4.3'
gem 'jquery-slick-rails', '~> 1.9'
gem 'livingstyleguide', '~> 2.0'
gem 'mini_racer', '~> 0.2.4'
gem 'nokogiri', '>= 1.10.4'
gem 'pg', '~> 1.1'
gem 'puma', '~> 3.7'
gem 'rails', '~> 5.2'
gem 'sass-rails', '~> 5.0'
gem 'stackdriver', '~> 0.15.0'
gem 'tinymce-rails', '~> 4.9'
gem 'turbolinks', '~> 5.2'
gem 'uglifier', '~> 4.1'
gem 'pry', '~> 0.12.2'
gem 'travis', '~> 1.8'
gem 'meta-tags', '~> 2.11'
group :development, :test do
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
gem 'capybara'
gem 'chromedriver-helper', '~> 2.1'
gem 'database_cleaner', '~> 1.7'
gem 'erb2haml', '~> 0.1.5' #rake haml:replace_erbs / rake haml:convert_erbs
gem 'factory_bot_rails', '~> 4.11'
gem 'faker', '~> 1.9'
gem 'rails-controller-testing', '~> 1.0'
gem 'rspec-rails'
gem 'seed_dump', '~> 3.3' # rake db:seed:dump
gem 'selenium-webdriver', '~> 3.141'
gem 'shoulda-matchers', '~> 3.1'
gem 'table_print', '~> 1.5'
end
group :development do
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'web-console', '>= 3.3.0'
end
group :doc do
gem 'sdoc'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]