-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
69 lines (61 loc) · 1.42 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
63
64
65
66
67
68
69
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
# Defaults
gem 'rails', '~> 5.0.2'
gem 'pg', '~> 0.18'
gem 'puma', '~> 3.0'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.2'
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'jbuilder', '~> 2.5'
gem 'redis', '~> 3.0'
gem 'redis-namespace'
# /Defaults
# Essentials
gem 'sidekiq'
gem 'sidekiq-cron'
gem 'autoprefixer-rails'
gem 'font-awesome-rails'
gem 'colorize'
gem 'faker'
gem 'rspec'
gem 'factory_girl_rails'
# / Essentials
gem 'devise'
gem 'rest-client'
gem 'has_friendship'
gem 'chroma'
gem 'oily_png'
gem 'kaminari'
gem 'slack-notifier'
gem 'browser-timezone-rails'
gem 'obscenity'
gem 'aws-sdk-s3'
gem 'paperclip'
gem 'exception_notification'
gem 'stripe'
gem 'differ'
gem 'nokogiri', "~> 1.10.4"
gem 'mimemagic', github: 'mimemagicrb/mimemagic', ref: '3543363026121ee28d98dfce4cb6366980c055ee'
group :development, :test do
gem 'byebug', platform: :mri
gem 'annotate'
gem 'pry-rails'
gem 'pry-byebug'
gem 'better_errors'
gem 'binding_of_caller'
gem 'rspec-rails', '~> 3.5'
end
group :development do
gem 'web-console', '>= 3.3.0'
gem 'listen', '~> 3.0.5'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'rails_real_favicon'
end
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]