forked from fiedl/wingolfsplattform
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
175 lines (132 loc) · 4.58 KB
/
Copy pathGemfile
File metadata and controls
175 lines (132 loc) · 4.58 KB
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
# YourPlatform
gem 'your_platform', github: 'fiedl/your_platform', branch: 'master'
source 'https://rubygems.org' do
# Ruby License, http://www.ruby-lang.org/en/LICENSE.txt
gem 'rails', '~> 4.2.1' # MIT License
gem 'mysql2' # MIT License
gem 'transaction_retry' # rescue from deadlocks
gem 'sass-rails', '>= 4.0.3'
gem 'uglifier', '>= 1.3.0' # MIT License
gem 'coffee-rails', '>= 4.0.0'
# See https://github.com/sstephenson/execjs#readme for more
# supported runtimes.
# This is also needed by twitter-bootstrap-rails in production.
gem 'execjs'
# But therubyracer apparently uses a lot of memory:
# https://github.com/seyhunak/twitter-bootstrap-rails/issues/336
gem 'therubyracer', :platform => :ruby
# To use Jbuilder templates for JSON
# gem 'jbuilder'
# Use unicorn as the app server
gem 'unicorn'
# RAILS-3-MIGRATION TEMPORARY GEMS, TODO: REMOVE THOSE
gem 'protected_attributes', require: 'protected_attributes'
gem 'activesupport-json_encoder'
# Deploy with Capistrano
# gem 'capistrano'
# HTML-Nodes
gem 'nokogiri' # MIT License
# DAG für Nodes Model, see: https://github.com/resgraph/acts-as-dag
#gem 'acts-as-dag', path: '../acts-as-dag'
#gem 'acts-as-dag', git: "git://github.com/resgraph/acts-as-dag.git" # MIT License
#gem 'acts-as-dag', '>= 2.5.7' # now in your_platform
# JSON
gem 'json' # Ruby License
# Lucene
# gem 'lucene' # MIT License
# Farbiger Konsolen-Output
gem 'colored' # MIT License
# Auto Completion
#gem 'rails3-jquery-autocomplete' # MIT Licenses
# Debug Tools
group :development do
# debugger: http://guides.rubyonrails.org/debugging_rails_applications.html
#gem 'debugger'
gem 'binding_of_caller'
gem 'meta_request'
gem 'letter_opener'
end
# Security Tools
group :development, :test do
gem 'brakeman', '>= 2.3.1'
gem 'guard-brakeman', '>= 0.8.1'
end
# Documentation Tools
group :development, :test do
gem 'yard'
gem 'redcarpet'
end
# RSpec, see: http://ruby.railstutorial.org/chapters/static-pages#sec:first_tests
group :test, :development do
gem 'guard', '~> 2.2.5'
gem 'guard-focus'
gem 'rspec-rails'
gem 'guard-rspec'
gem 'rspec-rerun', github: 'dblock/rspec-rerun'
# gem 'rspec-mocks'
# gem 'listen'
# gem 'rb-inotify', '0.8.8' if RUBY_PLATFORM.downcase.include?("linux")
end
group :test do
gem 'capybara'
gem 'launchy'
gem 'factory_girl_rails', '>= 4.0.0' # '1.4.0'
gem 'database_cleaner'
gem 'guard-spork'
gem 'spork'
gem 'simplecov', require: false
gem 'email_spec'
gem 'timecop' # time_travel
gem 'fuubar' # better progress bar for specs
gem "codeclimate-test-reporter", require: nil
end
group :test do
gem 'poltergeist', '1.5.0'
end
# Pry Console Addon
gem 'pry', group: :development
# Turbolinks
gem 'turbolinks', '>= 3.0', github: 'rails/turbolinks'
# Receiving Mails
gem 'mailman', require: false
# gem 'rb-inotify', '~> 0.9', group: :production
# https://github.com/fiedl/wingolfsplattform/commit/2dafbda71af2bed2be46c79b558cbff8548b0df2
# Removed rb-inotify due to asset compilation issues after updating to rails 3.2.21.
# View Helpers
# gem 'rails-gallery', git: 'https://github.com/kristianmandrup/rails-gallery'
# Encoding Detection
gem 'charlock_holmes'
# readline (for rails console)
# see https://github.com/luislavena/rb-readline/issues/84#issuecomment-17335885
#gem 'rb-readline', '~> 0.5.0', group: :development, require: 'readline'
gem 'gmaps4rails', '~> 2.0.1', git: 'git://github.com/fiedl/Google-Maps-for-Rails.git'
# To customly set timeout time we need rack-timeout
gem 'rack-timeout'
# Metrics
#gem 'fnordmetric'
# Profiling
gem 'rack-mini-profiler'
gem 'flamegraph'
# Code Coverage Badge, coveralls.io
gem 'coveralls', require: false
# Temporary Dependency Resolving
# TODO Remove when obsolete
gem 'tilt', '~> 1.4.1'
# Maintenance Mode
gem 'turnout'
# Sidekiq Error Web UI
gem 'sidekiq-failures'
gem 'newrelic_rpm'
#gem 'jquery-datatables-rails', git: 'git://github.com/rweng/jquery-datatables-rails.git'
gem 'prawn', github: 'prawnpdf/prawn'
# get emails for exceptions.
# http://railscasts.com/episodes/104
gem 'exception_notification'
#gem 'bootstrap', git: 'https://github.com/twbs/bootstrap-rubygem'
gem 'sidekiq', '~> 3.5.1'
end
source 'https://rails-assets.org'
#source 'https://rails-assets.org' do
# gem 'rails-assets-tether', '>= 1.1.0'
#end
ruby '2.2.2'