forked from euank/moebooru-thin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
80 lines (64 loc) · 1.64 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
source "https://rubygems.org"
gem "rails", "~> 6.0.0"
gem "therubyracer"
gem "coffee-rails"
gem "jquery-rails"
gem "jquery-ui-rails"
gem "uglifier"
gem "sass-rails"
source "https://rails-assets.org" do
gem "rails-assets-js-cookie"
gem "rails-assets-mousetrap"
gem "rails-assets-timeago"
gem "rails-assets-MutationObserver"
end
gem "non-stupid-digest-assets"
gem "pg", :platforms => [:ruby, :mingw]
gem "activerecord-jdbcpostgresql-adapter", ">= 1.3.0", :platforms => :jruby
gem "diff-lcs"
gem "json"
gem "dalli"
gem "connection_pool"
gem "acts_as_versioned_rails3"
gem "geoip"
gem "exception_notification"
gem "will_paginate"
gem "will-paginate-i18n"
gem "sitemap_generator"
gem "daemons", :require => false
gem "newrelic_rpm"
gem "nokogiri"
gem "rails-i18n"
gem "addressable", :require => "addressable/uri"
gem 'ruby-vips'
gem "image_size"
gem "i18n-js", ">= 3.0.0.rc7"
gem "mini_mime"
gem "streamio-ffmpeg"
# The git 1.2.x contains webm; this is what we want
gem "file_signature", :git => 'http://github.com/distler/file_signature.git'
group :test, :development do
gem "rspec"
gem "rspec-rails"
gem "factory_bot_rails"
gem "database_cleaner"
gem "autotest"
gem "autotest-standalone"
end
group :standalone do
platform :mri do
gem "unicorn", :require => false
gem "unicorn-worker-killer", :require => false
gem "gctools"
end
end
group :development, :standalone do
gem "puma", :platforms => [:jruby, :rbx, :mswin], :require => false
end
group :test do
gem "rails-controller-testing"
end
gem "pry", :group => [:development, :test]
gem "jbuilder", "~> 2.5"
# Must be last.
gem "rack-mini-profiler", :group => :development