forked from openSUSE/osem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
101 lines (72 loc) · 2.37 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
96
97
98
99
100
101
source 'https://rubygems.org'
# Use rails as framework
gem 'rails', '~> 4.1'
# Use mysql as the database for Active Record
gem 'mysql2'
# Use rails-observers for observing records
gem 'rails-observers'
# User paper_trail for tracking data changes
gem 'paper_trail'
# Use devise as authentification framework
gem 'devise'
# Use cancan as authorization framework
gem 'cancan'
# Use transitions as state machine
gem 'transitions', :require => ["transitions", "active_record/transitions"]
# Use acts_as_commentable_with_threading for comments
gem 'acts_as_commentable_with_threading'
# Use haml as templating language
gem "haml-rails"
# Use SCSS for stylesheets
gem "sass-rails", ">= 4.0.2"
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use bootstrap as the front-end framework
gem 'bootstrap-sass'
gem 'formtastic-bootstrap'
gem 'formtastic', '~> 2.3.0.rc3'
# Use jquery as the JavaScript library
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'jquery-fileupload-rails'
gem 'cocoon'
# Use gravtastic for user avatars
gem 'gravtastic'
# Use paperclip for upload management
gem 'paperclip'
# Use prawn as PDF generator
gem 'prawn'
gem 'prawn_rails'
# Use axlsx_rails to render XLS spreadsheets
gem 'axlsx_rails'
# Use d3js for building our statistics
gem 'd3_rails'
# We use coveralls for measuring test coverage
gem 'coveralls', require: false
# Use a self-hosted errbit with the old notifier
gem 'hoptoad_notifier', "~> 2.3"
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
# Use active_model_serializers for JSON serializatioin our API
gem 'active_model_serializers'
# Use sqlite3 as the database in development
gem 'sqlite3', group: [:development]
# Use letter_opener to open mails in development
gem 'letter_opener', group: [:development]
# Use rspec and capybara as testing framework
group :development, :test do
gem 'rspec', '>= 3.0.0.beta'
gem 'rspec-rails', '>= 3.0.0.beta'
gem 'capybara'
end
# FIXME: We should use http://weblog.rubyonrails.org/2012/3/21/strong-parameters/
gem 'protected_attributes'
# We use this bootstrap/html5 rdoc generator
gem 'rdoc-generator-fivefish'
# We use factory_girl for seeds
gem 'factory_girl_rails'
# Use guard and spring for testing in development
group :development do
gem 'guard-rspec', '~> 4.2.8'
gem 'spring-commands-rspec'
end