Sha256: 5be3d5f85e2f6154d20f5105849cac39164074f8145f92d4e758cb2e99f47400
Contents?: true
Size: 677 Bytes
Versions: 1
Compression:
Stored size: 677 Bytes
Contents
Finalizing setup ================ Ensure `config/boot.rb` does this before the `Gemfile` line: require File.expand_path("../clone_hosted_gems", __FILE__) Ensure `.gitignore` contains the following: /vendor/gems_dev/ /vendor/plugins_dev/ Check out the gem you are working on: $ cd vendor/gems_dev $ git clone git://github.com/author/cool_gem.git Include the gem into your `Gemfile`: gem "cool_gem", :path => "vendor/gems/cool_gem" Now you can work on `vendor/gems_dev/cool_gem` like you do on regular application code. Changes to the gem become **instantly available** to the application whenever you load your Rails environment. Good luck!
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
hosted_gem_development-0.1.0 | lib/generators/hosted_gem_development/templates/INSTALL |