forked from openSUSE/osem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
202 lines (160 loc) · 4.45 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
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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
source 'https://rubygems.org'
# rails-assets requires >= 1.8.4
if Gem::Version.new(Bundler::VERSION) < Gem::Version.new('1.8.4')
abort "Bundler version >= 1.8.4 is required"
end
# as web framework
gem 'rails', '~> 4.2'
# respond_to methods have been extracted to the responders gem
# http://edgeguides.rubyonrails.org/upgrading_ruby_on_rails.html#responders
gem 'responders', '~> 2.0'
# as the database for Active Record
gem 'mysql2'
# for observing records
gem 'rails-observers'
# for tracking data changes
gem 'paper_trail'
# as authentification framework
gem 'devise'
gem 'devise_ichain_authenticatable'
# to support openID authentication
gem 'omniauth'
gem 'omniauth-facebook'
gem 'omniauth-openid'
gem 'omniauth-google-oauth2'
gem 'omniauth-github'
# as authorization framework
gem 'cancancan'
# to set roles
gem 'rolify'
# to show flash messages from ajax requests
gem 'unobtrusive_flash', '>=3'
# as state machine
gem 'transitions', :require => %w( transitions active_record/transitions )
# for comments
gem 'awesome_nested_set', '~> 3.0.0.rc.5'
gem 'acts_as_commentable_with_threading'
# as templating language
gem 'haml-rails'
# for stylesheets
gem 'sass-rails', '>= 4.0.2'
# as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# as the front-end framework
gem 'bootstrap-sass', '~> 3.3.4.1'
gem 'autoprefixer-rails'
gem 'formtastic-bootstrap'
gem 'formtastic', '~> 3.1.1'
gem 'cocoon'
# frontend javascripts
# as the JavaScript library
gem 'jquery-rails'
source 'https://rails-assets.org' do
# for placeholder images
gem 'rails-assets-holderjs'
# for formating dates
gem 'rails-assets-date.format'
# for or parsing, validating, manipulating, and formatting dates.
gem 'rails-assets-momentjs'
# for smooth scrolling
gem 'rails-assets-jquery-smooth-scroll'
# as color picker
gem 'rails-assets-spectrum'
# for color manipulation
gem 'rails-assets-tinycolor'
# for drawing triangle backgrounds
gem 'rails-assets-trianglify'
# for scroll way points
gem 'rails-assets-waypoints'
# for displaying maps
gem 'rails-assets-leaflet'
# for markdown editors
gem 'rails-assets-bootstrap-markdown'
gem 'rails-assets-to-markdown'
gem 'rails-assets-markdown'
end
# as date picker
gem 'bootstrap3-datetimepicker-rails', '~> 3.0.2'
gem 'jquery-datatables-rails', '~> 2.2.1'
# for charts
gem 'chart-js-rails'
# for user avatars
gem 'gravtastic'
# for country selects
gem 'country_select'
# for upload management
gem 'paperclip'
# as PDF generator
gem 'prawn_rails'
# to render XLS spreadsheets
gem 'axlsx_rails'
# as error catcher
gem 'hoptoad_notifier', '~> 2.3'
# to make links faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
# for JSON serialization of our API
gem 'active_model_serializers'
# for icon fonts
gem 'font-awesome-rails'
# for Markdown in description
gem 'redcarpet'
# as rdoc generator
gem 'rdoc-generator-fivefish'
# for seeds
gem 'factory_girl_rails'
# for visitor tracking
gem 'ahoy_matey'
gem 'activeuuid'
gem 'piwik_analytics', '~> 1.0.1'
# for recurring jobs
gem 'whenever', :require => false
gem 'delayed_job_active_record'
# to run scripts
gem 'daemons'
# to encapsulate money in objects
gem 'money-rails'
# for lists
gem 'acts_as_list'
# for switch checkboxes
gem 'bootstrap-switch-rails', '~> 3.0.0'
# for parsing OEmbed data
gem 'ruby-oembed'
# Use guard and spring for testing in development
group :development do
# rspec Guard rules
gem 'guard-rspec', '~> 4.2.8'
gem 'spring-commands-rspec'
# Get HoundCi comments locally
gem 'rubocop'
# Silence rack assests messages
gem 'quiet_assets'
# Use sqlite3 as the database in development
gem 'sqlite3'
# Use letter_opener to open mails in development
gem 'letter_opener'
# Use letter_opener_web to open mails in browser (e.g. necessary for Vagrant)
gem 'letter_opener_web'
# mina is a blazing fast deployment system
gem 'mina'
gem 'web-console', '~> 2.0'
end
# Use rspec and capybara as testing framework
group :test do
# We use coveralls for measuring test coverage
gem 'coveralls', require: false
gem 'rspec-rails'
gem 'capybara'
gem 'database_cleaner'
gem 'poltergeist'
gem 'phantomjs', :require => 'phantomjs/poltergeist'
# Set of rails validations matchers to describe models
gem 'shoulda-matchers', require: false
# Extracted from RSpec 3 stub_model and mock_model
gem 'rspec-activemodel-mocks'
gem 'timecop'
# for mocking external requests
gem 'webmock'
end
group :development, :test do
gem 'byebug'
end