-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
45 lines (39 loc) · 864 Bytes
/
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
source 'https://rubygems.org'
gem 'coffee-rails', '~> 4.1.0'
gem 'gulp_assets',
git: '[email protected]:HitFox/gulp_assets.git'
gem 'jquery-rails'
gem 'jbuilder', '~> 2.0'
gem 'pg'
gem 'rails', '4.2.3'
gem 'sass-rails', '~> 5.0'
gem 'sdoc', '~> 0.4.0',
group: :doc
gem 'turbolinks'
gem 'uglifier', '>= 1.3.0'
# See https://github.com/rails/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby
gem 'sidetiq'
gem 'github_api'
gem 'sinatra', :require => nil #needed for sidekiq monitoring
gem 'redis'
gem 'responders'
gem 'therubyracer'
gem 'devise'
gem 'omniauth'
gem 'omniauth-google-oauth2'
gem 'firebase'
group :development, :test do
gem 'byebug'
gem 'spring'
gem 'web-console', '~> 2.0'
gem 'dotenv-rails'
end
group :test do
gem 'rspec-rails'
gem 'vcr'
gem 'webmock'
end
group :development do
gem 'rubocop'
end