Check the instructions again, to use the edge branch:
>
>
> ## environment.rb should look something like this:
> RAILS_GEM_VERSION = '2.2.2' unless defined? RAILS_GEM_VERSION
>
This should be 2.3.2
> require File.join(File.dirname(__FILE__), 'boot')
> require File.join(File.dirname(__FILE__), '../vendor/plugins/engines/
> boot')
this should be require 'desert'
>
>
> Rails::Initializer.run do |config|
> #resource_hacks required here to ensure routes like /:login_slug work
> config.plugins = [:engines, :community_engine, :white_list, :all]
Shouldn't have :engines here
>
> config.plugin_paths += ["#{RAILS_ROOT}/vendor/plugins/
> community_engine/engine_plugins"]
>
Should be:
config.plugin_paths +=
["#{RAILS_ROOT}/vendor/plugins/community_engine/plugins"]
>
> config.gem 'haml'
> config.gem 'rmagick'
>
> end
> # Include your application configuration below
> require "#{RAILS_ROOT}/vendor/plugins/community_engine/engine_config/
> boot.rb"
Should be:
require "#{RAILS_ROOT}/vendor/plugins/community_engine/config/boot.rb"
>
> >
>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"CommunityEngine" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/communityengine?hl=en
-~----------~----~----~----~------~----~------~--~---