This repository was archived by the owner on Jul 24, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathGemfile
95 lines (79 loc) · 1.72 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
91
92
93
94
95
source 'https://rubygems.org'
ruby '2.1.1'
#standard gems
gem 'rails', '3.2.14'
gem 'mysql2', '0.3.16'
gem 'rake'
gem 'rdoc'
#authentication
gem 'rubycas-client-rails'
gem 'rubycas-client', '2.2.1'
gem 'cancan'
#scheduling
gem 'whenever'
gem 'activeadmin'
#ldap integration
gem 'net-ldap'
#attachments
gem 'paperclip'
gem 'permanent_records'
gem 'nilify_blanks'
#ui
gem 'jquery_datepicker'
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'jquery-datatables-rails'
gem 'rails3-jquery-autocomplete'
gem 'select2-rails'
gem 'kaminari', '~> 0.16.1'
gem 'spinjs-rails'
#forms / formatting
gem 'dynamic_form'
gem 'simple_form'
gem 'cocoon'
gem 'redcarpet'
# auditting / logging
gem 'paper_trail', git: "https://github.com/airblade/paper_trail.git", branch: "2.7-stable"
group :development, :test do
gem 'sqlite3' # alternative db management for development
gem 'factory_girl_rails'
gem 'rspec-rails'
gem 'shoulda-matchers'
gem 'capybara', '~> 2.0.0'
gem 'guard-rspec'
gem 'spork-rails'
gem 'guard-spork'
gem 'fuubar'
gem 'guard-livereload'
gem 'yajl-ruby'
gem 'ffaker'
gem 'capistrano'
gem 'awesome_print'
gem 'ruby-progressbar'
gem 'codeclimate-test-reporter'
end
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails'
gem 'coffee-rails'
gem 'uglifier'
gem 'bootstrap-sass', '~> 2.0.3'
gem 'font-awesome-rails', '~> 4.1.0'
end
group :development do
gem 'thin'
gem 'pry'
gem 'pry-rails'
gem 'pry-byebug'
gem 'pry-stack_explorer'
gem 'pry-remote'
gem 'letter_opener'
gem 'letter_opener_web', '~> 1.1.0'
gem 'rack-mini-profiler'
gem 'bullet'
end
group :production, :staging do
gem 'therubyracer', require: 'v8'
gem 'airbrake'
end