mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-27 09:36:19 -05:00
Updated to acts_as_paranoid. Fixes #5.
This commit is contained in:
parent
14a807f433
commit
2d3b3325a0
2 changed files with 4 additions and 4 deletions
2
Gemfile
2
Gemfile
|
@ -12,7 +12,7 @@ gem 'rake'
|
||||||
# errbit is broken with 3.1.3 for now
|
# errbit is broken with 3.1.3 for now
|
||||||
gem 'airbrake', "3.1.2"
|
gem 'airbrake', "3.1.2"
|
||||||
gem 'rest-client'
|
gem 'rest-client'
|
||||||
gem 'rails3_acts_as_paranoid', "~>0.2.0"
|
gem 'acts_as_paranoid'
|
||||||
gem 'activerecord-postgres-hstore'
|
gem 'activerecord-postgres-hstore'
|
||||||
gem 'sidekiq'
|
gem 'sidekiq'
|
||||||
gem 'fastimage'
|
gem 'fastimage'
|
||||||
|
|
|
@ -93,6 +93,8 @@ GEM
|
||||||
activesupport (3.2.11)
|
activesupport (3.2.11)
|
||||||
i18n (~> 0.6)
|
i18n (~> 0.6)
|
||||||
multi_json (~> 1.0)
|
multi_json (~> 1.0)
|
||||||
|
acts_as_paranoid (0.4.1)
|
||||||
|
activerecord (~> 3.2)
|
||||||
addressable (2.3.2)
|
addressable (2.3.2)
|
||||||
airbrake (3.1.2)
|
airbrake (3.1.2)
|
||||||
activesupport
|
activesupport
|
||||||
|
@ -245,8 +247,6 @@ GEM
|
||||||
activesupport (= 3.2.11)
|
activesupport (= 3.2.11)
|
||||||
bundler (~> 1.0)
|
bundler (~> 1.0)
|
||||||
railties (= 3.2.11)
|
railties (= 3.2.11)
|
||||||
rails3_acts_as_paranoid (0.2.5)
|
|
||||||
activerecord (~> 3.2)
|
|
||||||
railties (3.2.11)
|
railties (3.2.11)
|
||||||
actionpack (= 3.2.11)
|
actionpack (= 3.2.11)
|
||||||
activesupport (= 3.2.11)
|
activesupport (= 3.2.11)
|
||||||
|
@ -371,6 +371,7 @@ PLATFORMS
|
||||||
DEPENDENCIES
|
DEPENDENCIES
|
||||||
active_model_serializers!
|
active_model_serializers!
|
||||||
activerecord-postgres-hstore
|
activerecord-postgres-hstore
|
||||||
|
acts_as_paranoid
|
||||||
airbrake (= 3.1.2)
|
airbrake (= 3.1.2)
|
||||||
better_errors
|
better_errors
|
||||||
binding_of_caller
|
binding_of_caller
|
||||||
|
@ -410,7 +411,6 @@ DEPENDENCIES
|
||||||
pry-rails
|
pry-rails
|
||||||
rack-mini-profiler!
|
rack-mini-profiler!
|
||||||
rails
|
rails
|
||||||
rails3_acts_as_paranoid (~> 0.2.0)
|
|
||||||
rails_multisite!
|
rails_multisite!
|
||||||
rake
|
rake
|
||||||
rb-fsevent
|
rb-fsevent
|
||||||
|
|
Loading…
Reference in a new issue