2013-03-08 01:20:19 +08:00
|
|
|
source 'https://rubygems.org'
|
2014-08-22 09:38:31 +08:00
|
|
|
# if there is a super emergency and rubygems is playing up, try
|
|
|
|
#source 'http://production.cf.rubygems.org'
|
2013-02-06 03:16:51 +08:00
|
|
|
|
2013-07-22 09:00:53 +08:00
|
|
|
module ::Kernel
|
2013-11-30 14:03:42 +08:00
|
|
|
def rails_master?
|
2014-10-29 06:48:57 +08:00
|
|
|
ENV["RAILS_MASTER"] == '1'
|
2013-11-30 14:03:42 +08:00
|
|
|
end
|
2013-07-21 08:56:48 +08:00
|
|
|
end
|
|
|
|
|
2014-02-18 00:44:28 +08:00
|
|
|
if rails_master?
|
2014-02-18 12:58:56 +08:00
|
|
|
# monkey patching to support dual booting
|
|
|
|
module Bundler::SharedHelpers
|
|
|
|
def default_lockfile=(path)
|
|
|
|
@default_lockfile = path
|
|
|
|
end
|
|
|
|
def default_lockfile
|
|
|
|
@default_lockfile ||= Pathname.new("#{default_gemfile}.lock")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-02-18 00:44:28 +08:00
|
|
|
Bundler::SharedHelpers.default_lockfile = Pathname.new("#{Bundler::SharedHelpers.default_gemfile}_master.lock")
|
2014-02-18 12:58:56 +08:00
|
|
|
|
|
|
|
# Bundler::Dsl.evaluate already called with an incorrect lockfile ... fix it
|
|
|
|
class Bundler::Dsl
|
|
|
|
# A bit messy, this can be called multiple times by bundler, avoid blowing the stack
|
|
|
|
unless self.method_defined? :to_definition_unpatched
|
|
|
|
alias_method :to_definition_unpatched, :to_definition
|
|
|
|
end
|
|
|
|
def to_definition(bad_lockfile, unlock)
|
|
|
|
to_definition_unpatched(Bundler::SharedHelpers.default_lockfile, unlock)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-02-18 00:44:28 +08:00
|
|
|
end
|
2013-07-21 08:56:48 +08:00
|
|
|
|
2014-02-18 00:44:28 +08:00
|
|
|
if rails_master?
|
2014-11-13 05:51:06 +08:00
|
|
|
gem 'arel', git: 'https://github.com/rails/arel.git'
|
2014-02-18 00:44:28 +08:00
|
|
|
gem 'rails', git: 'https://github.com/rails/rails.git'
|
2015-04-25 03:43:25 +08:00
|
|
|
gem 'rails-observers', git: 'https://github.com/rails/rails-observers.git'
|
2014-12-01 12:34:50 +08:00
|
|
|
gem 'seed-fu', git: 'https://github.com/SamSaffron/seed-fu.git', branch: 'discourse'
|
2013-07-21 08:56:48 +08:00
|
|
|
else
|
2015-04-25 03:36:46 +08:00
|
|
|
gem 'rails', '~> 4.1.10'
|
2014-12-01 12:34:50 +08:00
|
|
|
gem 'rails-observers'
|
2015-04-25 03:36:46 +08:00
|
|
|
gem 'seed-fu', '~> 2.3.3'
|
2013-07-21 08:56:48 +08:00
|
|
|
end
|
2014-10-15 11:05:38 +08:00
|
|
|
|
|
|
|
gem 'actionpack-action_caching'
|
2013-07-21 08:56:48 +08:00
|
|
|
|
2014-08-25 06:22:14 +08:00
|
|
|
# Rails 4.1.6+ will relax the mail gem version requirement to `~> 2.5, >= 2.5.4`.
|
|
|
|
# However, mail gem 2.6.x currently does not work with discourse because of the
|
|
|
|
# reference to `Mail::RFC2822Parser` in `lib/email.rb`. This ensure discourse
|
|
|
|
# would continue to work with Rails 4.1.6+ when it is released.
|
2014-08-24 15:43:08 +08:00
|
|
|
gem 'mail', '~> 2.5.4'
|
|
|
|
|
2014-01-06 13:50:04 +08:00
|
|
|
#gem 'redis-rails'
|
2013-07-21 08:56:48 +08:00
|
|
|
gem 'hiredis'
|
2014-03-18 10:14:06 +08:00
|
|
|
gem 'redis', require: ["redis", "redis/connection/hiredis"]
|
2013-07-21 08:56:48 +08:00
|
|
|
|
2014-09-04 15:11:42 +08:00
|
|
|
# We use some ams 0.8.0 features, need to amend code
|
|
|
|
# to support 0.9 etc, bench needs to run and ensure no
|
|
|
|
# perf regressions
|
2014-10-25 18:08:40 +08:00
|
|
|
if rails_master?
|
|
|
|
gem 'active_model_serializers', github: 'rails-api/active_model_serializers', branch: '0-8-stable'
|
|
|
|
else
|
|
|
|
gem 'active_model_serializers', '~> 0.8.0'
|
|
|
|
end
|
2013-04-26 09:45:35 +08:00
|
|
|
|
2013-11-29 06:20:56 +08:00
|
|
|
|
2014-02-14 00:53:14 +08:00
|
|
|
gem 'onebox'
|
2014-01-28 04:09:09 +08:00
|
|
|
|
2013-06-07 05:50:49 +08:00
|
|
|
gem 'ember-rails'
|
2014-12-11 00:34:00 +08:00
|
|
|
gem 'ember-source', '1.9.0.beta.4'
|
|
|
|
gem 'handlebars-source', '2.0.0'
|
2013-06-07 05:50:49 +08:00
|
|
|
gem 'barber'
|
2015-03-06 02:08:32 +08:00
|
|
|
gem 'babel-transpiler'
|
2013-04-26 09:45:35 +08:00
|
|
|
|
2013-12-05 14:40:16 +08:00
|
|
|
gem 'message_bus'
|
2013-02-10 01:04:52 +08:00
|
|
|
gem 'rails_multisite', path: 'vendor/gems/rails_multisite'
|
|
|
|
|
2013-02-20 05:08:23 +08:00
|
|
|
gem 'redcarpet', require: false
|
2013-02-10 01:04:52 +08:00
|
|
|
gem 'eventmachine'
|
|
|
|
gem 'fast_xs'
|
2013-12-05 14:40:16 +08:00
|
|
|
|
2013-12-06 12:22:15 +08:00
|
|
|
gem 'fast_xor'
|
2015-02-11 11:30:12 +08:00
|
|
|
|
|
|
|
# while we sort out https://github.com/sdsykes/fastimage/pull/46
|
|
|
|
gem 'fastimage_discourse', require: 'fastimage'
|
2014-12-30 00:31:21 +08:00
|
|
|
gem 'fog', '1.26.0', require: false
|
2013-11-22 00:33:09 +08:00
|
|
|
gem 'unf', require: false
|
2013-03-01 03:31:39 +08:00
|
|
|
|
2014-11-26 00:44:59 +08:00
|
|
|
gem 'email_reply_parser'
|
2013-06-11 04:46:08 +08:00
|
|
|
|
2013-02-19 08:42:05 +08:00
|
|
|
# note: for image_optim to correctly work you need
|
|
|
|
# sudo apt-get install -y advancecomp gifsicle jpegoptim libjpeg-progs optipng pngcrush
|
2014-02-24 07:11:16 +08:00
|
|
|
#
|
|
|
|
# Sam: held back, getting weird errors in latest
|
|
|
|
gem 'image_optim', '0.9.1'
|
2013-02-10 01:04:52 +08:00
|
|
|
gem 'multi_json'
|
|
|
|
gem 'mustache'
|
|
|
|
gem 'nokogiri'
|
2013-05-10 09:50:58 +08:00
|
|
|
gem 'omniauth'
|
|
|
|
gem 'omniauth-openid'
|
|
|
|
gem 'openid-redis-store'
|
|
|
|
gem 'omniauth-facebook'
|
|
|
|
gem 'omniauth-twitter'
|
2014-09-03 10:53:22 +08:00
|
|
|
|
|
|
|
# forked while https://github.com/intridea/omniauth-github/pull/41 is being upstreamd
|
|
|
|
gem 'omniauth-github-discourse', require: 'omniauth-github'
|
|
|
|
|
2013-08-18 13:35:07 +08:00
|
|
|
gem 'omniauth-oauth2', require: false
|
2014-05-22 06:19:40 +08:00
|
|
|
gem 'omniauth-google-oauth2'
|
2013-02-10 01:04:52 +08:00
|
|
|
gem 'oj'
|
2015-02-15 05:27:35 +08:00
|
|
|
gem 'pg'
|
2014-05-17 02:16:33 +08:00
|
|
|
gem 'pry-rails', require: false
|
2015-04-15 09:53:02 +08:00
|
|
|
gem 'r2', '~> 0.2.5', require: false
|
2013-02-06 03:16:51 +08:00
|
|
|
gem 'rake'
|
2013-07-21 08:56:48 +08:00
|
|
|
|
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
gem 'rest-client'
|
2013-02-10 01:04:52 +08:00
|
|
|
gem 'rinku'
|
2013-02-06 03:16:51 +08:00
|
|
|
gem 'sanitize'
|
2013-02-10 01:04:52 +08:00
|
|
|
gem 'sass'
|
2014-02-24 07:00:25 +08:00
|
|
|
gem 'sidekiq'
|
2014-04-17 13:57:17 +08:00
|
|
|
|
2014-06-30 10:33:04 +08:00
|
|
|
# for sidekiq web
|
2013-02-10 01:04:52 +08:00
|
|
|
gem 'sinatra', require: nil
|
2013-12-09 09:39:48 +08:00
|
|
|
|
2014-02-04 08:13:48 +08:00
|
|
|
gem 'therubyracer'
|
2013-07-07 12:30:52 +08:00
|
|
|
gem 'thin', require: false
|
2013-06-10 09:56:51 +08:00
|
|
|
gem 'highline', require: false
|
2013-10-29 08:00:31 +08:00
|
|
|
gem 'rack-protection' # security
|
2013-02-06 03:16:51 +08:00
|
|
|
|
|
|
|
# Gems used only for assets and not required
|
|
|
|
# in production environments by default.
|
|
|
|
# allow everywhere for now cause we are allowing asset debugging in prd
|
|
|
|
group :assets do
|
2014-09-04 15:11:42 +08:00
|
|
|
|
|
|
|
if rails_master?
|
|
|
|
gem 'sass-rails', git: 'https://github.com/rails/sass-rails.git'
|
|
|
|
else
|
2014-09-25 09:04:22 +08:00
|
|
|
# later is breaking our asset compliation extensions
|
|
|
|
gem 'sass-rails', '4.0.2'
|
2014-09-04 15:11:42 +08:00
|
|
|
end
|
|
|
|
|
2013-02-10 01:04:52 +08:00
|
|
|
gem 'uglifier'
|
2014-08-08 20:54:31 +08:00
|
|
|
gem 'rtlit', require: false # for css rtling
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
|
2013-02-13 18:32:18 +08:00
|
|
|
group :test do
|
2013-05-13 16:04:03 +08:00
|
|
|
gem 'fakeweb', '~> 1.3.0', require: false
|
|
|
|
gem 'minitest', require: false
|
2013-02-13 18:32:18 +08:00
|
|
|
end
|
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
group :test, :development do
|
2015-04-26 06:29:43 +08:00
|
|
|
gem 'rspec', '~> 3.2.0'
|
2013-07-29 10:23:21 +08:00
|
|
|
gem 'mock_redis'
|
2013-10-24 10:02:01 +08:00
|
|
|
gem 'listen', '0.7.3', require: false
|
2013-05-13 16:04:03 +08:00
|
|
|
gem 'certified', require: false
|
2014-09-25 09:04:22 +08:00
|
|
|
# later appears to break Fabricate(:topic, category: category)
|
|
|
|
gem 'fabrication', '2.9.8', require: false
|
2013-06-12 23:56:59 +08:00
|
|
|
gem 'qunit-rails'
|
2013-02-10 01:04:52 +08:00
|
|
|
gem 'mocha', require: false
|
2013-05-14 12:00:12 +08:00
|
|
|
gem 'rb-fsevent', require: RUBY_PLATFORM =~ /darwin/i ? 'rb-fsevent' : false
|
|
|
|
gem 'rb-inotify', '~> 0.9', require: RUBY_PLATFORM =~ /linux/i ? 'rb-inotify' : false
|
2013-05-18 07:01:19 +08:00
|
|
|
gem 'rspec-rails', require: false
|
2013-05-13 16:04:03 +08:00
|
|
|
gem 'shoulda', require: false
|
2013-02-10 01:04:52 +08:00
|
|
|
gem 'simplecov', require: false
|
2013-05-08 02:25:41 +08:00
|
|
|
gem 'timecop'
|
2013-05-16 03:19:41 +08:00
|
|
|
gem 'rspec-given'
|
2013-05-25 04:35:16 +08:00
|
|
|
gem 'pry-nav'
|
2013-12-15 08:34:38 +08:00
|
|
|
gem 'spork-rails'
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
|
2013-04-02 06:28:26 +08:00
|
|
|
group :development do
|
2013-02-06 03:16:51 +08:00
|
|
|
gem 'better_errors'
|
2013-03-25 08:21:18 +08:00
|
|
|
gem 'binding_of_caller'
|
2013-02-13 00:18:59 +08:00
|
|
|
gem 'librarian', '>= 0.0.25', require: false
|
2013-12-05 14:40:16 +08:00
|
|
|
gem 'annotate'
|
2014-03-19 10:06:10 +08:00
|
|
|
gem 'foreman', require: false
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
|
2013-04-02 06:28:26 +08:00
|
|
|
# this is an optional gem, it provides a high performance replacement
|
|
|
|
# to String#blank? a method that is called quite frequently in current
|
|
|
|
# ActiveRecord, this may change in the future
|
2013-04-08 07:42:39 +08:00
|
|
|
gem 'fast_blank' #, github: "SamSaffron/fast_blank"
|
2013-04-02 06:24:59 +08:00
|
|
|
|
2013-04-24 09:59:59 +08:00
|
|
|
# this provides a very efficient lru cache
|
|
|
|
gem 'lru_redux'
|
|
|
|
|
2014-06-06 08:34:21 +08:00
|
|
|
gem 'htmlentities', require: false
|
|
|
|
|
2013-02-15 12:29:49 +08:00
|
|
|
# IMPORTANT: mini profiler monkey patches, so it better be required last
|
2014-12-27 21:03:48 +08:00
|
|
|
# If you want to amend mini profiler to do the monkey patches in the railties
|
2014-03-02 07:27:44 +08:00
|
|
|
# we are open to it. by deferring require to the initializer we can configure discourse installs without it
|
2013-08-30 14:44:03 +08:00
|
|
|
|
2013-12-05 14:40:16 +08:00
|
|
|
gem 'flamegraph', require: false
|
2014-01-06 09:22:02 +08:00
|
|
|
gem 'rack-mini-profiler', require: false
|
2013-04-11 14:24:08 +08:00
|
|
|
|
2013-07-07 12:30:52 +08:00
|
|
|
gem 'unicorn', require: false
|
2013-08-29 13:26:27 +08:00
|
|
|
gem 'puma', require: false
|
2014-01-03 09:29:47 +08:00
|
|
|
gem 'rbtrace', require: false, platform: :mri
|
2013-04-22 17:16:58 +08:00
|
|
|
|
2014-01-01 03:37:43 +08:00
|
|
|
# required for feed importing and embedding
|
2014-04-15 12:06:51 +08:00
|
|
|
#
|
2014-04-15 12:45:00 +08:00
|
|
|
gem 'ruby-readability', require: false
|
2014-04-15 12:06:51 +08:00
|
|
|
|
2014-01-01 03:37:43 +08:00
|
|
|
gem 'simple-rss', require: false
|
2014-12-29 10:30:54 +08:00
|
|
|
|
2014-02-18 10:24:42 +08:00
|
|
|
gem 'gctools', require: false, platform: :mri_21
|
2015-04-16 13:55:21 +08:00
|
|
|
|
|
|
|
begin
|
|
|
|
gem 'stackprof', require: false, platform: [:mri_21, :mri_22]
|
|
|
|
gem 'memory_profiler', require: false, platform: [:mri_21, :mri_22]
|
|
|
|
rescue Bundler::GemfileError
|
|
|
|
STDERR.puts "You are running an old version of bundler, please upgrade bundler ASAP, if you are using Discourse docker, rebuild your container."
|
2015-04-16 14:16:15 +08:00
|
|
|
gem 'stackprof', require: false, platform: [:mri_21]
|
|
|
|
gem 'memory_profiler', require: false, platform: [:mri_21]
|
2015-04-16 13:55:21 +08:00
|
|
|
end
|
2014-05-06 00:50:46 +08:00
|
|
|
|
2014-06-24 15:10:56 +08:00
|
|
|
gem 'rmmseg-cpp', require: false
|
|
|
|
|
2014-09-16 19:15:05 +08:00
|
|
|
gem 'stringex', require: false
|
|
|
|
|
2014-06-30 08:38:29 +08:00
|
|
|
gem 'logster'
|
2014-01-01 03:37:43 +08:00
|
|
|
|
2013-03-11 08:21:56 +08:00
|
|
|
# perftools only works on 1.9 atm
|
|
|
|
group :profile do
|
2013-03-11 08:30:42 +08:00
|
|
|
# travis refuses to install this, instead of fuffing, just avoid it for now
|
|
|
|
#
|
|
|
|
# if you need to profile, uncomment out this line
|
2013-04-02 06:28:26 +08:00
|
|
|
# gem 'rack-perftools_profiler', require: 'rack/perftools_profiler', platform: :mri_19
|
2013-03-11 08:21:56 +08:00
|
|
|
end
|