Created
September 23, 2011 17:05
-
-
Save activestylus/1237899 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
############################################################ | |
$ rvm info | |
ruby-1.9.2-p290: | |
system: | |
uname: "Darwin home.local 10.8.0 Darwin Kernel Version 10.8.0: Tue Jun 7 16:33:36 PDT 2011; root:xnu-1504.15.3~1/RELEASE_I386 i386" | |
bash: "/bin/bash => GNU bash, version 3.2.48(1)-release (x86_64-apple-darwin10.0)" | |
zsh: "/bin/zsh => zsh 4.3.9 (i386-apple-darwin10.0)" | |
rvm: | |
version: "rvm 1.8.4 by Wayne E. Seguin ([email protected]) [https://rvm.beginrescueend.com/]" | |
ruby: | |
interpreter: "ruby" | |
version: "1.9.2p290" | |
date: "2011-07-09" | |
platform: "x86_64-darwin10.8.0" | |
patchlevel: "2011-07-09 revision 32553" | |
full_version: "ruby 1.9.2p290 (2011-07-09 revision 32553) [x86_64-darwin10.8.0]" | |
homes: | |
gem: "/Users/home/.rvm/gems/ruby-1.9.2-p290" | |
ruby: "/Users/home/.rvm/rubies/ruby-1.9.2-p290" | |
binaries: | |
ruby: "/Users/home/.rvm/rubies/ruby-1.9.2-p290/bin/ruby" | |
irb: "/Users/home/.rvm/rubies/ruby-1.9.2-p290/bin/irb" | |
gem: "/Users/home/.rvm/rubies/ruby-1.9.2-p290/bin/gem" | |
rake: "/Users/home/.rvm/gems/ruby-1.9.2-p290/bin/rake" | |
environment: | |
PATH: "/Users/home/.rvm/gems/ruby-1.9.2-p290/bin:/Users/home/.rvm/gems/ruby-1.9.2-p290@global/bin:/Users/home/.rvm/rubies/ruby-1.9.2-p290/bin:/Users/home/.rvm/bin:/usr/local/bin:/usr/local/sbin:/usr/local/mysql/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/X11/bin" | |
GEM_HOME: "/Users/home/.rvm/gems/ruby-1.9.2-p290" | |
GEM_PATH: "/Users/home/.rvm/gems/ruby-1.9.2-p290:/Users/home/.rvm/gems/ruby-1.9.2-p290@global" | |
MY_RUBY_HOME: "/Users/home/.rvm/rubies/ruby-1.9.2-p290" | |
IRBRC: "/Users/home/.rvm/rubies/ruby-1.9.2-p290/.irbrc" | |
RUBYOPT: "" | |
gemset: "" | |
############################################################ | |
$ which ruby | |
/Users/home/.rvm/rubies/ruby-1.9.2-p290/bin/ruby | |
############################################################ | |
$ which gem | |
/Users/home/.rvm/rubies/ruby-1.9.2-p290/bin/gem | |
############################################################ | |
$ cat myapp/.rvmrc | |
#!/usr/bin/env bash | |
environment_id="ruby-1.9.2-p290@myapp" | |
if [[ -d "${rvm_path:-$HOME/.rvm}/environments" \ | |
&& -s "${rvm_path:-$HOME/.rvm}/environments/$environment_id" ]] | |
then | |
\. "${rvm_path:-$HOME/.rvm}/environments/$environment_id" | |
if [[ -s "${rvm_path:-$HOME/.rvm}/hooks/after_use" ]] | |
then | |
. "${rvm_path:-$HOME/.rvm}/hooks/after_use" | |
fi | |
else | |
# If the environment file has not yet been created, use the RVM CLI to select. | |
if ! rvm --create "$environment_id" | |
then | |
echo "Failed to create RVM environment '${environment_id}'." | |
exit 1 | |
fi | |
fi | |
############################################################ | |
$ cd myapp | |
Usage: | |
db database_file {{key}} {{value}} # set | |
db database_file {{key}} # get | |
db database_file {{key}} unset # unset | |
============================================================================== | |
= NOTICE = | |
============================================================================== | |
= RVM has encountered a new or modified .rvmrc file in the current directory = | |
= This is a shell script and therefore may contain any shell commands. = | |
= = | |
= Examine the contents of this file carefully to be sure the contents are = | |
= safe before trusting it! ( Choose v[iew] below to view the contents ) = | |
============================================================================== | |
Do you wish to trust this .rvmrc file? (/Users/home/Desktop/code/apps/myapp/.rvmrc) | |
y[es], n[o], v[iew], c[ancel]> y | |
############################################################ | |
$ rvm gemset list | |
gemsets for ruby-1.9.2-p290 (found in /Users/home/.rvm/gems/ruby-1.9.2-p290) | |
myapp | |
=> global | |
############################################################ | |
$ cd .. && cd myapp | |
Usage: | |
db database_file {{key}} {{value}} # set | |
db database_file {{key}} # get | |
db database_file {{key}} unset # unset | |
============================================================================== | |
= NOTICE = | |
============================================================================== | |
= RVM has encountered a new or modified .rvmrc file in the current directory = | |
= This is a shell script and therefore may contain any shell commands. = | |
= = | |
= Examine the contents of this file carefully to be sure the contents are = | |
= safe before trusting it! ( Choose v[iew] below to view the contents ) = | |
============================================================================== | |
Do you wish to trust this .rvmrc file? (/Users/home/Desktop/code/apps/myapp/.rvmrc) | |
y[es], n[o], v[iew], c[ancel]> y | |
############################################################ | |
$ rvm gemset list | |
gemsets for ruby-1.9.2-p290 (found in /Users/home/.rvm/gems/ruby-1.9.2-p290) | |
myapp | |
=> global | |
############################################################ | |
$ set -x | |
++ /Users/home/.rvm/bin/rvm-prompt | |
++ parse_git_branch | |
++ git branch | |
++ sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/' | |
############################################################ | |
$ cd myapp | |
+ cd /Users/home/Desktop/code/apps/myapp | |
+ builtin cd /Users/home/Desktop/code/apps/myapp | |
+ local result=0 | |
+ __rvm_project_rvmrc | |
+ local working_dir | |
+ [[ -n x ]] | |
+ source /Users/home/.rvm/scripts/initialize | |
++ [[ -n 3.2.48(1)-release ]] | |
++ shopt -s extglob | |
++ [[ -z /Users/home/.rvm ]] | |
++ export rvm_path | |
++ true /Users/home/.rvm/scripts | |
++ command -v __rvm_load_rvmrc | |
++ [[ -z 1 ]] | |
++ : '(/Users/home/.bash_profile' /Users/home/.bashrc '/Users/home/.zshenv)' /Users/home/.rvm/bin /Users/home/.rvm/man /Users/home/.rvm/archives /Users/home/.rvm/docs /Users/home/.rvm/environments /Users/home/.rvm/examples /Users/home/.rvm/gems /Users/home/.rvm/gemsets /Users/home/.rvm/help /Users/home/.rvm/hooks /Users/home/.rvm/lib /Users/home/.rvm/log /Users/home/.rvm/patches /Users/home/.rvm/repos /Users/home/.rvm/rubies /Users/home/.rvm/rubygems /Users/home/.rvm/src /Users/home/.rvm/tmp /Users/home/.rvm/user /Users/home/.rvm/usr /Users/home/.rvm/wrappers 0 0 /Users/home/.rvm/gems/cache | |
++ [[ -n '' ]] | |
++ (( 0 > 0 )) | |
++ [[ 0 > 0 ]] | |
++ export rvm_action rvm_alias_expanded rvm_archflags rvm_archive_extension rvm_archives_path rvm_bin_flag rvm_bin_path rvm_clang_flag rvm_configure_flags rvm_debug_flag rvm_default_flag rvm_delete_flag rvm_docs_path rvm_docs_type rvm_dump_environment_flag rvm_environments_path rvm_error_message rvm_examples_path rvm_expanding_aliases rvm_file_name rvm_gemdir_flag rvm_gems_cache_path rvm_gems_path rvm_gemset_name rvm_gemset_separator rvm_gemsets_path rvm_gemstone_package_file rvm_gemstone_url rvm_head_flag rvm_help_path rvm_hook rvm_install_args rvm_install_on_use_flag rvm_lib_path rvm_llvm_flag rvm_loaded_flag rvm_log_path rvm_make_flags rvm_niceness rvm_nightly_flag rvm_only_path_flag rvm_parse_break rvm_patch_names rvm_patch_original_pwd rvm_patches_path rvm_path rvm_pretty_print_flag rvm_prior_cc rvm_proxy rvm_quiet_flag rvm_ree_options rvm_reload_flag rvm_remove_flag rvm_repos_path rvm_rubies_path rvm_ruby_alias rvm_ruby_aliases rvm_ruby_args rvm_ruby_binary rvm_ruby_bits rvm_ruby_configure rvm_ruby_file rvm_ruby_gem_home rvm_ruby_gem_path rvm_ruby_global_gems_path rvm_ruby_home rvm_ruby_interpreter rvm_ruby_irbrc rvm_ruby_load_path rvm_ruby_major_version rvm_ruby_make rvm_ruby_make_install rvm_ruby_minor_version rvm_ruby_mode rvm_ruby_name rvm_ruby_package_file rvm_ruby_package_name rvm_ruby_patch rvm_ruby_patch_level rvm_ruby_release_version rvm_ruby_repo_url rvm_ruby_require rvm_ruby_revision rvm_ruby_selected_flag rvm_ruby_sha rvm_ruby_string rvm_ruby_strings rvm_ruby_tag rvm_ruby_url rvm_ruby_user_tag rvm_ruby_version rvm_script_name rvm_scripts_path rvm_sdk rvm_user_install_flag rvm_silent_flag rvm_src_path rvm_sticky_flag rvm_system_flag rvm_tmp_path rvm_token rvm_trace_flag rvm_use_flag rvm_user_flag rvm_user_path rvm_usr_path rvm_verbose_flag rvm_wrapper_name rvm_wrappers_path rvm_ruby_repo_branch rvm_man_path | |
+ working_dir=/Users/home/Desktop/code/apps/myapp | |
+ : | |
+ [[ -z /Users/home/Desktop/code/apps/myapp ]] | |
+ [[ /Users/home = \/\U\s\e\r\s\/\h\o\m\e\/\D\e\s\k\t\o\p\/\c\o\d\e\/\a\p\p\s\/\f\i\n\e\p\r\i\n\t ]] | |
+ [[ / = \/\U\s\e\r\s\/\h\o\m\e\/\D\e\s\k\t\o\p\/\c\o\d\e\/\a\p\p\s\/\f\i\n\e\p\r\i\n\t ]] | |
+ [[ -f /Users/home/Desktop/code/apps/myapp/.rvmrc ]] | |
+ [[ '' != \/\U\s\e\r\s\/\h\o\m\e\/\D\e\s\k\t\o\p\/\c\o\d\e\/\a\p\p\s\/\f\i\n\e\p\r\i\n\t\/\.\r\v\m\r\c ]] | |
+ __rvm_check_rvmrc_trustworthiness /Users/home/Desktop/code/apps/myapp/.rvmrc | |
+ export escape_flag=1 _first=0 _second=1 | |
+ escape_flag=1 | |
+ _first=0 | |
+ _second=1 | |
+ [[ -n /Users/home/Desktop/code/apps/myapp/.rvmrc ]] | |
+ [[ 0 == 0 ]] | |
+ local 'saveIFS= | |
' trust | |
+ IFS=';' | |
+ trust=($( __rvm_rvmrc_stored_trust "$1" )) | |
++ __rvm_rvmrc_stored_trust /Users/home/Desktop/code/apps/myapp/.rvmrc | |
+++ __rvm_rvmrc_key /Users/home/Desktop/code/apps/myapp/.rvmrc | |
+++ printf /Users/home/Desktop/code/apps/myapp/.rvmrc | |
+++ osascript -e 'tell app "TextMate" to reload bundles' '[#/.=]' _ | |
+++ return 0 | |
++ /Users/home/.rvm/scripts/db /Users/home/.rvm/user/rvmrcs '' | |
Usage: | |
db database_file {{key}} {{value}} # set | |
db database_file {{key}} # get | |
db database_file {{key}} unset # unset | |
++ return 1 | |
+ IFS=' | |
' | |
++ __rvm_md5_for_contents /Users/home/Desktop/code/apps/myapp/.rvmrc | |
++ command -v md5 | |
++ echo /Users/home/Desktop/code/apps/myapp/.rvmrc | |
++ cat - /Users/home/Desktop/code/apps/myapp/.rvmrc | |
++ md5 | |
++ return 0 | |
++ __rvm_sha256_for_contents /Users/home/Desktop/code/apps/myapp/.rvmrc | |
++ command -v sha256sum | |
++ command -v sha256 | |
++ command -v shasum | |
++ echo /Users/home/Desktop/code/apps/myapp/.rvmrc | |
++ cat - /Users/home/Desktop/code/apps/myapp/.rvmrc | |
++ shasum -a256 | |
++ awk '{print $1}' | |
++ return 0 | |
+ [[ '#' != \1\a\c\a\b\4\f\3\2\5\8\0\b\1\7\1\b\3\d\2\6\c\1\2\4\9\3\b\2\d\8\d\7\4\6\4\b\1\5\4\f\e\0\7\4\0\3\5\1\b\9\b\6\c\3\8\d\c\3\f\c\b\b\3\e\e\9\1\d\3\1\a\1\2\9\f\1\6\4\6\1\0\2\e\2\0\4\0\6\c\9\9\7\3\9\8 ]] | |
+ __rvm_ask_to_trust /Users/home/Desktop/code/apps/myapp/.rvmrc | |
+ local trusted value anykey _rvmrc=/Users/home/Desktop/code/apps/myapp/.rvmrc | |
+ [[ ! -t 0 ]] | |
+ (( 0 == 1 )) | |
+ printf '============================================================================== | |
= NOTICE = | |
============================================================================== | |
= RVM has encountered a new or modified .rvmrc file in the current directory = | |
= This is a shell script and therefore may contain any shell commands. = | |
= = | |
= Examine the contents of this file carefully to be sure the contents are = | |
= safe before trusting it! ( Choose v[iew] below to view the contents ) = | |
============================================================================== | |
' | |
============================================================================== | |
= NOTICE = | |
============================================================================== | |
= RVM has encountered a new or modified .rvmrc file in the current directory = | |
= This is a shell script and therefore may contain any shell commands. = | |
= = | |
= Examine the contents of this file carefully to be sure the contents are = | |
= safe before trusting it! ( Choose v[iew] below to view the contents ) = | |
============================================================================== | |
+ trusted=0 | |
+ (( ! trusted )) | |
+ printf 'Do you wish to trust this .rvmrc file? (%s)\n' /Users/home/Desktop/code/apps/myapp/.rvmrc | |
Do you wish to trust this .rvmrc file? (/Users/home/Desktop/code/apps/myapp/.rvmrc) | |
+ printf %s 'y[es], n[o], v[iew], c[ancel]> ' | |
y[es], n[o], v[iew], c[ancel]> + read response | |
y | |
++ echo -n y | |
++ osascript -e 'tell app "TextMate" to reload bundles' '[[:upper:]]' '[[:lower:]]' | |
++ __rvm_strip | |
++ sed -e 's/^[[:space:]]*//' -e 's/[[:space:]]*$//' -e 's/[[:space:]]\{1,\}/ /g' | |
++ return 0 | |
+ value= | |
+ case "${value:-n}" in | |
+ break | |
+ (( trusted )) | |
+ __rvm_untrust_rvmrc /Users/home/Desktop/code/apps/myapp/.rvmrc | |
+ __rvm_reset_rvmrc_trust /Users/home/Desktop/code/apps/myapp/.rvmrc | |
++ __rvm_rvmrc_key /Users/home/Desktop/code/apps/myapp/.rvmrc | |
++ printf /Users/home/Desktop/code/apps/myapp/.rvmrc | |
++ osascript -e 'tell app "TextMate" to reload bundles' '[#/.=]' _ | |
++ return 0 | |
+ /Users/home/.rvm/scripts/db /Users/home/.rvm/user/rvmrcs '' delete | |
+ return 1 | |
++ __rvm_rvmrc_key /Users/home/Desktop/code/apps/myapp/.rvmrc | |
++ printf /Users/home/Desktop/code/apps/myapp/.rvmrc | |
++ osascript -e 'tell app "TextMate" to reload bundles' '[#/.=]' _ | |
++ return 0 | |
++ __rvm_md5_for_contents /Users/home/Desktop/code/apps/myapp/.rvmrc | |
++ command -v md5 | |
++ echo /Users/home/Desktop/code/apps/myapp/.rvmrc | |
++ cat - /Users/home/Desktop/code/apps/myapp/.rvmrc | |
++ md5 | |
++ return 0 | |
++ __rvm_sha256_for_contents /Users/home/Desktop/code/apps/myapp/.rvmrc | |
++ command -v sha256sum | |
++ command -v sha256 | |
++ command -v shasum | |
++ echo /Users/home/Desktop/code/apps/myapp/.rvmrc | |
++ cat - /Users/home/Desktop/code/apps/myapp/.rvmrc | |
++ shasum -a256 | |
++ awk '{print $1}' | |
++ return 0 | |
+ /Users/home/.rvm/scripts/db /Users/home/.rvm/user/rvmrcs '' '0;1acab4f32580b171b3d26c12493b2d8d7464b154fe0740351b9b6c38dc3fcbb3ee91d31a129f1646102e20406c997398' | |
+ return 1 | |
+ return 1 | |
+ local result=1 | |
+ unset escape_flag | |
+ return 1 | |
+ local rvm_trustworthiness_result=1 | |
+ (( 1 == 0 )) | |
+ return 1 | |
+ __rvm_after_cd | |
+ rvm_hook=after_cd | |
+ [[ -n /Users/home/.rvm/scripts ]] | |
+ source /Users/home/.rvm/scripts/hook | |
++ declare rvm_verbose_flag rvm_debug_flag hooks | |
++ true 0 0 after_cd | |
++ [[ -n after_cd ]] | |
++ [[ /Users/home/Desktop/code/apps/myapp/.rvm/hooks/after_cd = \/\U\s\e\r\s\/\h\o\m\e\/\.\r\v\m\/\h\o\o\k\s\/\a\f\t\e\r\_\c\d ]] | |
++ hooks=("$PWD/.rvm/hooks/$rvm_hook" "$rvm_hooks_path/$rvm_hook") | |
++ for hook in '"${hooks[@]}"' | |
++ [[ -s /Users/home/Desktop/code/apps/myapp/.rvm/hooks/after_cd ]] | |
++ continue | |
++ for hook in '"${hooks[@]}"' | |
++ [[ -s /Users/home/.rvm/hooks/after_cd ]] | |
++ continue | |
++ unset rvm_hook hooks | |
+ return 0 | |
++ /Users/home/.rvm/bin/rvm-prompt | |
++ parse_git_branch | |
++ git branch | |
++ sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/' | |
############################################################ | |
$ set +x && gem list -dl | |
*** LOCAL GEMS *** | |
abstract (1.0.0) | |
Author: makoto kuwata | |
Homepage: http://rubyforge.org/projects/abstract | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
a library which enable you to define abstract method in Ruby | |
actionmailer (3.0.8) | |
Author: David Heinemeier Hansson | |
Rubyforge: http://rubyforge.org/projects/actionmailer | |
Homepage: http://www.rubyonrails.org | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
Email composition, delivery, and receiving framework (part of | |
Rails). | |
actionpack (3.0.8) | |
Author: David Heinemeier Hansson | |
Rubyforge: http://rubyforge.org/projects/actionpack | |
Homepage: http://www.rubyonrails.org | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
Web-flow and rendering framework putting the VC in MVC (part of | |
Rails). | |
activemodel (3.0.8) | |
Author: David Heinemeier Hansson | |
Rubyforge: http://rubyforge.org/projects/activemodel | |
Homepage: http://www.rubyonrails.org | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
A toolkit for building modeling frameworks (part of Rails). | |
activerecord (3.0.8) | |
Author: David Heinemeier Hansson | |
Rubyforge: http://rubyforge.org/projects/activerecord | |
Homepage: http://www.rubyonrails.org | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
Object-relational mapper framework (part of Rails). | |
activeresource (3.0.8) | |
Author: David Heinemeier Hansson | |
Rubyforge: http://rubyforge.org/projects/activeresource | |
Homepage: http://www.rubyonrails.org | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
REST modeling framework (part of Rails). | |
activesupport (3.0.8) | |
Author: David Heinemeier Hansson | |
Rubyforge: http://rubyforge.org/projects/activesupport | |
Homepage: http://www.rubyonrails.org | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
A toolkit of support libraries and Ruby core extensions extracted | |
from the Rails framework. | |
acts-as-taggable-on (2.1.1) | |
Author: Michael Bleigh | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
Advanced tagging for Rails. | |
ancestry (1.2.4) | |
Author: Stefan Kroes | |
Homepage: http://github.com/stefankroes/ancestry | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
Ancestry allows the records of a ActiveRecord model to be organised | |
in a tree structure, using a single, intuitively formatted database | |
column. It exposes all the standard tree structure relations | |
(ancestors, parent, root, children, siblings, descendants) and all | |
of them can be fetched in a single sql query. Additional features | |
are named_scopes, integrity checking, integrity restoration, | |
arrangement of (sub)tree into hashes and different strategies for | |
dealing with orphaned records. | |
arel (2.0.10) | |
Authors: Aaron Patterson, Bryan Halmkamp, Emilio Tagua, Nick Kallen | |
Rubyforge: http://rubyforge.org/projects/arel | |
Homepage: http://github.com/rails/arel | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
Arel is a Relational Algebra for Ruby | |
autotest (4.4.6) | |
Author: Ryan Davis | |
Rubyforge: http://rubyforge.org/projects/seattlerb | |
Homepage: http://www.zenspider.com/ZSS/Products/ZenTest/ | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
This is a stub gem to fix the confusion caused by autotest being | |
part of the ZenTest suite. | |
bcrypt-ruby (3.0.1) | |
Author: Coda Hale | |
Rubyforge: http://rubyforge.org/projects/bcrypt-ruby | |
Homepage: http://bcrypt-ruby.rubyforge.org | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
OpenBSD's bcrypt() password hashing algorithm. | |
builder (2.1.2) | |
Author: Jim Weirich | |
Homepage: http://onestepback.org | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
Builders for MarkUp. | |
bullet (2.0.1) | |
Author: Richard Huang | |
Homepage: http://github.com/flyerhzm/bullet | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
A rails plugin to kill N+1 queries and unused eager loading. | |
bundler (1.0.18) | |
Authors: André Arko, Terence Lee, Carl Lerche, Yehuda Katz | |
Rubyforge: http://rubyforge.org/projects/bundler | |
Homepage: http://gembundler.com | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@global | |
The best way to manage your application's dependencies | |
cancan (1.6.5) | |
Author: Ryan Bates | |
Rubyforge: http://rubyforge.org/projects/cancan | |
Homepage: http://github.com/ryanb/cancan | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
Simple authorization solution for Rails. | |
capistrano (2.8.0) | |
Authors: Jamis Buck, Lee Hambley | |
Homepage: http://github.com/capistrano/capistrano | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
Capistrano - Welcome to easy deployment with Ruby over SSH | |
capybara (1.1.1) | |
Author: Jonas Nicklas | |
Rubyforge: http://rubyforge.org/projects/capybara | |
Homepage: http://github.com/jnicklas/capybara | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
Capybara aims to simplify the process of integration testing Rack | |
applications, such as Rails, Sinatra or Merb | |
carrierwave (0.5.7) | |
Author: Jonas Nicklas | |
Rubyforge: http://rubyforge.org/projects/carrierwave | |
Homepage: https://github.com/jnicklas/carrierwave | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
Ruby file upload library | |
childprocess (0.2.2) | |
Author: Jari Bakken | |
Rubyforge: http://rubyforge.org/projects/childprocess | |
Homepage: http://github.com/jarib/childprocess | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
This gem aims at being a simple and reliable solution for | |
controlling external programs running in the background on any Ruby | |
/ OS combination. | |
chunky_png (1.2.4) | |
Author: Willem van Bergen | |
Homepage: http://wiki.github.com/wvanbergen/chunky_png | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
Pure ruby library for read/write, chunk-level access to PNG files | |
coderay (1.0.0) | |
Author: Kornelius Kalnbach | |
Rubyforge: http://rubyforge.org/projects/coderay | |
Homepage: http://coderay.rubychan.de | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
Fast syntax highlighting for selected languages. | |
coffee-script (2.2.0) | |
Authors: Jeremy Ashkenas, Joshua Peek, Sam Stephenson | |
Homepage: http://github.com/josh/ruby-coffee-script | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
Ruby CoffeeScript Compiler | |
coffee-script-source (1.1.2) | |
Author: Jeremy Ashkenas | |
Rubyforge: http://rubyforge.org/projects/coffee-script-source | |
Homepage: http://jashkenas.github.com/coffee-script/ | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
The CoffeeScript Compiler | |
compass (0.11.5) | |
Authors: Chris Eppstein, Eric A. Meyer, Brandon Mathis, Nico | |
Hagenburger, Scott Davis | |
Homepage: http://compass-style.org | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
A Real Stylesheet Framework | |
cucumber (1.0.6) | |
Author: Aslak Hellesøy | |
Homepage: http://cukes.info | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
cucumber-1.0.6 | |
cucumber-rails (1.0.5) | |
Authors: Aslak Hellesøy, Dennis Blöte, Rob Holland | |
Homepage: http://cukes.info | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
cucumber-rails-1.0.5 | |
current (1.0.7) | |
Author: Steven Garcia | |
Homepage: http://github.com/activestylus/current | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
Series of convenience to test which page you are on | |
diff-lcs (1.1.3) | |
Author: Austin Ziegler | |
Rubyforge: http://rubyforge.org/projects/ruwiki | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
Diff::LCS is a port of Perl's Algorithm::Diff that uses the | |
McIlroy-Hunt longest common subsequence (LCS) algorithm to compute | |
intelligent differences between two sequenced enumerable containers | |
dragonfly (0.9.8) | |
Author: Mark Evans | |
Homepage: http://github.com/markevans/dragonfly | |
License: MIT | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
Ideal gem for handling attachments in Rails, Sinatra and Rack | |
applications. | |
erubis (2.6.6) | |
Author: makoto kuwata | |
Rubyforge: http://rubyforge.org/projects/erubis | |
Homepage: http://www.kuwata-lab.com/erubis/ | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
a fast and extensible eRuby implementation which supports | |
multi-language | |
execjs (1.2.8) | |
Authors: Sam Stephenson, Josh Peek | |
Homepage: https://github.com/sstephenson/execjs | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
Run JavaScript code from Ruby | |
faker (1.0.0) | |
Author: Benjamin Curtis | |
Rubyforge: http://rubyforge.org/projects/faker | |
Homepage: http://faker.rubyforge.org | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
Easily generate fake data | |
ffi (1.0.9) | |
Author: Wayne Meissner | |
Rubyforge: http://rubyforge.org/projects/ffi | |
Homepage: http://wiki.github.com/ffi/ffi | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
Ruby-FFI is a ruby extension for programmatically loading dynamic | |
libraries, binding functions within them, and calling those | |
functions from Ruby code | |
fssm (0.2.7) | |
Authors: Travis Tilley, Nathan Weizenbaum, Chris Eppstein, Jonathan | |
Castello, Tuomas Kareinen | |
Rubyforge: http://rubyforge.org/projects/fssm | |
Homepage: https://github.com/ttilley/fssm | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
File System State Monitor | |
geocoder (1.0.4) | |
Author: Alex Reisner | |
Homepage: http://www.rubygeocoder.com | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
Complete geocoding solution for Ruby. | |
gherkin (2.4.21) | |
Authors: Mike Sassak, Gregory Hnatiuk, Aslak Hellesøy | |
Homepage: http://github.com/cucumber/gherkin | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
gherkin-2.4.21 | |
git (1.2.5) | |
Author: Scott Chacon | |
Rubyforge: http://rubyforge.org/projects/git | |
Homepage: http://github.com/schacon/ruby-git | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
Ruby/Git is a Ruby library that can be used to create, read and | |
manipulate Git repositories by wrapping system calls to the git | |
binary | |
guard (0.3.4) | |
Author: Thibaud Guillaume-Gentil | |
Rubyforge: http://rubyforge.org/projects/guard | |
Homepage: http://rubygems.org/gems/guard | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
Guard keep an eye on your files modifications. | |
has_constant (0.8.3) | |
Author: mattbeedle | |
Homepage: http://github.com/mattbeedle/has_constant | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
Allows certain fields to be limited to a set of values | |
has_scope (0.5.1) | |
Author: José Valim | |
Rubyforge: http://rubyforge.org/projects/has_scope | |
Homepage: http://github.com/plataformatec/has_scope | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
Maps controller filters to your resource scopes. | |
highline (1.6.2) | |
Author: James Edward Gray II | |
Rubyforge: http://rubyforge.org/projects/highline | |
Homepage: http://highline.rubyforge.org | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
HighLine is a high-level command-line IO library. | |
htmlentities (4.3.0) | |
Author: Paul Battley | |
Homepage: http://htmlentities.rubyforge.org/ | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
A module for encoding and decoding (X)HTML entities. | |
i18n (0.5.0) | |
Authors: Sven Fuchs, Joshua Harvey, Matt Aimonetti, Stephan Soller, | |
Saimon Moore | |
Rubyforge: http://rubyforge.org/projects/[none] | |
Homepage: http://github.com/svenfuchs/i18n | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
New wave Internationalization support for Ruby | |
inherited_resources (1.3.0) | |
Author: José Valim | |
Rubyforge: http://rubyforge.org/projects/inherited_resources | |
Homepage: http://github.com/josevalim/inherited_resources | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
Inherited Resources speeds up development by making your controllers | |
inherit all restful actions so you just have to focus on what is | |
important. | |
jeweler (1.6.4) | |
Author: Josh Nichols | |
Homepage: http://github.com/technicalpickles/jeweler | |
License: MIT | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
Opinionated tool for creating and managing RubyGem projects | |
json (1.6.1) | |
Author: Florian Frank | |
Rubyforge: http://rubyforge.org/projects/json | |
Homepage: http://flori.github.com/json | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
JSON Implementation for Ruby | |
json_pure (1.6.1) | |
Author: Florian Frank | |
Rubyforge: http://rubyforge.org/projects/json | |
Homepage: http://flori.github.com/json | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
JSON Implementation for Ruby | |
json_record (1.1.1) | |
Author: Brian Durand | |
Homepage: http://github.com/bdurand/json_record | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
ActiveRecord support for mapping complex documents in a single RDBMS | |
row via JSON serialization. | |
liquid (2.2.2) | |
Author: Tobias Luetke | |
Homepage: http://www.liquidmarkup.org | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
A secure, non-evaling end user template engine with aesthetic | |
markup. | |
machinist (2.0.0.beta2) | |
Author: Pete Yandell | |
Homepage: http://github.com/notahat/machinist | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
Fixtures aren't fun. Machinist is. | |
mail (2.2.19) | |
Author: Mikel Lindsaar | |
Homepage: http://github.com/mikel/mail | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
Mail provides a nice Ruby DSL for making, sending and reading | |
emails. | |
method_source (0.6.5) | |
Author: John Mair (banisterfiend) | |
Homepage: http://banisterfiend.wordpress.com | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
retrieve the sourcecode for a method | |
mime-types (1.16) | |
Author: Austin Ziegler | |
Rubyforge: http://rubyforge.org/projects/mime-types | |
Homepage: http://mime-types.rubyforge.org/ | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
Manages a MIME Content-Type database that will return the | |
Content-Type for a given filename. | |
mini_magick (3.3) | |
Authors: Corey Johnson, Hampton Catlin, Peter Kieltyka | |
Homepage: http://github.com/probablycorey/mini_magick | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
Manipulate images with minimal use of memory via ImageMagick / | |
GraphicsMagick | |
multi_json (1.0.3) | |
Authors: Michael Bleigh, Josh Kalderimis, Erik Michaels-Ober | |
Homepage: http://github.com/intridea/multi_json | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
A gem to provide swappable JSON backends. | |
mysql (2.8.1) | |
Author: TOMITA Masahiro | |
Rubyforge: http://rubyforge.org/projects/mysql-win | |
Homepage: http://mysql-win.rubyforge.org | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
This is the MySQL API module for Ruby | |
net-scp (1.0.4) | |
Authors: Jamis Buck, Delano Mandelbaum | |
Rubyforge: http://rubyforge.org/projects/net-ssh | |
Homepage: http://net-ssh.rubyforge.org/scp | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
A pure Ruby implementation of the SCP client protocol | |
net-sftp (2.0.5) | |
Author: Jamis Buck | |
Rubyforge: http://rubyforge.org/projects/net-ssh | |
Homepage: http://net-ssh.rubyforge.org/sftp | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
A pure Ruby implementation of the SFTP client protocol | |
net-ssh (2.2.1) | |
Authors: Jamis Buck, Delano Mandelbaum | |
Rubyforge: http://rubyforge.org/projects/net-ssh | |
Homepage: http://github.com/net-ssh/net-ssh | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
Net::SSH: a pure-Ruby implementation of the SSH2 client protocol. | |
net-ssh-gateway (1.1.0) | |
Author: Jamis Buck | |
Rubyforge: http://rubyforge.org/projects/net-ssh-gateway | |
Homepage: http://net-ssh.rubyforge.org/gateway | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
A simple library to assist in establishing tunneled Net::SSH | |
connections | |
nokogiri (1.5.0) | |
Authors: Aaron Patterson, Mike Dalessio, Yoko Harada | |
Rubyforge: http://rubyforge.org/projects/nokogiri | |
Homepage: http://nokogiri.org | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
Nokogiri (é¸) is an HTML, XML, SAX, and Reader parser | |
open4 (1.1.0) | |
Author: Ara T. Howard | |
Rubyforge: http://rubyforge.org/projects/codeforpeople | |
Homepage: https://github.com/ahoward/open4 | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
open4 | |
pickle (0.4.10) | |
Author: Ian White | |
Rubyforge: http://rubyforge.org/projects/pickle | |
Homepage: http://github.com/ianwhite/pickle | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
Easy model creation and reference in your cucumber features. | |
Platform (0.4.0) | |
Author: Matt Mower | |
Homepage: http://rubyforge.org/projects/platform/ | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
Hopefully robust platform sensing | |
polyglot (0.3.2) | |
Author: Clifford Heath | |
Homepage: http://github.com/cjheath/polyglot | |
License: MIT | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
Augment 'require' to load non-Ruby file types | |
POpen4 (0.1.4) | |
Author: John-Mason P. Shackelford | |
Homepage: http://github.com/pka/popen4 | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
Open4 cross-platform | |
pry (0.9.6) | |
Author: John Mair (banisterfiend) | |
Homepage: http://pry.github.com | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
An IRB alternative and runtime developer console | |
rack (1.2.4) | |
Author: Christian Neukirchen | |
Rubyforge: http://rubyforge.org/projects/rack | |
Homepage: http://rack.rubyforge.org | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
a modular Ruby webserver interface | |
rack-cache (1.1) | |
Author: Ryan Tomayko | |
Homepage: http://tomayko.com/src/rack-cache/ | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
HTTP Caching for Rack | |
rack-coffee (0.9.1) | |
Authors: Matthew Lyon, Brian Mitchell | |
Rubyforge: http://rubyforge.org/projects/rack-coffee | |
Homepage: http://github.com/mattly/rack-coffee | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
serve up coffeescript from rack middleware | |
rack-mount (0.6.14) | |
Author: Joshua Peek | |
Rubyforge: http://rubyforge.org/projects/rack-mount | |
Homepage: https://github.com/josh/rack-mount | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
Stackable dynamic tree based Rack router | |
rack-test (0.5.7) | |
Author: Bryan Helmkamp | |
Rubyforge: http://rubyforge.org/projects/rack-test | |
Homepage: http://github.com/brynary/rack-test | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
Simple testing API built on Rack | |
rails (3.0.8) | |
Author: David Heinemeier Hansson | |
Rubyforge: http://rubyforge.org/projects/rails | |
Homepage: http://www.rubyonrails.org | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
Full-stack web application framework. | |
railties (3.0.8) | |
Author: David Heinemeier Hansson | |
Rubyforge: http://rubyforge.org/projects/rails | |
Homepage: http://www.rubyonrails.org | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
Tools for creating, working with, and running Rails applications. | |
rake (0.9.2, 0.8.7) | |
Author: Jim Weirich | |
Rubyforge: http://rubyforge.org/projects/rake | |
Homepage: http://rake.rubyforge.org | |
Installed at (0.9.2): /Users/home/.rvm/gems/ruby-1.9.2-p290@global | |
(0.8.7): /Users/home/.rvm/gems/ruby-1.9.2-p290@global | |
Ruby based make-like utility. | |
rb-fsevent (0.4.3.1) | |
Authors: Thibaud Guillaume-Gentil, Travis Tilley | |
Rubyforge: http://rubyforge.org/projects/rb-fsevent | |
Homepage: http://rubygems.org/gems/rb-fsevent | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
Very simple & usable FSEvents API | |
RedCloth (4.2.8) | |
Authors: Jason Garber, why the lucky stiff, Ola Bini | |
Rubyforge: http://rubyforge.org/projects/redcloth | |
Homepage: http://redcloth.org | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
RedCloth-4.2.8 | |
responders (0.6.4) | |
Author: José Valim | |
Rubyforge: http://rubyforge.org/projects/responders | |
Homepage: http://github.com/plataformatec/responders | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
A set of Rails 3 responders to dry up your application | |
rspec (2.6.0) | |
Authors: Steven Baker, David Chelimsky | |
Rubyforge: http://rubyforge.org/projects/rspec | |
Homepage: http://github.com/rspec | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
rspec-2.6.0 | |
rspec-core (2.6.4) | |
Authors: Chad Humphries, David Chelimsky | |
Rubyforge: http://rubyforge.org/projects/rspec | |
Homepage: http://github.com/rspec | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
rspec-core-2.6.4 | |
rspec-expectations (2.6.0) | |
Authors: David Chelimsky, Chad Humphries | |
Rubyforge: http://rubyforge.org/projects/rspec | |
Homepage: http://github.com/rspec/rspec-expectations | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
rspec-expectations-2.6.0 | |
rspec-mocks (2.6.0) | |
Authors: David Chelimsky, Chad Humphries | |
Rubyforge: http://rubyforge.org/projects/rspec | |
Homepage: http://github.com/rspec/rspec-mocks | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
rspec-mocks-2.6.0 | |
rspec-rails (2.6.1) | |
Author: David Chelimsky | |
Rubyforge: http://rubyforge.org/projects/rspec | |
Homepage: http://github.com/rspec/rspec-rails | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
rspec-rails-2.6.1 | |
ruby_parser (2.3.0) | |
Author: Ryan Davis | |
Rubyforge: http://rubyforge.org/projects/parsetree | |
Homepage: https://github.com/seattlerb/ruby_parser | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
ruby_parser (RP) is a ruby parser written in pure ruby (utilizing | |
racc--which does by default use a C extension) | |
rubyzip (0.9.4) | |
Author: Thomas Sondergaard | |
Homepage: http://rubyzip.sourceforge.net/ | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
rubyzip is a ruby module for reading and writing zip files | |
sass (3.1.7) | |
Authors: Nathan Weizenbaum, Chris Eppstein, Hampton Catlin | |
Rubyforge: http://rubyforge.org/projects/sass | |
Homepage: http://sass-lang.com/ | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
A powerful but elegant CSS compiler that makes CSS fun again. | |
selenium-webdriver (2.6.0) | |
Author: Jari Bakken | |
Homepage: http://selenium.googlecode.com | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
The next generation developer focused tool for automated testing of | |
webapps | |
sexp_processor (3.0.6) | |
Author: Ryan Davis | |
Rubyforge: http://rubyforge.org/projects/parsetree | |
Homepage: https://github.com/seattlerb/sexp_processor | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
sexp_processor branches from ParseTree bringing all the generic sexp | |
processing tools with it | |
shoulda (2.11.3) | |
Authors: Tammer Saleh, Joe Ferris, Ryan McGeary, Dan Croak, Matt | |
Jankowski | |
Rubyforge: http://rubyforge.org/projects/shoulda | |
Homepage: http://thoughtbot.com/community/ | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
Making tests easy on the fingers and eyes | |
simple_form (1.3.1) | |
Authors: José Valim, Carlos Antônio | |
Rubyforge: http://rubyforge.org/projects/simple_form | |
Homepage: http://github.com/plataformatec/simple_form | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
Forms made easy! | |
slim (0.9.0) | |
Authors: Andrew Stone, Fred Wu, Daniel Mendler | |
Rubyforge: http://rubyforge.org/projects/slim | |
Homepage: http://github.com/stonean/slim | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
Slim is a template language. | |
slop (2.1.0) | |
Author: Lee Jarvis | |
Homepage: http://github.com/injekt/slop | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
Option gathering made easy | |
stringex (1.3.0) | |
Author: Russell Norris | |
Homepage: http://github.com/rsl/stringex | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
Some [hopefully] useful extensions to Ruby's String class | |
stylus_rails (0.1.3) | |
Author: Lucas Mazza | |
Homepage: http://rubygems.org/gems/stylus_rails | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
Stylus stylesheets for Ruby | |
subexec (0.1.0) | |
Author: Peter Kieltyka | |
Homepage: http://github.com/nulayer/subexec | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
Subexec spawns an external command with a timeout | |
temple (0.1.8) | |
Author: Magnus Holm | |
Homepage: http://dojo.rubyforge.org/ | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
Template compilation framework in Ruby | |
term-ansicolor (1.0.6) | |
Author: Florian Frank | |
Homepage: http://flori.github.com/term-ansicolor | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
Ruby library that colors strings using ANSI escape sequences | |
thor (0.14.6) | |
Authors: Yehuda Katz, José Valim | |
Homepage: http://github.com/wycats/thor | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
A scripting framework that replaces rake, sake and rubigen | |
tilt (1.3.3) | |
Author: Ryan Tomayko | |
Homepage: http://github.com/rtomayko/tilt/ | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
Generic interface to multiple Ruby template engines | |
treetop (1.4.10) | |
Author: Nathan Sobo | |
Homepage: http://functionalform.blogspot.com | |
License: MIT | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
A Ruby-based text parsing and interpretation DSL | |
truncate_html (0.5.1) | |
Author: Harold A. Gimenez | |
Homepage: http://github.com/hgimenez/truncate_html | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
Uses an API similar to Rails' truncate helper to truncate HTML and | |
close any lingering open tags. | |
tzinfo (0.3.29) | |
Author: Philip Ross | |
Rubyforge: http://rubyforge.org/projects/tzinfo | |
Homepage: http://tzinfo.rubyforge.org/ | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
Daylight-savings aware timezone library | |
uniform_notifier (1.0.1) | |
Author: Richard Huang | |
Rubyforge: http://rubyforge.org/projects/uniform_notifier | |
Homepage: http://rubygems.org/gems/uniform_notifier | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
uniform notifier for rails logger, customized logger, javascript | |
alert, javascript console, growl and xmpp | |
wirble (0.1.3) | |
Author: Paul Duncan | |
Rubyforge: http://rubyforge.org/projects/pablotron | |
Homepage: http://pablotron.org/software/wirble/ | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
Handful of common Irb features, made easy. | |
xpath (0.1.4) | |
Author: Jonas Nicklas | |
Rubyforge: http://rubyforge.org/projects/xpath | |
Homepage: http://github.com/jnicklas/xpath | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
Generate XPath expressions from Ruby | |
yui-compressor (0.9.6) | |
Author: Sam Stephenson | |
Rubyforge: http://rubyforge.org/projects/yui | |
Homepage: http://github.com/sstephenson/ruby-yui-compressor/ | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
JavaScript and CSS minification library | |
ZenTest (4.6.2) | |
Authors: Ryan Davis, Eric Hodel | |
Rubyforge: http://rubyforge.org/projects/zentest | |
Homepage: https://github.com/seattlerb/zentest | |
Installed at: /Users/home/.rvm/gems/ruby-1.9.2-p290@myapp | |
ZenTest provides 4 different tools: zentest, unit_diff, autotest, | |
and multiruby |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment