tap/Gemfile

84 lines
1.7 KiB
Ruby
Raw Normal View History

2014-11-06 13:46:59 +00:00
source 'https://rubygems.org'
2014-11-23 20:12:31 +00:00
2014-11-06 13:46:59 +00:00
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
2015-12-01 20:54:35 +00:00
gem 'rails', '4.2.4'
2015-04-03 19:27:03 +00:00
2015-09-17 12:05:33 +00:00
# Assets
2014-11-06 13:46:59 +00:00
gem 'sass-rails', '~> 4.0.3'
2015-04-03 19:27:03 +00:00
gem 'bootstrap-sass', '3.2.0.0'
gem 'bootstrap-switch-rails'
2014-11-06 13:46:59 +00:00
gem 'uglifier', '>= 1.3.0'
2015-09-17 12:05:33 +00:00
gem 'jquery-rails'
# Haml for templating!
gem "haml-rails", "~> 0.9"
2014-11-06 13:46:59 +00:00
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
2015-04-03 19:27:03 +00:00
2015-09-18 11:20:57 +00:00
# Friendly ids!
gem 'friendly_id', '~> 5.1.0'
2014-11-23 20:12:31 +00:00
2015-04-03 19:27:03 +00:00
group :doc do
gem 'sdoc', '~> 0.4.0'
end
2014-11-25 09:00:55 +00:00
group :production do
2016-02-04 15:57:33 +00:00
gem 'mysql2', '~> 0.3.18' # Database
2014-11-25 09:00:55 +00:00
end
2014-11-06 13:46:59 +00:00
2015-03-09 12:17:41 +00:00
group :test do
gem 'codeclimate-test-reporter', require: nil
gem 'rspec-rails'
2015-09-17 12:05:33 +00:00
gem 'coveralls', require: false
2016-02-05 21:47:51 +00:00
gem 'webmock'
2015-03-09 12:17:41 +00:00
end
2015-04-03 19:27:03 +00:00
group :development do
2015-09-01 13:02:14 +00:00
# Use sqlite3 as the database for Active Record
gem 'sqlite3'
2015-04-03 19:27:03 +00:00
gem 'annotate'
2015-04-03 14:52:07 +00:00
2015-09-01 13:02:14 +00: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 19:27:03 +00:00
group :development, :test do
2015-09-17 12:05:33 +00:00
gem 'factory_girl_rails'
gem 'faker', '1.4.2'
end
2015-04-03 19:27:03 +00:00
# Airbrake
2015-12-31 15:36:08 +00:00
gem 'airbrake', '~> 4'
2015-04-03 19:27:03 +00:00
# Paginate stuff
2014-11-09 21:53:39 +00:00
gem 'will_paginate', '3.0.7'
2014-11-23 20:12:31 +00:00
gem 'bootstrap-will_paginate', '0.0.10'
2015-04-03 19:27:03 +00:00
# Paperclip for easy file attachment
gem 'paperclip'
2014-12-09 06:05:30 +00:00
2015-04-03 19:27:03 +00:00
# Use devise for users and admins
2014-12-09 06:05:30 +00:00
gem 'devise'
2015-12-31 15:36:08 +00:00
gem 'omniauth-oauth2', '1.3.1'
2014-12-09 10:18:18 +00:00
2014-12-09 18:44:58 +00:00
# Use cancancan for authorization
gem 'cancancan'
2014-12-09 17:46:56 +00:00
2015-04-03 19:27:03 +00:00
# Default avatar for users
gem 'identicon'
2015-04-03 23:44:28 +00:00
# Run stuff in the background
gem 'daemons'
gem 'delayed_job', '~> 4.0'
gem 'delayed_job_active_record'
gem 'httparty'