This repository has been archived by the owner on Apr 21, 2020. It is now read-only.
forked from cconstantine/wattle
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
80 lines (73 loc) · 1.71 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
source 'https://rubygems.org'
#ruby File.read(".ruby-version").strip#'2.1.1'
gem 'rails'#, "~> 4.2"
gem 'pg'
gem "haml-rails"
gem 'jquery-rails'
gem 'jbuilder', '~> 1.0.1'
gem 'httpclient'
gem 'wat_catcher'#, path: "../wat_catcher"
gem 'sidekiq_healthcheck'
gem 'kaminari'
gem 'kaminari-bootstrap'
gem 'omniauth-oauth2', '= 1.3.1'
gem 'omniauth-gplus'
gem 'secrets', :github => "austinfromboston/secrets"
gem 'state_machine', :github => "seuros/state_machine"
gem 'user-agent'
gem 'redcarpet'
gem 'sass-rails', '>= 4.0'
gem 'coffee-rails', '>= 4.0'
gem 'bootstrap-sass-rails'
gem "backbone-on-rails"
gem 'uglifier', '>= 1.0.3'
gem 'execjs'
gem 'therubyracer'
gem 'sidekiq'
gem 'sidekiq-cron'
gem 'slim', ">= 1.3.0", :require => false
gem 'sinatra', '>= 1.3.0', :require => false
gem 'highcharts-rails'
gem 'moment_ago'
gem 'libv8', '=3.16.14.7'
gem 'puma'
gem "logviously", git: '[email protected]:omadahealth/logviously'
gem 'newrelic_rpm'
gem 'paper_trail'
gem 'searchkick', '=0.9.1'
gem 'typhoeus'
gem 'responders', '~> 2.0'
gem 'cancancan'
gem 'dotenv-rails'
gem 'foreman'
gem 'health_check'
gem 'tracker_api'
gem 'omada_utils', git: '[email protected]:omadahealth/omada_utils'
gem 'apohypaton'
gem 'greek_fire'
group :production do
gem 'rails_12factor'
end
group :development do
gem 'pivotal_git_scripts'
gem 'better_errors'
gem 'binding_of_caller'
gem 'quiet_assets'
gem 'capistrano', '>= 3.4.0'
gem 'capistrano-rails'
end
group :test, :development do
gem 'awesome_print'
gem 'rr', require: false
gem 'rspec-rails'#, "~> 2"
gem 'fixture_builder'
gem 'json_spec'
end
group :test do
gem 'email_spec'
gem 'capybara'
gem 'poltergeist'
gem "poltergeist-suppressor"
gem 'launchy'
gem 'rspec-collection_matchers'
end