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,6 +23,8 @@ This will create a Rails 2.3.2 app with Heroku-recommended code:
23 * Evergreen for CSS framework 23 * Evergreen for CSS framework
24 * Coulda for features, model, controller, & helper generators 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 Get the latest & greatest at anytime with: 28 Get the latest & greatest at anytime with:
27 29
28 rake suspenders:pull 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 if ENV['GOOGLE_ANALYTICS_TRACKER_ID'] 4 if ENV['GOOGLE_ANALYTICS_TRACKER_ID']
2 Rubaidh::GoogleAnalytics.tracker_id = ENV['GOOGLE_ANALYTICS_TRACKER_ID'] 5 Rubaidh::GoogleAnalytics.tracker_id = ENV['GOOGLE_ANALYTICS_TRACKER_ID']
3 end 6 end