2013-03-07 12:20:19 -05:00
|
|
|
source 'https://rubygems.org'
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2013-07-21 21:00:53 -04:00
|
|
|
module ::Kernel
|
2013-11-30 01:03:42 -05:00
|
|
|
def rails_master?
|
2014-02-17 11:44:28 -05:00
|
|
|
ENV["RAILS_MASTER"]
|
2013-11-30 01:03:42 -05:00
|
|
|
end
|
2013-07-20 20:56:48 -04:00
|
|
|
end
|
|
|
|
|
2014-02-17 11:44:28 -05:00
|
|
|
if rails_master?
|
2014-02-17 23:58:56 -05: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-17 11:44:28 -05:00
|
|
|
Bundler::SharedHelpers.default_lockfile = Pathname.new("#{Bundler::SharedHelpers.default_gemfile}_master.lock")
|
2014-02-17 23:58:56 -05: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-17 11:44:28 -05:00
|
|
|
end
|
2013-07-20 20:56:48 -04:00
|
|
|
|
2014-02-17 21:24:42 -05:00
|
|
|
# Monkey patch bundler to support mri_21
|
2014-02-17 23:58:56 -05:00
|
|
|
unless Bundler::Dependency::PLATFORM_MAP.include? :mri_21
|
2014-02-17 21:24:42 -05:00
|
|
|
STDERR.puts
|
|
|
|
STDERR.puts "WARNING: --------------------------------------------------------------------------"
|
|
|
|
STDERR.puts "You are running an old version of bundler, please update by running: gem install bundler"
|
|
|
|
STDERR.puts
|
|
|
|
map = Bundler::Dependency::PLATFORM_MAP.dup
|
|
|
|
map[:mri_21] = Gem::Platform::RUBY
|
|
|
|
map.freeze
|
|
|
|
Bundler::Dependency.send(:remove_const, "PLATFORM_MAP")
|
|
|
|
Bundler::Dependency.const_set("PLATFORM_MAP", map)
|
|
|
|
|
|
|
|
Bundler::Dsl.send(:remove_const, "VALID_PLATFORMS")
|
|
|
|
Bundler::Dsl.const_set("VALID_PLATFORMS", map.keys.freeze)
|
|
|
|
class ::Bundler::CurrentRuby
|
|
|
|
def on_21?
|
|
|
|
RUBY_VERSION =~ /^2\.1/
|
|
|
|
end
|
|
|
|
def mri_21?
|
|
|
|
mri? && on_21?
|
|
|
|
end
|
|
|
|
end
|
|
|
|
class ::Bundler::Dependency
|
|
|
|
private
|
|
|
|
def on_21?
|
|
|
|
RUBY_VERSION =~ /^2\.1/
|
|
|
|
end
|
|
|
|
def mri_21?
|
|
|
|
mri? && on_21?
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-12-14 19:02:00 -05:00
|
|
|
# see: https://github.com/mbleigh/seed-fu/pull/54
|
|
|
|
# taking forever to get changes upstream in seed-fu
|
|
|
|
gem 'seed-fu-discourse', require: 'seed-fu'
|
2013-09-06 00:04:31 -04:00
|
|
|
|
2014-02-17 11:44:28 -05:00
|
|
|
if rails_master?
|
|
|
|
gem 'rails', git: 'https://github.com/rails/rails.git'
|
|
|
|
gem 'actionpack-action_caching', git: 'https://github.com/rails/actionpack-action_caching.git'
|
2013-07-20 20:56:48 -04:00
|
|
|
else
|
2014-02-17 11:44:28 -05:00
|
|
|
gem 'rails'
|
|
|
|
gem 'actionpack-action_caching'
|
2013-07-20 20:56:48 -04:00
|
|
|
end
|
2014-02-17 11:44:28 -05:00
|
|
|
gem 'rails-observers'
|
2013-07-20 20:56:48 -04:00
|
|
|
|
2014-01-06 00:50:04 -05:00
|
|
|
#gem 'redis-rails'
|
2013-07-20 20:56:48 -04:00
|
|
|
gem 'hiredis'
|
2013-08-20 20:23:32 -04:00
|
|
|
gem 'redis', :require => ["redis", "redis/connection/hiredis"]
|
2013-07-20 20:56:48 -04:00
|
|
|
|
2013-07-23 14:42:52 -04:00
|
|
|
gem 'active_model_serializers'
|
2013-04-25 21:45:35 -04:00
|
|
|
|
2013-11-28 17:20:56 -05:00
|
|
|
|
2014-02-13 11:53:14 -05:00
|
|
|
gem 'onebox'
|
2014-01-27 15:09:09 -05:00
|
|
|
|
2013-06-06 17:50:49 -04:00
|
|
|
gem 'ember-rails'
|
2013-12-02 13:15:31 -05:00
|
|
|
gem 'ember-source', '~> 1.2.0.1'
|
|
|
|
gem 'handlebars-source', '~> 1.1.2'
|
2013-06-06 17:50:49 -04:00
|
|
|
gem 'barber'
|
2013-04-25 21:45:35 -04:00
|
|
|
|
2013-12-05 01:40:16 -05:00
|
|
|
gem 'message_bus'
|
2013-02-09 12:04:52 -05:00
|
|
|
gem 'rails_multisite', path: 'vendor/gems/rails_multisite'
|
|
|
|
|
2013-02-19 16:08:23 -05:00
|
|
|
gem 'redcarpet', require: false
|
2013-03-11 19:59:07 -04:00
|
|
|
gem 'airbrake', '3.1.2', require: false # errbit is broken with 3.1.3 for now
|
2013-02-09 12:04:52 -05:00
|
|
|
gem 'eventmachine'
|
|
|
|
gem 'fast_xs'
|
2013-12-05 01:40:16 -05:00
|
|
|
|
2013-12-05 23:22:15 -05:00
|
|
|
gem 'fast_xor'
|
2013-02-09 12:04:52 -05:00
|
|
|
gem 'fastimage'
|
2013-11-06 06:16:30 -05:00
|
|
|
gem 'fog', '1.18.0', require: false
|
2013-11-21 11:33:09 -05:00
|
|
|
gem 'unf', require: false
|
2013-02-28 14:31:39 -05:00
|
|
|
|
2013-12-14 19:02:00 -05:00
|
|
|
# see: https://twitter.com/samsaffron/status/412360162297393152
|
|
|
|
# Massive amount of changes made in branch we use, no PR upstreamed
|
|
|
|
# We need to get this sorted
|
|
|
|
# https://github.com/samsaffron/email_reply_parser
|
|
|
|
gem 'email_reply_parser-discourse', require: 'email_reply_parser'
|
2013-06-10 16:46:08 -04:00
|
|
|
|
2013-02-18 19:42:05 -05:00
|
|
|
# note: for image_optim to correctly work you need
|
|
|
|
# sudo apt-get install -y advancecomp gifsicle jpegoptim libjpeg-progs optipng pngcrush
|
2014-02-23 18:11:16 -05:00
|
|
|
#
|
|
|
|
# Sam: held back, getting weird errors in latest
|
|
|
|
gem 'image_optim', '0.9.1'
|
2013-04-13 10:31:20 -04:00
|
|
|
# note: for image_sorcery to correctly work you need
|
|
|
|
# sudo apt-get install -y imagemagick
|
|
|
|
gem 'image_sorcery'
|
2013-02-09 12:04:52 -05:00
|
|
|
gem 'multi_json'
|
|
|
|
gem 'mustache'
|
|
|
|
gem 'nokogiri'
|
2013-05-09 21:50:58 -04:00
|
|
|
gem 'omniauth'
|
|
|
|
gem 'omniauth-openid'
|
|
|
|
gem 'openid-redis-store'
|
|
|
|
gem 'omniauth-facebook'
|
|
|
|
gem 'omniauth-twitter'
|
|
|
|
gem 'omniauth-github'
|
2013-08-18 01:35:07 -04:00
|
|
|
gem 'omniauth-oauth2', require: false
|
2013-02-09 12:04:52 -05:00
|
|
|
gem 'oj'
|
2013-12-09 19:41:05 -05:00
|
|
|
# while resolving https://groups.google.com/forum/#!topic/ruby-pg/5_ylGmog1S4
|
|
|
|
gem 'pg', '0.15.1'
|
2013-02-05 14:16:51 -05:00
|
|
|
gem 'rake'
|
2013-07-20 20:56:48 -04:00
|
|
|
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
gem 'rest-client'
|
2013-02-09 12:04:52 -05:00
|
|
|
gem 'rinku'
|
2013-02-05 14:16:51 -05:00
|
|
|
gem 'sanitize'
|
2013-02-09 12:04:52 -05:00
|
|
|
gem 'sass'
|
2014-02-23 18:00:25 -05:00
|
|
|
gem 'sidekiq'
|
2013-05-28 14:56:46 -04:00
|
|
|
gem 'sidekiq-failures'
|
2013-02-09 12:04:52 -05:00
|
|
|
gem 'sinatra', require: nil
|
|
|
|
gem 'slim' # required for sidekiq-web
|
2013-12-08 20:39:48 -05:00
|
|
|
|
2014-02-03 19:13:48 -05:00
|
|
|
gem 'therubyracer'
|
2013-07-07 00:30:52 -04:00
|
|
|
gem 'thin', require: false
|
2013-06-09 21:56:51 -04:00
|
|
|
gem 'highline', require: false
|
2013-10-28 20:00:31 -04:00
|
|
|
gem 'rack-protection' # security
|
2013-02-05 14:16:51 -05: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
|
|
|
|
gem 'sass-rails'
|
2013-02-09 12:04:52 -05:00
|
|
|
gem 'uglifier'
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2013-02-13 05:32:18 -05:00
|
|
|
group :test do
|
2013-05-13 04:04:03 -04:00
|
|
|
gem 'fakeweb', '~> 1.3.0', require: false
|
|
|
|
gem 'minitest', require: false
|
2013-02-13 05:32:18 -05:00
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
group :test, :development do
|
2013-07-28 22:23:21 -04:00
|
|
|
gem 'mock_redis'
|
2013-10-23 22:02:01 -04:00
|
|
|
gem 'listen', '0.7.3', require: false
|
2013-05-13 04:04:03 -04:00
|
|
|
gem 'certified', require: false
|
2013-10-23 22:34:20 -04:00
|
|
|
gem 'fabrication', require: false
|
2013-06-12 11:56:59 -04:00
|
|
|
gem 'qunit-rails'
|
2013-02-09 12:04:52 -05:00
|
|
|
gem 'mocha', require: false
|
2013-05-14 00:00:12 -04: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-17 19:01:19 -04:00
|
|
|
gem 'rspec-rails', require: false
|
2013-05-13 04:04:03 -04:00
|
|
|
gem 'shoulda', require: false
|
2013-02-09 12:04:52 -05:00
|
|
|
gem 'simplecov', require: false
|
2013-05-07 14:25:41 -04:00
|
|
|
gem 'timecop'
|
2013-05-15 15:19:41 -04:00
|
|
|
gem 'rspec-given'
|
2013-05-24 16:35:16 -04:00
|
|
|
gem 'pry-rails'
|
|
|
|
gem 'pry-nav'
|
2013-12-14 19:34:38 -05:00
|
|
|
gem 'spork-rails'
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2013-04-01 18:28:26 -04:00
|
|
|
group :development do
|
2013-02-05 14:16:51 -05:00
|
|
|
gem 'better_errors'
|
2013-03-24 20:21:18 -04:00
|
|
|
gem 'binding_of_caller'
|
2013-02-12 11:18:59 -05:00
|
|
|
gem 'librarian', '>= 0.0.25', require: false
|
2013-12-05 01:40:16 -05:00
|
|
|
gem 'annotate'
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2013-11-19 22:38:21 -05:00
|
|
|
# Gem that enables support for plugins. It is required.
|
2013-11-20 13:29:42 -05:00
|
|
|
# TODO: does this really need to be a gem ?
|
2013-11-19 22:38:21 -05:00
|
|
|
gem 'discourse_plugin', path: 'vendor/gems/discourse_plugin'
|
2013-04-18 02:32:48 -04:00
|
|
|
|
2013-04-01 18:28:26 -04: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-07 19:42:39 -04:00
|
|
|
gem 'fast_blank' #, github: "SamSaffron/fast_blank"
|
2013-04-01 18:24:59 -04:00
|
|
|
|
2013-04-23 21:59:59 -04:00
|
|
|
# this provides a very efficient lru cache
|
|
|
|
gem 'lru_redux'
|
|
|
|
|
2013-02-14 23:29:49 -05:00
|
|
|
# IMPORTANT: mini profiler monkey patches, so it better be required last
|
|
|
|
# If you want to amend mini profiler to do the monkey patches in the railstie
|
2014-03-01 18:27:44 -05:00
|
|
|
# we are open to it. by deferring require to the initializer we can configure discourse installs without it
|
2013-08-30 02:44:03 -04:00
|
|
|
|
2013-12-05 01:40:16 -05:00
|
|
|
gem 'flamegraph', require: false
|
2014-01-05 20:22:02 -05:00
|
|
|
gem 'rack-mini-profiler', require: false
|
2013-04-11 02:24:08 -04:00
|
|
|
|
|
|
|
# used for caching, optional
|
2013-04-22 05:16:58 -04:00
|
|
|
gem 'rack-cors', require: false
|
2013-07-07 00:30:52 -04:00
|
|
|
gem 'unicorn', require: false
|
2013-08-29 01:26:27 -04:00
|
|
|
gem 'puma', require: false
|
2014-01-02 20:29:47 -05:00
|
|
|
gem 'rbtrace', require: false, platform: :mri
|
2013-04-22 05:16:58 -04:00
|
|
|
|
2013-12-31 14:37:43 -05:00
|
|
|
# required for feed importing and embedding
|
|
|
|
gem 'ruby-readability', require: false
|
|
|
|
gem 'simple-rss', require: false
|
2014-02-17 21:24:42 -05:00
|
|
|
gem 'gctools', require: false, platform: :mri_21
|
|
|
|
gem 'stackprof', require: false, platform: :mri_21
|
2013-12-31 14:37:43 -05:00
|
|
|
|
2013-03-10 20:21:56 -04:00
|
|
|
# perftools only works on 1.9 atm
|
|
|
|
group :profile do
|
2013-03-10 20:30:42 -04: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-01 18:28:26 -04:00
|
|
|
# gem 'rack-perftools_profiler', require: 'rack/perftools_profiler', platform: :mri_19
|
2013-03-10 20:21:56 -04:00
|
|
|
end
|