Skip to content

Commit

Permalink
Get rid of obsolete (pre-bundler) installation instructions.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jim Kingdon committed Apr 16, 2012
1 parent a0aca65 commit b343e80
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
7 changes: 5 additions & 2 deletions web/developers.html
Original file line number Diff line number Diff line change
Expand Up @@ -230,9 +230,12 @@
<div class="main"> <div class="body">
<h1>Want to help develop Erector? Here's what to do.</h1>
<h2>Clone Erector from Github or create your own fork:</h2>
<pre>git clone git://github.com/pivotal/erector.git</pre>
<pre>git clone git://github.com/pivotal/erector.git
cd erector
</pre>
<h2>Install gems:</h2>
<pre>sudo gem install rake rails rspec rubyforge hpricot treetop</pre>
<pre>bundle install
</pre>
<h2>Run specs:</h2>
<pre>rake</pre>
<h2>Check out the available rake tasks:</h2>
Expand Down
9 changes: 7 additions & 2 deletions web/developers.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,15 @@ def body_content
h1 "Want to help develop Erector? Here's what to do."

h2 "Clone Erector from Github or create your own fork:"
pre "git clone git://github.com/pivotal/erector.git"
pre <<END
git clone git://github.com/pivotal/erector.git
cd erector
END

h2 "Install gems:"
pre "sudo gem install rake rails rspec rubyforge hpricot treetop"
pre <<END
bundle install
END

h2 "Run specs:"
pre "rake"
Expand Down

0 comments on commit b343e80

Please sign in to comment.