Skip to content

Instantly share code, notes, and snippets.

@jedfoster
Last active December 13, 2015 17:38
Show Gist options
  • Save jedfoster/4949595 to your computer and use it in GitHub Desktop.
Save jedfoster/4949595 to your computer and use it in GitHub Desktop.

These are the steps I took to build the gem, install it locally, and then install and run the app in an "existing" project.

git clone git@github.com:Anotheruiguy/toadstool.git
cd toadstool
git checkout gem
gem build toadstool.gemspec 
gem install toadstool --local
cd ../
mkdir Foo
cd Foo/
toadstool new
bundle update
rake assets:precompile
toadstool server
@jedfoster
Copy link
Author

The mkdir Foo and cd Foo/ are simply to simulate an existing directory. You could create a brand new app with toadstool new Foo.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment