2013-03-07 11:20:19 -06:00
|
|
|
source 'https://rubygems.org'
|
2013-02-05 13:16:51 -06:00
|
|
|
|
2013-07-20 19:56:48 -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
|
|
|
|
|
2013-07-21 20:00:53 -05:00
|
|
|
module ::Kernel
|
|
|
|
def rails4?
|
2013-11-04 16:36:52 -06:00
|
|
|
!ENV["RAILS3"]
|
2013-07-21 20:00:53 -05:00
|
|
|
end
|
2013-07-20 19:56:48 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
if rails4?
|
|
|
|
Bundler::SharedHelpers.default_lockfile = Pathname.new("#{Bundler::SharedHelpers.default_gemfile}_rails4.lock")
|
|
|
|
|
|
|
|
# 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
|
2013-11-18 16:43:32 -06:00
|
|
|
else
|
|
|
|
# Note to be deprecated, in place of a dual boot master
|
|
|
|
puts "Booting in Rails 3 mode"
|
2013-07-20 19:56:48 -05:00
|
|
|
end
|
|
|
|
|
2013-09-05 23:04:31 -05:00
|
|
|
gem 'seed-fu' , github: 'SamSaffron/seed-fu'
|
|
|
|
|
2013-07-20 19:56:48 -05:00
|
|
|
if rails4?
|
2013-11-04 16:36:52 -06:00
|
|
|
gem 'rails'
|
2013-07-20 19:56:48 -05:00
|
|
|
gem 'redis-rails', :git => 'git://github.com/SamSaffron/redis-store.git'
|
|
|
|
gem 'rails-observers'
|
|
|
|
gem 'actionpack-action_caching'
|
|
|
|
else
|
|
|
|
# we had pain with the 3.2.13 upgrade so monkey patch the security fix
|
|
|
|
# next time around we hope to upgrade
|
|
|
|
gem 'rails', '3.2.12'
|
|
|
|
gem 'strong_parameters' # remove when we upgrade to Rails 4
|
|
|
|
# we are using a custom sprockets repo to work around: https://github.com/rails/rails/issues/8099#issuecomment-16137638
|
|
|
|
# REVIEW EVERY RELEASE
|
|
|
|
gem 'sprockets', git: 'https://github.com/SamSaffron/sprockets.git', branch: 'rails-compat'
|
|
|
|
gem 'redis-rails'
|
2013-07-21 11:50:01 -05:00
|
|
|
gem 'activerecord-postgres-hstore'
|
|
|
|
gem 'active_attr'
|
2013-07-20 19:56:48 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
gem 'hiredis'
|
2013-08-20 19:23:32 -05:00
|
|
|
gem 'redis', :require => ["redis", "redis/connection/hiredis"]
|
2013-07-20 19:56:48 -05:00
|
|
|
|
2013-07-23 13:42:52 -05:00
|
|
|
gem 'active_model_serializers'
|
2013-04-25 20:45:35 -05:00
|
|
|
|
2013-11-29 11:21:21 -06:00
|
|
|
gem 'html_truncator'
|
2013-11-28 16:20:56 -06:00
|
|
|
|
2013-04-25 20:45:35 -05:00
|
|
|
# we had issues with latest, stick to the rev till we figure this out
|
|
|
|
# PR that makes it all hang together welcome
|
2013-06-06 16:50:49 -05:00
|
|
|
gem 'ember-rails'
|
2013-12-02 12:15:31 -06:00
|
|
|
gem 'ember-source', '~> 1.2.0.1'
|
|
|
|
gem 'handlebars-source', '~> 1.1.2'
|
2013-06-06 16:50:49 -05:00
|
|
|
gem 'barber'
|
2013-04-25 20:45:35 -05:00
|
|
|
|
2013-10-31 23:21:22 -05:00
|
|
|
gem 'vestal_versions', git: 'https://github.com/SamSaffron/vestal_versions'
|
2013-02-09 11:04:52 -06:00
|
|
|
|
2013-12-05 00:40:16 -06:00
|
|
|
gem 'message_bus'
|
2013-02-09 11:04:52 -06:00
|
|
|
gem 'rails_multisite', path: 'vendor/gems/rails_multisite'
|
|
|
|
gem 'simple_handlebars_rails', path: 'vendor/gems/simple_handlebars_rails'
|
|
|
|
|
2013-02-19 15:08:23 -06:00
|
|
|
gem 'redcarpet', require: false
|
2013-03-11 18:59:07 -05:00
|
|
|
gem 'airbrake', '3.1.2', require: false # errbit is broken with 3.1.3 for now
|
2013-08-07 12:25:05 -05:00
|
|
|
gem 'sidetiq', '>= 0.3.6'
|
2013-02-09 11:04:52 -06:00
|
|
|
gem 'eventmachine'
|
|
|
|
gem 'fast_xs'
|
2013-12-05 00:40:16 -06:00
|
|
|
|
|
|
|
# https://github.com/CodeMonkeySteve/fast_xor/issues/6
|
2013-05-09 20:50:58 -05:00
|
|
|
gem 'fast_xor', git: 'https://github.com/CodeMonkeySteve/fast_xor.git'
|
2013-02-09 11:04:52 -06:00
|
|
|
gem 'fastimage'
|
2013-11-06 05:16:30 -06:00
|
|
|
gem 'fog', '1.18.0', require: false
|
2013-11-21 10:33:09 -06:00
|
|
|
gem 'unf', require: false
|
2013-02-28 13:31:39 -06:00
|
|
|
|
2013-06-25 13:05:14 -05:00
|
|
|
gem 'email_reply_parser', git: 'https://github.com/lawrencepit/email_reply_parser.git'
|
2013-06-10 15:46:08 -05:00
|
|
|
|
2013-02-18 18:42:05 -06:00
|
|
|
# note: for image_optim to correctly work you need
|
|
|
|
# sudo apt-get install -y advancecomp gifsicle jpegoptim libjpeg-progs optipng pngcrush
|
|
|
|
gem 'image_optim'
|
2013-04-13 09:31:20 -05:00
|
|
|
# note: for image_sorcery to correctly work you need
|
|
|
|
# sudo apt-get install -y imagemagick
|
|
|
|
gem 'image_sorcery'
|
2013-02-09 11:04:52 -06:00
|
|
|
gem 'multi_json'
|
|
|
|
gem 'mustache'
|
|
|
|
gem 'nokogiri'
|
2013-05-09 20:50:58 -05:00
|
|
|
gem 'omniauth'
|
|
|
|
gem 'omniauth-openid'
|
|
|
|
gem 'openid-redis-store'
|
|
|
|
gem 'omniauth-facebook'
|
|
|
|
gem 'omniauth-twitter'
|
|
|
|
gem 'omniauth-github'
|
2013-08-18 00:35:07 -05:00
|
|
|
gem 'omniauth-oauth2', require: false
|
2013-05-09 20:50:58 -05:00
|
|
|
gem 'omniauth-browserid', git: 'https://github.com/callahad/omniauth-browserid.git', branch: 'observer_api'
|
2013-05-23 15:40:50 -05:00
|
|
|
gem 'omniauth-cas'
|
2013-02-09 11:04:52 -06:00
|
|
|
gem 'oj'
|
2013-02-05 13:16:51 -06:00
|
|
|
gem 'pg'
|
|
|
|
gem 'rake'
|
2013-07-20 19:56:48 -05:00
|
|
|
|
|
|
|
|
2013-02-05 13:16:51 -06:00
|
|
|
gem 'rest-client'
|
2013-02-09 11:04:52 -06:00
|
|
|
gem 'rinku'
|
2013-02-05 13:16:51 -06:00
|
|
|
gem 'sanitize'
|
2013-02-09 11:04:52 -06:00
|
|
|
gem 'sass'
|
2013-11-06 14:58:03 -06:00
|
|
|
gem 'sidekiq', '2.15.1'
|
2013-05-28 13:56:46 -05:00
|
|
|
gem 'sidekiq-failures'
|
2013-02-09 11:04:52 -06:00
|
|
|
gem 'sinatra', require: nil
|
|
|
|
gem 'slim' # required for sidekiq-web
|
|
|
|
gem 'therubyracer', require: 'v8'
|
2013-07-06 23:30:52 -05:00
|
|
|
gem 'thin', require: false
|
2013-07-23 13:42:52 -05:00
|
|
|
gem 'diffy', '>= 3.0', require: false
|
2013-06-09 20:56:51 -05:00
|
|
|
gem 'highline', require: false
|
2013-10-28 19:00:31 -05:00
|
|
|
gem 'rack-protection' # security
|
2013-02-05 13:16:51 -06: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 11:04:52 -06:00
|
|
|
gem 'uglifier'
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|
|
|
|
|
2013-02-13 04:32:18 -06:00
|
|
|
group :test do
|
2013-05-13 03:04:03 -05:00
|
|
|
gem 'fakeweb', '~> 1.3.0', require: false
|
|
|
|
gem 'minitest', require: false
|
2013-02-13 04:32:18 -06:00
|
|
|
end
|
|
|
|
|
2013-02-05 13:16:51 -06:00
|
|
|
group :test, :development do
|
2013-07-28 21:23:21 -05:00
|
|
|
gem 'mock_redis'
|
2013-10-23 21:02:01 -05:00
|
|
|
gem 'listen', '0.7.3', require: false
|
2013-05-13 03:04:03 -05:00
|
|
|
gem 'certified', require: false
|
2013-10-23 21:34:20 -05:00
|
|
|
gem 'fabrication', require: false
|
2013-06-12 10:56:59 -05:00
|
|
|
gem 'qunit-rails'
|
2013-02-09 11:04:52 -06:00
|
|
|
gem 'mocha', require: false
|
2013-05-13 23:00:12 -05: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 18:01:19 -05:00
|
|
|
gem 'rspec-rails', require: false
|
2013-05-13 03:04:03 -05:00
|
|
|
gem 'shoulda', require: false
|
2013-02-09 11:04:52 -06:00
|
|
|
gem 'simplecov', require: false
|
2013-05-07 13:25:41 -05:00
|
|
|
gem 'timecop'
|
2013-05-15 14:19:41 -05:00
|
|
|
gem 'rspec-given'
|
2013-05-24 15:35:16 -05:00
|
|
|
gem 'pry-rails'
|
|
|
|
gem 'pry-nav'
|
2013-08-14 21:55:19 -05:00
|
|
|
gem 'spork-rails', :github => 'sporkrb/spork-rails'
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|
|
|
|
|
2013-04-01 17:28:26 -05:00
|
|
|
group :development do
|
2013-02-05 13:16:51 -06:00
|
|
|
gem 'better_errors'
|
2013-03-24 19:21:18 -05:00
|
|
|
gem 'binding_of_caller'
|
2013-02-12 10:18:59 -06:00
|
|
|
gem 'librarian', '>= 0.0.25', require: false
|
2013-12-05 00:40:16 -06:00
|
|
|
gem 'annotate'
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|
|
|
|
|
2013-11-19 21:38:21 -06:00
|
|
|
# Gem that enables support for plugins. It is required.
|
2013-11-20 12:29:42 -06:00
|
|
|
# TODO: does this really need to be a gem ?
|
2013-11-19 21:38:21 -06:00
|
|
|
gem 'discourse_plugin', path: 'vendor/gems/discourse_plugin'
|
2013-04-18 01:32:48 -05:00
|
|
|
|
2013-04-01 17:28:26 -05: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 18:42:39 -05:00
|
|
|
gem 'fast_blank' #, github: "SamSaffron/fast_blank"
|
2013-04-01 17:24:59 -05:00
|
|
|
|
2013-04-23 20:59:59 -05:00
|
|
|
# this provides a very efficient lru cache
|
|
|
|
gem 'lru_redux'
|
|
|
|
|
2013-02-14 22:29:49 -06: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
|
2013-04-11 01:24:08 -05:00
|
|
|
# we are open to it. by deferring require to the initializer we can configure disourse installs without it
|
2013-08-30 01:44:03 -05:00
|
|
|
|
2013-12-05 00:40:16 -06:00
|
|
|
gem 'flamegraph', require: false
|
|
|
|
gem 'rack-mini-profiler', '0.9.0.pre ', require: false
|
2013-04-11 01:24:08 -05:00
|
|
|
|
|
|
|
# used for caching, optional
|
2013-04-22 04:16:58 -05:00
|
|
|
gem 'rack-cors', require: false
|
2013-07-06 23:30:52 -05:00
|
|
|
gem 'unicorn', require: false
|
2013-08-29 00:26:27 -05:00
|
|
|
gem 'puma', require: false
|
2013-11-19 17:10:12 -06:00
|
|
|
gem 'rbtrace', require: false
|
2013-04-22 04:16:58 -05:00
|
|
|
|
2013-03-10 19:21:56 -05:00
|
|
|
# perftools only works on 1.9 atm
|
|
|
|
group :profile do
|
2013-03-10 19:30:42 -05: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 17:28:26 -05:00
|
|
|
# gem 'rack-perftools_profiler', require: 'rack/perftools_profiler', platform: :mri_19
|
2013-03-10 19:21:56 -05:00
|
|
|
end
|