-
Notifications
You must be signed in to change notification settings - Fork 4
/
Gemfile
72 lines (59 loc) · 1.56 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
source 'https://rubygems.org'
gem 'rails', '4.2.0'
gem 'pg'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.1.0'
gem 'haml-rails'
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'turbolinks'
gem 'jbuilder', '~> 2.0'
gem 'delayed_job', '~> 4.0.6'
gem 'delayed_job_active_record', '~> 4.0.3'
gem "highcharts-rails", "~> 3.0.0"
gem 'd3_rails'
gem 'c3-rails'
gem 'faye-authentication', github: 'branch14/faye-authentication'
gem 'devise'
# sprockets is locked so that it does not update by accident to v3 which will
# crash capistrano deployment currently
gem 'sprockets', '2.12.3'
gem 'sdoc', '~> 0.4.0', group: :doc
# optional
gem 'active_skin'
gem 'lodash-rails'
gem 'whenever'
gem 'friendly_id'
gem 'redcarpet'
gem 'reverse_markdown'
gem 'fog-aws', require: 'fog/aws'
# gem 'bcrypt', '~> 3.1.7'
gem 'unicorn'
gem 'activeadmin', github: 'activeadmin/activeadmin'
gem 'rails_config'
gem 'activeadmin-dragonfly', github: 'stefanoverna/activeadmin-dragonfly'
gem 'acts-as-taggable-on'
group :production do
gem 'airbrake', '~> 5.0'
end
group :development do
gem 'annotator'
gem 'capistrano', '~> 3.1.0'
gem 'capistrano-rbenv', '~> 2.0.1'
gem 'capistrano-bundler', '~> 1.1.1'
gem 'capistrano-rails', '~> 1.1.1'
end
group :development, :test do
gem 'spring'
gem 'web-console', '~> 2.0'
gem 'pry-rails'
gem 'byebug'
#gem 'disable_assets_logger'
gem 'database_cleaner'
gem 'rspec-rails'
gem 'rspec_junit_formatter', '0.2.2'
gem 'spring-commands-rspec' # TODO check if needed
gem 'rack-test'
gem 'factory_girl_rails'
end