tap/Gemfile

97 lines
1.9 KiB
Ruby
Raw Normal View History

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'
2015-04-03 21:27:03 +02:00
2014-11-06 14:46:59 +01:00
# Use SCSS for stylesheets
gem 'sass-rails', '~> 4.0.3'
2015-04-03 21:27:03 +02:00
gem 'bootstrap-sass', '3.2.0.0'
2014-11-06 14:46:59 +01:00
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
2015-04-03 21:27:03 +02:00
2014-11-06 14:46:59 +01:00
# Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails', '~> 4.0.0'
2015-04-03 21:27:03 +02:00
# Responders
2015-03-20 00:00:03 +01:00
gem 'responders', '~> 2.0'
2014-11-06 14:46:59 +01:00
# Use jquery as the JavaScript library
gem 'jquery-rails'
2015-04-03 21:27:03 +02:00
2014-11-06 14:46:59 +01:00
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
2015-04-03 21:27:03 +02:00
2014-11-06 14:46:59 +01:00
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.0'
2014-11-23 21:12:31 +01:00
2015-04-03 21:27:03 +02:00
group :doc do
gem 'sdoc', '~> 0.4.0'
end
2014-11-25 10:00:55 +01:00
group :production do
gem 'mysql2' # Database
end
2014-11-06 14:46:59 +01:00
2015-03-09 13:17:41 +01:00
group :test do
gem 'capybara'
gem 'launchy'
2015-03-19 14:59:37 +01:00
gem "codeclimate-test-reporter", require: nil
2015-03-09 13:17:41 +01:00
end
2015-04-03 21:27:03 +02:00
group :development do
2015-09-01 15:02:14 +02:00
# Use sqlite3 as the database for Active Record
gem 'sqlite3'
2015-04-03 21:27:03 +02:00
gem 'annotate'
2015-04-03 16:52:07 +02:00
2015-09-01 15:02:14 +02:00
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
# Deployment
gem 'capistrano', '~> 3.1'
gem 'capistrano-rails', '~> 1.1'
gem 'capistrano-rvm'
gem 'capistrano-rbenv'
gem 'capistrano-passenger'
end
2015-04-03 21:27:03 +02:00
# Airbrake
gem 'airbrake'
# Generate seed data
gem 'faker', '1.4.2'
# Debug stuff
2014-11-23 21:12:31 +01:00
gem 'byebug'
2014-11-09 22:53:39 +01:00
2015-04-03 21:27:03 +02:00
# Paginate stuff
2014-11-09 22:53:39 +01:00
gem 'will_paginate', '3.0.7'
2014-11-23 21:12:31 +01:00
gem 'bootstrap-will_paginate', '0.0.10'
2015-04-03 21:27:03 +02:00
# Paperclip for easy file attachment
gem 'paperclip'
2014-12-09 07:05:30 +01:00
2015-04-03 21:27:03 +02:00
# Use devise for users and admins
2014-12-09 07:05:30 +01:00
gem 'devise'
2015-04-03 21:27:03 +02:00
gem 'omniauth-oauth2'
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
# Safety first
gem 'paper_trail', '~> 4.0.0.beta'
# 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
2015-04-03 21:27:03 +02:00
# Coveralls
2015-03-03 16:03:59 +01:00
gem 'coveralls', require: false
2015-03-03 20:11:50 +01:00
2015-04-03 21:27:03 +02:00
# Default avatar for users
gem 'identicon'
2015-04-04 01:44:28 +02:00
# Slack
gem 'tarumi'