1

I using rails 3.1.2 for now.

gem 'community_engine' => OK

bundle install --binstubs => OK

bin/rake community_engine:install:migrations

rake aborted! uninitialized constant Tag

anyone can help me solved this problem? thanks a lot.

khanh
  • 4,516
  • 10
  • 29
  • 48
  • Very hard to answer this, there is a class missing sure, is there a file in app/models/tag.rb ? – Dorian Dec 06 '11 at 09:46

2 Answers2

2

It seems that you're running an older version of Community Engine.

In your Gemfile replace

gem 'community_engine'

with

gem 'community_engine' , :git => 'https://github.com/bborn/communityengine.git', :branch => 'rails3'
Peter_Tonoli
  • 151
  • 2
1

It seem like you need to write

gem 'aws-s3'

in your Gemfile

Tay2510
  • 5,748
  • 7
  • 39
  • 58
Huibean Luo
  • 151
  • 6