MS app now works with rc1
This commit is contained in:
parent
4019e4425a
commit
6e2c42f8de
3 changed files with 10 additions and 8 deletions
13
Gemfile
13
Gemfile
|
|
@ -1,16 +1,17 @@
|
|||
source 'http://rubygems.org'
|
||||
|
||||
#gem 'rails', '3.0.0.rc'
|
||||
#gem 'bundler', '1.0.0.rc.1'
|
||||
gem 'rails', '3.0.0.beta4'
|
||||
gem 'bundler', '0.9.26'
|
||||
gem 'rails', '3.0.0.rc'
|
||||
gem 'bundler', '1.0.0.rc.5'
|
||||
#gem 'rails', '3.0.0.beta4'
|
||||
#gem 'bundler', '0.9.26'
|
||||
|
||||
#Security
|
||||
gem 'gpgme'
|
||||
gem 'devise', :git => 'http://github.com/BadMinus/devise.git'
|
||||
|
||||
#Mongo
|
||||
gem 'mongo_mapper', :git => 'http://github.com/BadMinus/mongomapper.git'
|
||||
#gem 'mongo_mapper', :git => 'http://github.com/BadMinus/mongomapper.git'
|
||||
gem 'mongo_mapper', :git => 'http://github.com/jnunemaker/mongomapper.git'
|
||||
gem 'jnunemaker-validatable', :git => 'http://github.com/BadMinus/validatable.git'
|
||||
gem 'mongo_ext'
|
||||
gem 'bson_ext'
|
||||
|
|
@ -28,7 +29,7 @@ gem 'pubsubhubbub'
|
|||
gem 'redfinger'
|
||||
|
||||
#EventMachine
|
||||
gem 'em-http-request',:git => 'git://github.com/igrigorik/em-http-request.git', :ref => 'c6c494c514291f686cf6', :require => 'em-http'
|
||||
gem 'em-http-request',:git => 'git://github.com/igrigorik/em-http-request.git', :require => 'em-http'
|
||||
gem 'em-websocket'
|
||||
gem 'thin'
|
||||
|
||||
|
|
|
|||
|
|
@ -15,8 +15,8 @@ module Diaspora
|
|||
# -- all .rb files in that directory are automatically loaded.
|
||||
|
||||
# Add additional load paths for your own custom dirs
|
||||
# config.load_paths += %W( #{config.root}/extras )
|
||||
|
||||
config.autoload_paths += %W(#{config.root}/lib)
|
||||
|
||||
# Only load the plugins named here, in the order given (default is alphabetical).
|
||||
# :all can be used as a placeholder for all plugins not explicitly named
|
||||
# config.plugins = [ :exception_notification, :ssl_requirement, :all ]
|
||||
|
|
|
|||
|
|
@ -24,6 +24,7 @@ Diaspora::Application.configure do
|
|||
# The :test delivery method accumulates sent emails in the
|
||||
# ActionMailer::Base.deliveries array.
|
||||
config.action_mailer.delivery_method = :test
|
||||
config.active_support.deprecation = :stderr
|
||||
config.threadsafe!
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue