Commit 732ed33c18df2d75e4e2627ddd011d93f9abc200

Authored by Dan Croak
1 parent 45b7c05c

updating script/create_project to install heroku, nokogiri, tpope-pickler gems

Showing 1 changed file with 13 additions and 4 deletions   Show diff stats
script/create_project
@@ -67,10 +67,19 @@ run("sudo rake gems:install RAILS_ENV=development") @@ -67,10 +67,19 @@ run("sudo rake gems:install RAILS_ENV=development")
67 run("sudo rake gems:install RAILS_ENV=test") 67 run("sudo rake gems:install RAILS_ENV=test")
68 run("sudo rake gems:install RAILS_ENV=cucumber") 68 run("sudo rake gems:install RAILS_ENV=cucumber")
69 69
70 -# can't install cucumber via rake gems:install because  
71 -# it is considered a "framework" gem  
72 -if not_installed?("cucumber")  
73 - run "sudo gem install cucumber --version='0.3.11'" 70 +# can't vendor nokogiri because it has native extensions
  71 +if not_installed?("nokogiri")
  72 + run "sudo gem install nokogiri --version='1.3.2'"
  73 +end
  74 +
  75 +# need to install tpope-pickler for the 'pickler' command
  76 +if not_installed?("tpope-pickler")
  77 + run "sudo gem install tpope-pickler"
  78 +end
  79 +
  80 +# need to install heroku gem for the 'heroku' commands
  81 +if not_installed?("heroku")
  82 + run "sudo gem install heroku"
74 end 83 end
75 84
76 # can't install rubaidh-google_analytics via rake gems:install because 85 # can't install rubaidh-google_analytics via rake gems:install because