-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
70 lines (65 loc) · 1.84 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
source 'http://rubygems.org'
ruby '2.0.0'
gem 'rails', '4.0.0'
gem 'pg'
gem 'pg_search'
gem 'slim-rails'
gem 'sass-rails', '~> 4.0.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'uglifier', '>= 1.3.0'
gem 'zurb-foundation', '~> 4.2.3'
gem 'foundation-icons-sass-rails'
gem 'jquery-rails'
gem 'simple_form', '~> 3.0.0.rc'
gem 'chosen-rails'
gem 'paranoia'
gem 'sorcery', github: 'NoamB/sorcery'
gem 'pundit'
#gem 'client_side_validations', github: 'bcardarella/client_side_validations', branch: '4-0-beta'
#gem 'client_side_validations-simple_form', github: 'saveritemedical/client_side_validations-simple_form'
gem 'carrierwave'
gem 'mini_magick'
gem 'squeel', github: 'ernie/squeel'
gem 'jquery-datatables-rails', git: 'git://github.com/rweng/jquery-datatables-rails.git'
gem 'will_paginate' #
gem 'strip_attributes'
gem 'paper_trail', github: 'airblade/paper_trail', branch: 'rails4'
gem 'draper'
gem 'aasm'
group :test do
gem 'simplecov'
gem 'poltergeist'
end
group :test, :development do
gem 'minitest-rails'
gem 'minitest-reporters'
gem 'capybara'
gem 'capybara-email' #
gem 'factory_girl_rails'
gem 'qunit-rails'
gem 'timecop'
gem 'quiet_assets'
gem 'debugger'
end
group :development do
# http://mailcatcher.me/
# Please don't put mailcatcher into your Gemfile. It will conflict with your applications gems at some point.
gem 'mailcatcher'
gem 'launchy'
gem 'pry-rails'
gem 'awesome_print'
gem 'ffaker'
gem 'annotate'
gem 'brakeman'
gem 'better_errors'
gem 'binding_of_caller'
gem 'meta_request'
gem 'guard'
gem 'guard-rails' # Zeus and debug
gem 'guard-sass', require: false # https://github.com/hawx/guard-sass/issues/30#issuecomment-7366808
gem 'guard-coffeescript'
gem 'guard-minitest' #
gem 'guard-annotate'
gem 'guard-livereload'
gem 'rack-livereload'
end