Commit 2d363e85f2b001c338fa95f0100e092d31921123

Authored by Dan Croak
1 parent 7d1781cf

updating README about new gem dependency management. added information about goo…

…gle analytics in a comment
README.markdown
... ... @@ -23,6 +23,8 @@ This will create a Rails 2.3.2 app with Heroku-recommended code:
23 23 * Evergreen for CSS framework
24 24 * Coulda for features, model, controller, & helper generators
25 25  
  26 +If you don't have all the necessary gems, they will be installed.
  27 +
26 28 Get the latest & greatest at anytime with:
27 29  
28 30 rake suspenders:pull
... ...
config/initializers/google_analytics.rb
  1 +# Google Analytics is only available in production by default
  2 +# http://github.com/rubaidh/google_analytics
  3 +
1 4 if ENV['GOOGLE_ANALYTICS_TRACKER_ID']
2 5 Rubaidh::GoogleAnalytics.tracker_id = ENV['GOOGLE_ANALYTICS_TRACKER_ID']
3 6 end
... ...