2014-11-06 14:46:59 +01:00
|
|
|
source 'https://rubygems.org'
|
2014-11-23 21:12:31 +01:00
|
|
|
|
2014-11-06 14:46:59 +01:00
|
|
|
|
|
|
|
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
|
2015-02-10 09:00:29 +01:00
|
|
|
gem 'rails', '4.2'
|
2014-11-06 14:46:59 +01:00
|
|
|
# Use sqlite3 as the database for Active Record
|
|
|
|
gem 'sqlite3'
|
|
|
|
# Use SCSS for stylesheets
|
|
|
|
gem 'sass-rails', '~> 4.0.3'
|
|
|
|
# Use Uglifier as compressor for JavaScript assets
|
|
|
|
gem 'uglifier', '>= 1.3.0'
|
|
|
|
# Use CoffeeScript for .js.coffee assets and views
|
|
|
|
gem 'coffee-rails', '~> 4.0.0'
|
|
|
|
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
|
|
|
|
# gem 'therubyracer', platforms: :ruby
|
|
|
|
|
|
|
|
# Use jquery as the JavaScript library
|
|
|
|
gem 'jquery-rails'
|
|
|
|
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
|
|
|
|
gem 'turbolinks'
|
|
|
|
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
|
|
|
|
gem 'jbuilder', '~> 2.0'
|
|
|
|
# bundle exec rake doc:rails generates the API under doc/api.
|
|
|
|
gem 'sdoc', '~> 0.4.0', group: :doc
|
|
|
|
|
2014-11-23 21:12:31 +01:00
|
|
|
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
|
|
|
|
gem 'spring', group: :development
|
|
|
|
|
2014-12-04 19:50:02 +01:00
|
|
|
# add annotations of schema inside models
|
|
|
|
gem 'annotate'
|
|
|
|
|
2014-11-06 14:46:59 +01:00
|
|
|
# Use unicorn as the app server
|
|
|
|
# gem 'unicorn'
|
|
|
|
|
2014-11-25 10:00:55 +01:00
|
|
|
# Deployment
|
|
|
|
gem 'capistrano', '~> 3.1'
|
|
|
|
gem 'capistrano-rails', '~> 1.1'
|
|
|
|
gem 'capistrano-rvm'
|
|
|
|
|
|
|
|
group :production do
|
|
|
|
gem 'mysql2' # Database
|
|
|
|
end
|
2014-11-06 14:46:59 +01:00
|
|
|
|
|
|
|
#bootstrap
|
2014-11-09 22:53:39 +01:00
|
|
|
gem 'bootstrap-sass', '3.2.0.0'
|
|
|
|
|
2014-11-23 21:12:31 +01:00
|
|
|
#debug stuff
|
|
|
|
gem 'byebug'
|
2014-11-09 22:53:39 +01:00
|
|
|
|
|
|
|
#paginate stuff
|
|
|
|
gem 'will_paginate', '3.0.7'
|
2014-11-23 21:12:31 +01:00
|
|
|
gem 'bootstrap-will_paginate', '0.0.10'
|
2014-12-04 20:32:31 +01:00
|
|
|
|
|
|
|
# paperclip for easy file attachment
|
|
|
|
gem 'paperclip'
|
2014-12-09 07:05:30 +01:00
|
|
|
|
|
|
|
# Use devise for Admins
|
|
|
|
gem 'devise'
|
2014-12-09 11:18:18 +01:00
|
|
|
|
2014-12-09 19:44:58 +01:00
|
|
|
# Use cancancan for authorization
|
|
|
|
gem 'cancancan'
|
2014-12-09 18:46:56 +01:00
|
|
|
|
|
|
|
#ik wil test data maken dus dit
|
|
|
|
gem 'faker', '1.4.2'
|
2015-02-09 13:23:38 +01:00
|
|
|
|
|
|
|
# Safety first
|
|
|
|
gem 'paper_trail', '~> 4.0.0.beta'
|
2015-02-12 16:14:11 +01:00
|
|
|
|
|
|
|
# Windoos sux
|
2015-02-19 17:25:55 +01:00
|
|
|
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw]
|
2015-03-03 16:03:59 +01:00
|
|
|
|
|
|
|
gem 'coveralls', require: false
|