-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
101 lines (77 loc) · 2.08 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
source 'https://rubygems.org'
gem 'rails', '4.2.1'
gem 'activerecord-deprecated_finders', github: 'rails/activerecord-deprecated_finders'
gem 'pg'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'therubyracer', :platforms => :ruby
gem 'sprockets-rails'
gem 'sass-rails'
gem 'coffee-rails'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby
gem 'uglifier', '>= 1.0.3'
gem 'bootstrap-sass-rails'
end
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', '~> 1.0.1'
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# Use unicorn as the app server
gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano', group: :development
# To use debugger
# gem 'debugger'
gem 'paperclip-ffmpeg'
gem 'kaminari'
gem 'flag_shih_tzu'
gem 'awesome_flags'
gem 'thepiratebay', :git => 'https://github.com/pr0d1r2/thepiratebay.git'
gem 'ruby_bittorrent'
gem 'sidekiq'
gem 'sinatra', '>= 1.3.0', :require => nil
gem 'sidekiq-limit_fetch'
gem 'sidekiq-failures'
gem 'sidekiq-status'
gem 'sidetiq'
gem 'free_disk_space'
gem 'workflow'
gem 'paranoia', '~> 2.0'
gem 'protected_attributes'
gem 'dotenv-rails'
group :development do
gem 'foreman'
gem 'capistrano'
gem 'capistrano-ext'
gem 'rvm-capistrano', require: false
gem 'sandi_meter'
gem 'pry'
gem 'spring'
gem 'spring-commands-rspec'
gem 'guard'
gem 'guard-rspec', :require => false
end
group :test do
gem 'rspec-rails'
gem 'steak'
gem 'factory_girl_rails'
gem 'database_cleaner'
gem 'simplecov'
gem 'capybara-user_agent', :git => 'https://github.com/kanechika7/capybara-user_agent.git'
gem 'launchy'
gem 'rspec-sidekiq'
gem 'vcr'
gem 'webmock'
end
group :test, :development do
gem 'awesome_print'
gem 'rails_best_practices'
gem 'rubocop'
gem 'gemsurance'
gem 'parallel_tests'
end