updated rails for kicks, run bundle install, and run gem install bundler --pre rspec-rails --pre too
This commit is contained in:
parent
c073fc6137
commit
a02a833625
4 changed files with 4 additions and 2 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -6,5 +6,6 @@
|
|||
db/*.sqlite3
|
||||
log/*.log
|
||||
tmp/**/*
|
||||
Gemfile.lock
|
||||
gpg/diaspora-development/*.gpg
|
||||
gpg/diaspora-production/*.gpg
|
||||
|
|
|
|||
2
Gemfile
2
Gemfile
|
|
@ -1,7 +1,7 @@
|
|||
source 'http://rubygems.org'
|
||||
source 'http://gemcutter.org'
|
||||
|
||||
gem 'rails', '3.0.0.beta4'
|
||||
gem 'rails', :git =>'http://github.com/rails/rails.git'
|
||||
gem 'bundler'
|
||||
gem 'mongo_mapper', :git => "http://github.com/BadMinus/mongomapper.git"
|
||||
gem 'devise', :git => "http://github.com/BadMinus/devise.git"
|
||||
|
|
|
|||
|
|
@ -16,6 +16,6 @@ Diaspora::Application.configure do
|
|||
|
||||
# Don't care if the mailer can't send
|
||||
config.action_mailer.raise_delivery_errors = false
|
||||
|
||||
config.active_support.deprecation = :log
|
||||
#config.threadsafe!
|
||||
end
|
||||
|
|
|
|||
|
|
@ -47,6 +47,7 @@ module Diaspora
|
|||
def self.included(klass)
|
||||
klass.class_eval do
|
||||
include ROXML
|
||||
require 'message_handler'
|
||||
@@queue = MessageHandler.new
|
||||
|
||||
def notify_people
|
||||
|
|
|
|||
Loading…
Reference in a new issue