tap/Gemfile

89 lines
1.9 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
2018-08-07 21:02:17 +00:00
gem 'byebug'
2014-11-06 13:46:59 +00:00
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
2019-08-24 19:24:56 +00:00
gem 'rails', '4.2.11.1'
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'
2019-04-08 19:15:33 +00:00
gem 'bootstrap-sass', ">= 3.4.1"
2018-08-07 21:02:17 +00:00
gem 'bootstrap-switch-rails', '3.3.3'
2014-11-06 13:46:59 +00:00
gem 'uglifier', '>= 1.3.0'
2018-08-07 21:02:17 +00:00
gem 'jquery-rails', '4.1.0'
2015-09-17 12:05:33 +00:00
# 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
2018-08-07 21:02:17 +00:00
gem 'turbolinks', '2.5.3'
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
2018-12-30 17:03:43 +00:00
gem 'mysql2', '~> 0.4.10' # 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
2018-08-07 21:02:17 +00:00
gem 'sqlite3', '1.3.11'
2015-09-01 13:02:14 +00:00
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
2018-08-07 21:02:17 +00:00
gem 'spring', '1.6.2'
2015-09-01 13:02:14 +00:00
# Deployment
2018-08-07 22:24:39 +00:00
gem 'capistrano', '~> 3.4'
2015-09-01 13:02:14 +00:00
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
2018-08-07 21:02:17 +00:00
gem 'factory_girl_rails', '4.6.0'
2015-09-17 12:05:33 +00:00
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
2019-08-19 10:27:56 +00:00
gem 'paperclip', '>= 5.2.0'
2014-12-09 06:05:30 +00:00
2015-04-03 19:27:03 +00:00
# Use devise for users and admins
2019-08-24 19:34:00 +00:00
gem "devise", ">= 4.6.0"
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
2018-08-07 21:02:17 +00:00
gem 'cancancan', '1.13.1'
2014-12-09 17:46:56 +00:00
2015-04-03 19:27:03 +00:00
# Default avatar for users
2018-08-07 21:02:17 +00:00
gem 'identicon', '0.0.5'
2015-04-03 23:44:28 +00:00
# Run stuff in the background
2018-08-07 21:02:17 +00:00
gem 'daemons', '1.2.3'
gem 'delayed_job', '~> 4.0'
gem 'delayed_job_active_record'
2018-08-07 21:02:17 +00:00
gem 'httparty', '0.13.7'
2018-12-12 22:00:21 +00:00
# windows support (linux timezone directory is used in the project)
2018-12-30 17:03:43 +00:00
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw]