forked from hitobito/hitobito
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
121 lines (109 loc) · 2.7 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
# encoding: utf-8
# Copyright (c) 2012-2014, Jungwacht Blauring Schweiz. This file is part of
# hitobito and licensed under the Affero General Public License version 3
# or later. See the COPYING file at the top-level directory or at
# https://github.com/hitobito/hitobito.
source 'https://rubygems.org'
gem 'rails', '4.1.8'
gem 'activerecord-session_store'
gem 'airbrake'
gem 'awesome_nested_set'
gem 'bcrypt-ruby'
gem 'cancancan'
gem 'carrierwave'
gem 'cmess'
gem 'daemons'
gem 'dalli'
gem 'delayed_job_active_record'
gem 'devise'
gem 'draper'
gem 'faker'
gem 'globalize'
gem 'haml'
gem 'http_accept_language'
gem 'magiclabs-userstamp', require: 'userstamp'
gem 'mini_magick'
gem 'mysql2', '0.3.15' # 0.3.16 fails sphinx specs on jenkins
gem 'nested_form'
gem 'oat'
gem 'paper_trail'
gem 'paranoia'
gem 'piwik_analytics'
gem 'prawn'
gem 'prawn-table'
gem 'protective'
gem 'rack'
gem 'rails_config'
gem 'rails-i18n'
gem 'schema_validations'
gem 'seed-fu'
gem 'simpleidn'
gem 'thinking-sphinx'
gem 'validates_timeliness'
gem 'wagons'
# load after others because of active record inherited alias chain.
gem 'kaminari'
# Gems used only for assets
gem 'bootstrap-sass', '~> 2.3'
gem 'bootstrap-wysihtml5-rails', '~> 0.3.1.24'
gem 'chosen-rails'
gem 'coffee-rails'
gem 'compass'
gem 'compass-rails', '>= 1.1.7'
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'sass-rails'
gem 'therubyracer', platforms: :ruby
gem 'uglifier'
group :development, :test do
gem 'binding_of_caller'
gem 'rspec-rails', '~> 2.14.0'
gem 'sqlite3'
gem 'codez-tarantula', require: 'tarantula-rails3'
gem 'pry-rails'
gem 'pry-debugger', platforms: :ruby_19
#gem 'pry-byebug', platforms: [:ruby_20, :ruby_21]
end
group :development do
gem 'bullet'
gem 'quiet_assets'
gem 'request_profiler'
end
group :test do
gem 'capybara', '~> 2.2.1' # 2.4 didn't work on jenkins (occassional failures)
gem 'database_cleaner'
gem 'fabrication'
gem 'headless'
gem 'launchy'
gem 'rspec-notify-osd'
gem 'selenium-webdriver'
end
group :console do
gem 'awesome_print'
gem 'hirb'
gem 'mailcatcher'
gem 'pry-doc'
gem 'pry-remote'
gem 'pry-stack_explorer'
gem 'rdoc-tags'
gem 'spring-commands-rspec'
gem 'wirble'
end
group :metrics do
gem 'annotate'
gem 'brakeman', '2.5.0'
gem 'ci_reporter_rspec'
gem 'rails_code_qa'
gem 'rails_best_practices'
gem 'rails-erd'
gem 'rubocop'
gem 'rubocop-checkstyle_formatter'
gem 'ruby-prof'
gem 'simplecov-rcov'
end
# Include the wagon gems you want attached in Wagonfile.
# Do not check Wagonfile into source control.
#
# To create a Wagonfile suitable for development, run 'rake wagon:file'
wagonfile = File.expand_path('../Wagonfile', __FILE__)
eval(File.read(wagonfile)) if File.exist?(wagonfile)