This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
James Smith (author)
Thu May 08 10:50:32 -0700 2008
| name | age | message | |
|---|---|---|---|
| .. | |||
| |
README | Sun Aug 13 23:45:53 -0700 2006 | [technoweenie] |
| |
init.rb | Sun Aug 13 23:45:53 -0700 2006 | [technoweenie] |
| |
tasks/ | Sun Aug 13 23:45:53 -0700 2006 | [technoweenie] |
README
Gems ==== This is a small plugin that helps with Ruby Gem management for your application. It will automatically include all gem/lib paths into the $LOAD_PATH on startup. To freeze gems: $ rake gems:freeze GEM=tzinfo (in /path/to/app) rm -rf vendor/tzinfo-0.1.2 cd /path/to/app/config/../vendor mkdir -p tzinfo-0.1.2 Unpacked tzinfo 0.1.2 to 'tzinfo-0.1.2' cd - Be sure to require them in your environment.rb if you want them available. $ script/console Loading development environment. >> TZInfo NameError: uninitialized constant TZInfo >> require 'Tzinfo' => true >> TZInfo => TZInfo You can also freeze specific versions: rake gems:freeze GEM=tzinfo VERSION=0.1.2





