-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathGemfile
62 lines (54 loc) · 1.15 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
62
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
# Core
gem 'rails', '5.2.1'
gem "pg", "~> 0.18"
gem 'bcrypt'
gem "bootsnap"
# Frontend
gem "bourbon", "~> 4.3.4"
gem 'sass-rails', '~> 5.0.0'
gem 'uglifier', '>= 1.3.0'
gem "jquery-rails"
gem 'ejs'
# gem "jquery-ui-rails"
gem 'jquery-turbolinks'
gem 'turbolinks'
gem "i18n-js", ">= 3.0.0.rc8"
# Utilities
gem 'friendly_id', '~> 5.2', '>= 5.2.4'
gem 'i18n_country_select'
gem 'i18n-country-translations'
gem 'redcarpet'
gem 'money-rails'
gem 'rollbar'
gem 'meta-tags'
gem 'rails-i18n'
gem 'dynamic_form'
gem 'json_translate'
gem 'acts_as_follower', github: 'tcocca/acts_as_follower', branch: 'master'
gem 'acts-as-taggable-on', '~> 6.0'
gem 'hstore_accessor'
# Social networks
gem 'omniauth-twitter'
gem 'twitter'
gem 'omniauth-facebook'
gem 'koala'
group :development, :test do
gem 'spring'
gem "byebug", platform: :mri
gem 'jasmine'
gem "puma"
end
group :test do
gem 'database_cleaner'
gem 'rspec-rails'
gem 'capybara'
gem 'launchy'
gem 'email_spec'
gem 'timecop'
end
group :development do
gem "listen"
gem "spring-watcher-listen", "~> 2.0.0"
end