forked from rakvat/direktkreditverwaltung_deprecated
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
46 lines (34 loc) · 964 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'
ruby '2.0.0'
gem 'rails', '~>4.2.0'
gem 'pg'
#View related stuff
gem 'jquery-rails'
gem 'bootstrap-sass'
gem 'haml-rails'
gem 'sass-rails'
gem 'coffee-rails'
gem 'therubyracer', :platforms => :ruby
gem 'uglifier'
gem 'prawn'
gem 'prawn-table'
gem 'paperclip' #upload additional attachments for emails
gem 'days360'
group :development do
gem 'better_errors' # Nicer exception pages in development
gem 'binding_of_caller' # Used for better errors
gem 'sqlite3'
gem 'spring'
end
gem 'byebug', group: [:development, :test]
group :test do
gem 'cucumber', '~>1.0' #2.0 is broken with RubyMine
gem 'cucumber-rails', :require => false
gem 'launchy'
gem 'database_cleaner'
gem 'timecop'
gem 'test-unit'
gem 'pdf-inspector', :require => 'pdf/inspector' #To test the output of PDFs
gem "codeclimate-test-reporter", require: nil #To get code coverage
end
gem 'rails_12factor', group: :production