-
Notifications
You must be signed in to change notification settings - Fork 10
/
Gemfile
91 lines (73 loc) · 1.94 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
#ruby=ruby-2.4.0
#ruby-gemset=spacedecentral-network
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
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 5.0.1'
gem 'mysql2', '0.4.5'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'therubyracer', platforms: :ruby
gem 'non-stupid-digest-assets'
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'bootstrap-sass', '~> 3.3.6'
gem 'angularjs-rails'
gem 'momentjs-rails'
gem 'jbuilder', '~> 2.5'
gem 'haml-rails'
gem 'inline_svg'
gem 'rmagick'
gem "cocoon"
gem 'mark_it_zero' #, git: '[email protected]:khacluan/mark_it_zero.git', tag: 'v0.3.3'
gem 'redcarpet'
gem 'turbolinks', '~> 5'
gem 'paperclip', '~> 5.2.0'
gem 'remotipart', '~> 1.2'
gem 'devise'
gem 'sidekiq'
gem 'redis', '~> 3.3.5'
gem 'redis-rails'
gem 'friendly_id'
gem 'aws-sdk', '= 2.10.1'
gem 'omniauth-google-oauth2'
gem 'signet'
gem 'google-api-client'
gem 'passenger', '5.1.2'
gem 'exception_notification'
gem 'whenever', :require => false
gem 'figaro'
gem 'jquery-fileupload-rails'
gem 'draper'
gem 'aasm'
gem 'kaminari'
gem 'high_voltage', '~> 3.0.0'
gem 'jquery-slick-rails'
gem 'google-analytics-rails', '1.1.1'
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
gem 'recaptcha'
group :development, :test do
gem 'byebug', platform: :mri
gem 'capybara'
gem 'selenium-webdriver', '2.53.4'
gem 'puma'
# gem 'capybara-webkit'
end
group :development do
gem 'capistrano', '~> 3.6'
gem 'capistrano-rvm'
# gem 'rvm1-capistrano3'
gem 'capistrano-bundler'
gem 'capistrano-passenger'
gem 'capistrano-sidekiq'
gem 'capistrano-rails', '~> 1.2'
gem 'web-console', '>= 3.3.0'
gem 'listen', '~> 3.0.5'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'meta_request'
end