tap/Gemfile

86 lines
1.8 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
2018-08-07 23:02:17 +02:00
gem 'byebug'
2014-11-06 14:46:59 +01:00
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
2018-08-07 23:02:17 +02:00
gem 'rails', '4.2.10'
2015-04-03 21:27:03 +02:00
2015-09-17 14:05:33 +02:00
# Assets
2014-11-06 14:46:59 +01:00
gem 'sass-rails', '~> 4.0.3'
2015-04-03 21:27:03 +02:00
gem 'bootstrap-sass', '3.2.0.0'
2018-08-07 23:02:17 +02:00
gem 'bootstrap-switch-rails', '3.3.3'
2014-11-06 14:46:59 +01:00
gem 'uglifier', '>= 1.3.0'
2018-08-07 23:02:17 +02:00
gem 'jquery-rails', '4.1.0'
2015-09-17 14:05:33 +02:00
# Haml for templating!
gem "haml-rails", "~> 0.9"
2014-11-06 14:46:59 +01:00
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
2018-08-07 23:02:17 +02:00
gem 'turbolinks', '2.5.3'
2015-04-03 21:27:03 +02:00
2015-09-18 13:20:57 +02:00
# Friendly ids!
gem 'friendly_id', '~> 5.1.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
2016-02-04 16:57:33 +01:00
gem 'mysql2', '~> 0.3.18' # Database
2014-11-25 10:00:55 +01:00
end
2014-11-06 14:46:59 +01:00
2015-03-09 13:17:41 +01:00
group :test do
gem 'codeclimate-test-reporter', require: nil
gem 'rspec-rails'
2015-09-17 14:05:33 +02:00
gem 'coveralls', require: false
2016-02-05 22:47:51 +01:00
gem 'webmock'
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
2018-08-07 23:02:17 +02:00
gem 'sqlite3', '1.3.11'
2015-09-01 15:02:14 +02:00
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
2018-08-07 23:02:17 +02:00
gem 'spring', '1.6.2'
2015-09-01 15:02:14 +02:00
# Deployment
2018-08-08 00:24:39 +02:00
gem 'capistrano', '~> 3.4'
2015-09-01 15:02:14 +02:00
gem 'capistrano-rails', '~> 1.1'
gem 'capistrano-rvm'
gem 'capistrano-rbenv'
gem 'capistrano-passenger'
end
2015-04-03 21:27:03 +02:00
group :development, :test do
2018-08-07 23:02:17 +02:00
gem 'factory_girl_rails', '4.6.0'
2015-09-17 14:05:33 +02:00
gem 'faker', '1.4.2'
end
2015-04-03 21:27:03 +02:00
# Airbrake
2015-12-31 16:36:08 +01:00
gem 'airbrake', '~> 4'
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
2018-08-07 23:02:17 +02:00
gem 'paperclip', '4.3.4'
2014-12-09 07:05:30 +01:00
2015-04-03 21:27:03 +02:00
# Use devise for users and admins
2018-08-07 23:02:17 +02:00
gem 'devise', '3.5.6'
2015-12-31 16:36:08 +01:00
gem 'omniauth-oauth2', '1.3.1'
2014-12-09 11:18:18 +01:00
2014-12-09 19:44:58 +01:00
# Use cancancan for authorization
2018-08-07 23:02:17 +02:00
gem 'cancancan', '1.13.1'
2014-12-09 18:46:56 +01:00
2015-04-03 21:27:03 +02:00
# Default avatar for users
2018-08-07 23:02:17 +02:00
gem 'identicon', '0.0.5'
2015-04-04 01:44:28 +02:00
# Run stuff in the background
2018-08-07 23:02:17 +02:00
gem 'daemons', '1.2.3'
gem 'delayed_job', '~> 4.0'
gem 'delayed_job_active_record'
2018-08-07 23:02:17 +02:00
gem 'httparty', '0.13.7'