dirty_history 0.1.3 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile.lock +2 -2
- data/README.rdoc +1 -1
- data/VERSION +1 -1
- data/dirty_history.gemspec +812 -6
- data/dirty_history/ruby/1.9.1/cache/dirty_history-0.2.0.gem +0 -0
- data/dirty_history/ruby/1.9.1/cache/rake-0.9.2.gem +0 -0
- data/dirty_history/ruby/1.9.1/cache/rcov-0.9.11.gem +0 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/.document +5 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/Gemfile +13 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/Gemfile.lock +20 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/LICENSE.txt +20 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/README.rdoc +84 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/Rakefile +53 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/VERSION +1 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history.gemspec +665 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/bin/convert_to_should_syntax +19 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/bin/jeweler +19 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/bin/rake +19 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/bin/rcov +19 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/cache/git-1.2.5.gem +0 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/cache/jeweler-1.5.2.gem +0 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/cache/rake-0.8.7.gem +0 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/cache/rcov-0.9.9.gem +0 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/cache/shoulda-2.11.3.gem +0 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/git-1.2.5/README +240 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/git-1.2.5/lib/git.rb +156 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/git-1.2.5/lib/git/author.rb +14 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/git-1.2.5/lib/git/base.rb +479 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/git-1.2.5/lib/git/branch.rb +104 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/git-1.2.5/lib/git/branches.rb +48 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/git-1.2.5/lib/git/diff.rb +146 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/git-1.2.5/lib/git/index.rb +5 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/git-1.2.5/lib/git/lib.rb +719 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/git-1.2.5/lib/git/log.rb +117 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/git-1.2.5/lib/git/object.rb +273 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/git-1.2.5/lib/git/path.rb +27 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/git-1.2.5/lib/git/remote.rb +40 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/git-1.2.5/lib/git/repository.rb +4 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/git-1.2.5/lib/git/stash.rb +27 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/git-1.2.5/lib/git/stashes.rb +44 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/git-1.2.5/lib/git/status.rb +110 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/git-1.2.5/lib/git/working_directory.rb +4 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/.document +8 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/ChangeLog.markdown +141 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/Gemfile +22 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/Gemfile.lock +59 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/LICENSE.txt +20 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/README.markdown +215 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/Rakefile +78 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/bin/jeweler +5 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/features/generator/cucumber.feature +103 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/features/generator/directory_layout.feature +86 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/features/generator/dotdocument.feature +13 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/features/generator/env_options.feature +9 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/features/generator/gemfile.feature +71 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/features/generator/git.feature +102 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/features/generator/license.feature +20 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/features/generator/rakefile.feature +156 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/features/generator/readme.feature +12 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/features/generator/test.feature +54 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/features/generator/test_helper.feature +149 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/features/placeholder.feature +5 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/features/step_definitions/debug_steps.rb +6 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/features/step_definitions/filesystem_steps.rb +70 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/features/step_definitions/generator_steps.rb +369 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/features/step_definitions/task_steps.rb +6 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/features/support/env.rb +42 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/features/tasks/build_gem.feature +9 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/features/tasks/version.feature +31 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/features/tasks/version_bumping.feature +49 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/jeweler.gemspec +282 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler.rb +177 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/commands.rb +20 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/commands/build_gem.rb +36 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/commands/check_dependencies.rb +50 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/commands/install_gem.rb +29 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/commands/release_gemspec.rb +82 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/commands/release_to_git.rb +59 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/commands/release_to_rubygems.rb +26 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/commands/validate_gemspec.rb +30 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/commands/version/base.rb +55 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/commands/version/bump_major.rb +13 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/commands/version/bump_minor.rb +12 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/commands/version/bump_patch.rb +14 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/commands/version/write.rb +12 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/commands/write_gemspec.rb +39 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/errors.rb +8 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/gemcutter_tasks.rb +8 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/gemspec_helper.rb +89 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/generator.rb +287 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/generator/application.rb +52 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/generator/bacon_mixin.rb +43 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/generator/github_mixin.rb +29 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/generator/micronaut_mixin.rb +41 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/generator/minitest_mixin.rb +42 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/generator/options.rb +162 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/generator/rdoc_mixin.rb +9 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/generator/riot_mixin.rb +42 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/generator/rspec_mixin.rb +42 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/generator/shindo_mixin.rb +44 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/generator/shoulda_mixin.rb +42 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/generator/testspec_mixin.rb +42 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/generator/testunit_mixin.rb +39 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/generator/yard_mixin.rb +14 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/rubyforge_tasks.rb +95 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/rubygems_dot_org_tasks.rb +38 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/rubygems_tasks.rb +38 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/specification.rb +117 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/tasks.rb +225 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/templates/.document +5 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/templates/.gitignore +42 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/templates/Gemfile +12 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/templates/LICENSE.txt +20 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/templates/README.rdoc +19 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/templates/Rakefile +7 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/templates/bacon/flunking.rb +7 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/templates/bacon/helper.rb +9 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/templates/bundler_setup.erb +10 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/templates/features/default.feature +9 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/templates/features/support/env.rb +10 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/templates/jeweler_tasks.erb +29 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/templates/micronaut/flunking.rb +7 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/templates/micronaut/helper.rb +18 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/templates/minitest/flunking.rb +7 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/templates/minitest/helper.rb +12 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/templates/other_tasks.erb +85 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/templates/riot/flunking.rb +11 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/templates/riot/helper.rb +4 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/templates/rspec/.rspec +1 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/templates/rspec/flunking.rb +7 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/templates/rspec/helper.rb +12 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/templates/shindo/flunking.rb +8 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/templates/shindo/helper.rb +6 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/templates/shoulda/flunking.rb +7 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/templates/shoulda/helper.rb +11 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/templates/testspec/flunking.rb +7 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/templates/testspec/helper.rb +7 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/templates/testunit/flunking.rb +7 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/templates/testunit/helper.rb +10 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/version.rb +10 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/lib/jeweler/version_helper.rb +136 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/test/fixtures/bar/VERSION.yml +4 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/test/fixtures/bar/bin/foo_the_ultimate_bin +1 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/test/fixtures/bar/hey_include_me_in_gemspec +0 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/test/fixtures/bar/lib/foo_the_ultimate_lib.rb +1 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/test/fixtures/existing-project-with-version-constant/.document +5 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/test/fixtures/existing-project-with-version-constant/.gitignore +5 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/test/fixtures/existing-project-with-version-constant/LICENSE.txt +20 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/test/fixtures/existing-project-with-version-constant/README.rdoc +7 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/test/fixtures/existing-project-with-version-constant/Rakefile +85 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/test/fixtures/existing-project-with-version-constant/existing-project-with-version.gemspec +29 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/test/fixtures/existing-project-with-version-constant/lib/existing_project_with_version.rb +0 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/test/fixtures/existing-project-with-version-constant/test/existing_project_with_version_test.rb +7 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/test/fixtures/existing-project-with-version-constant/test/test_helper.rb +10 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/test/fixtures/existing-project-with-version-plaintext/.document +5 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/test/fixtures/existing-project-with-version-plaintext/.gitignore +5 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/test/fixtures/existing-project-with-version-plaintext/LICENSE.txt +20 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/test/fixtures/existing-project-with-version-plaintext/README.rdoc +7 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/test/fixtures/existing-project-with-version-plaintext/Rakefile +84 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/test/fixtures/existing-project-with-version-plaintext/VERSION +1 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/test/fixtures/existing-project-with-version-plaintext/existing-project-with-version.gemspec +29 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/test/fixtures/existing-project-with-version-plaintext/lib/existing_project_with_version.rb +0 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/test/fixtures/existing-project-with-version-plaintext/test/existing_project_with_version_test.rb +7 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/test/fixtures/existing-project-with-version-plaintext/test/test_helper.rb +10 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/test/fixtures/existing-project-with-version-yaml/.document +5 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/test/fixtures/existing-project-with-version-yaml/.gitignore +5 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/test/fixtures/existing-project-with-version-yaml/LICENSE.txt +20 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/test/fixtures/existing-project-with-version-yaml/README.rdoc +7 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/test/fixtures/existing-project-with-version-yaml/Rakefile +84 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/test/fixtures/existing-project-with-version-yaml/VERSION.yml +4 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/test/fixtures/existing-project-with-version-yaml/bin/foo_the_ultimate_bin +0 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/test/fixtures/existing-project-with-version-yaml/existing-project-with-version.gemspec +29 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/test/fixtures/existing-project-with-version-yaml/lib/existing_project_with_version.rb +0 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/test/fixtures/existing-project-with-version-yaml/test/existing_project_with_version_test.rb +7 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/test/fixtures/existing-project-with-version-yaml/test/test_helper.rb +10 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/test/geminstaller.yml +12 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/test/jeweler/commands/test_build_gem.rb +103 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/test/jeweler/commands/test_install_gem.rb +35 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/test/jeweler/commands/test_release_to_gemcutter.rb +39 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/test/jeweler/commands/test_release_to_git.rb +208 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/test/jeweler/commands/test_release_to_github.rb +406 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/test/jeweler/commands/test_validate_gemspec.rb +27 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/test/jeweler/commands/test_write_gemspec.rb +101 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/test/jeweler/commands/version/test_base.rb +32 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/test/jeweler/commands/version/test_bump_major.rb +22 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/test/jeweler/commands/version/test_bump_minor.rb +19 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/test/jeweler/commands/version/test_bump_patch.rb +20 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/test/jeweler/commands/version/test_write.rb +22 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/test/jeweler/generator/test_application.rb +112 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/test/jeweler/generator/test_options.rb +225 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/test/jeweler/test_gemspec_helper.rb +44 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/test/jeweler/test_generator.rb +127 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/test/jeweler/test_generator_initialization.rb +164 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/test/jeweler/test_generator_mixins.rb +23 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/test/jeweler/test_specification.rb +241 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/test/jeweler/test_tasks.rb +50 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/test/jeweler/test_version_helper.rb +214 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/test/shoulda_macros/jeweler_macros.rb +35 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/test/test_helper.rb +178 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/jeweler-1.5.2/test/test_jeweler.rb +175 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/CHANGES +440 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/MIT-LICENSE +21 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/README +196 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/Rakefile +430 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/TODO +20 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/bin/rake +31 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/install.rb +88 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/lib/rake.rb +2506 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/lib/rake/alt_system.rb +108 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/lib/rake/classic_namespace.rb +8 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/lib/rake/clean.rb +33 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/lib/rake/contrib/compositepublisher.rb +24 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/lib/rake/contrib/ftptools.rb +153 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/lib/rake/contrib/publisher.rb +75 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/lib/rake/contrib/rubyforgepublisher.rb +18 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/lib/rake/contrib/sshpublisher.rb +47 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/lib/rake/contrib/sys.rb +209 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/lib/rake/gempackagetask.rb +97 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/lib/rake/loaders/makefile.rb +42 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/lib/rake/packagetask.rb +184 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/lib/rake/rake_test_loader.rb +5 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/lib/rake/rdoctask.rb +209 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/lib/rake/ruby182_test_unit_fix.rb +23 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/lib/rake/runtest.rb +23 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/lib/rake/tasklib.rb +23 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/lib/rake/testtask.rb +161 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/lib/rake/win32.rb +55 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/test/capture_stdout.rb +26 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/test/check_expansion.rb +5 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/test/check_no_expansion.rb +5 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/test/contrib/test_sys.rb +47 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/test/data/chains/Rakefile +15 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/test/data/default/Rakefile +19 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/test/data/dryrun/Rakefile +22 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/test/data/file_creation_task/Rakefile +33 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/test/data/imports/Rakefile +19 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/test/data/imports/deps.mf +1 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/test/data/multidesc/Rakefile +17 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/test/data/namespace/Rakefile +57 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/test/data/rakelib/test1.rb +3 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/test/data/rbext/rakefile.rb +3 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/test/data/sample.mf +14 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/test/data/statusreturn/Rakefile +8 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/test/data/unittest/Rakefile +1 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/test/filecreation.rb +32 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/test/functional.rb +15 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/test/in_environment.rb +30 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/test/rake_test_setup.rb +24 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/test/reqfile.rb +3 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/test/reqfile2.rb +3 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/test/session_functional.rb +339 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/test/shellcommand.rb +3 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/test/test_application.rb +675 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/test/test_clean.rb +14 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/test/test_definitions.rb +85 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/test/test_earlytime.rb +35 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/test/test_extension.rb +63 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/test/test_file_creation_task.rb +62 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/test/test_file_task.rb +143 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/test/test_filelist.rb +623 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/test/test_fileutils.rb +251 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/test/test_ftp.rb +59 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/test/test_invocation_chain.rb +81 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/test/test_makefile_loader.rb +26 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/test/test_multitask.rb +45 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/test/test_namespace.rb +55 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/test/test_package_task.rb +118 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/test/test_pathmap.rb +210 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/test/test_pseudo_status.rb +26 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/test/test_rake.rb +41 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/test/test_rdoc_task.rb +88 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/test/test_require.rb +35 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/test/test_rules.rb +349 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/test/test_task_arguments.rb +89 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/test/test_task_manager.rb +173 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/test/test_tasklib.rb +12 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/test/test_tasks.rb +374 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/test/test_test_task.rb +77 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/test/test_top_level_functions.rb +86 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.8.7/test/test_win32.rb +72 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/BLURB +111 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/LICENSE +53 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/Rakefile +103 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/THANKS +110 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/bin/rcov +522 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/editor-extensions/rcov.el +131 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/editor-extensions/rcov.vim +38 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/ext/rcovrt/1.8/callsite.c +216 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/ext/rcovrt/1.8/rcovrt.c +294 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/ext/rcovrt/1.9/callsite.c +234 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/ext/rcovrt/1.9/rcovrt.c +264 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/ext/rcovrt/Makefile +187 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/ext/rcovrt/callsite.o +0 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/ext/rcovrt/extconf.rb +21 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/ext/rcovrt/rcovrt.bundle +0 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/ext/rcovrt/rcovrt.o +0 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/lib/rcov.rb +33 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/lib/rcov/call_site_analyzer.rb +225 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/lib/rcov/code_coverage_analyzer.rb +271 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/lib/rcov/coverage_info.rb +36 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/lib/rcov/differential_analyzer.rb +116 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/lib/rcov/file_statistics.rb +355 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/lib/rcov/formatters.rb +13 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/lib/rcov/formatters/base_formatter.rb +174 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/lib/rcov/formatters/failure_report.rb +15 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/lib/rcov/formatters/full_text_report.rb +48 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/lib/rcov/formatters/html_coverage.rb +274 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/lib/rcov/formatters/html_erb_template.rb +62 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/lib/rcov/formatters/text_coverage_diff.rb +193 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/lib/rcov/formatters/text_report.rb +32 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/lib/rcov/formatters/text_summary.rb +11 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/lib/rcov/lowlevel.rb +146 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/lib/rcov/rcovtask.rb +156 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/lib/rcov/templates/detail.html.erb +64 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/lib/rcov/templates/index.html.erb +93 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/lib/rcov/templates/jquery-1.3.2.min.js +19 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/lib/rcov/templates/jquery.tablesorter.min.js +15 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/lib/rcov/templates/print.css +12 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/lib/rcov/templates/rcov.js +42 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/lib/rcov/templates/screen.css +270 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/lib/rcov/version.rb +10 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/lib/rcovrt.bundle +0 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/setup.rb +1588 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/test/assets/sample_01.rb +7 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/test/assets/sample_02.rb +5 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/test/assets/sample_03.rb +20 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/test/assets/sample_04.rb +10 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/test/assets/sample_05-new.rb +17 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/test/assets/sample_05-old.rb +13 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/test/assets/sample_05.rb +17 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/test/assets/sample_06.rb +8 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/test/call_site_analyzer_test.rb +171 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/test/code_coverage_analyzer_test.rb +220 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/test/expected_coverage/diff-gcc-all.out +7 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/test/expected_coverage/diff-gcc-diff.out +11 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/test/expected_coverage/diff-gcc-original.out +5 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/test/expected_coverage/diff-no-color.out +12 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/test/expected_coverage/diff.out +12 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/test/expected_coverage/gcc-text.out +10 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/test/expected_coverage/sample_03_rb.html +651 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/test/expected_coverage/sample_03_rb.rb +28 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/test/expected_coverage/sample_04_rb.html +641 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/test/file_statistics_test.rb +471 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/test/functional_test.rb +91 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/test/test_helper.rb +4 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.9/test/turn_off_rcovrt.rb +4 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/CONTRIBUTION_GUIDELINES.rdoc +10 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/MIT-LICENSE +22 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/README.rdoc +154 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/Rakefile +70 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/bin/convert_to_should_syntax +42 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/lib/shoulda.rb +9 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/lib/shoulda/action_controller.rb +34 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/lib/shoulda/action_controller/macros.rb +221 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/lib/shoulda/action_controller/matchers.rb +39 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/lib/shoulda/action_controller/matchers/assign_to_matcher.rb +112 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/lib/shoulda/action_controller/matchers/filter_param_matcher.rb +74 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/lib/shoulda/action_controller/matchers/redirect_to_matcher.rb +62 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/lib/shoulda/action_controller/matchers/render_template_matcher.rb +54 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/lib/shoulda/action_controller/matchers/render_with_layout_matcher.rb +99 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/lib/shoulda/action_controller/matchers/respond_with_content_type_matcher.rb +74 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/lib/shoulda/action_controller/matchers/respond_with_matcher.rb +85 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/lib/shoulda/action_controller/matchers/route_matcher.rb +93 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/lib/shoulda/action_controller/matchers/set_session_matcher.rb +98 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/lib/shoulda/action_controller/matchers/set_the_flash_matcher.rb +100 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/lib/shoulda/action_mailer.rb +13 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/lib/shoulda/action_mailer/assertions.rb +42 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/lib/shoulda/action_mailer/matchers.rb +22 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/lib/shoulda/action_mailer/matchers/have_sent_email.rb +110 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/lib/shoulda/active_record.rb +16 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/lib/shoulda/active_record/assertions.rb +69 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/lib/shoulda/active_record/helpers.rb +32 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/lib/shoulda/active_record/macros.rb +457 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/lib/shoulda/active_record/matchers.rb +42 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/lib/shoulda/active_record/matchers/allow_mass_assignment_of_matcher.rb +83 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/lib/shoulda/active_record/matchers/allow_value_matcher.rb +110 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/lib/shoulda/active_record/matchers/association_matcher.rb +226 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/lib/shoulda/active_record/matchers/ensure_inclusion_of_matcher.rb +87 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/lib/shoulda/active_record/matchers/ensure_length_of_matcher.rb +141 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/lib/shoulda/active_record/matchers/have_db_column_matcher.rb +169 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/lib/shoulda/active_record/matchers/have_db_index_matcher.rb +112 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/lib/shoulda/active_record/matchers/have_readonly_attribute_matcher.rb +59 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/lib/shoulda/active_record/matchers/validate_acceptance_of_matcher.rb +41 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/lib/shoulda/active_record/matchers/validate_format_of_matcher.rb +65 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/lib/shoulda/active_record/matchers/validate_numericality_of_matcher.rb +39 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/lib/shoulda/active_record/matchers/validate_presence_of_matcher.rb +60 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/lib/shoulda/active_record/matchers/validate_uniqueness_of_matcher.rb +148 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/lib/shoulda/active_record/matchers/validation_matcher.rb +56 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/lib/shoulda/assertions.rb +79 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/lib/shoulda/autoload_macros.rb +46 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/lib/shoulda/context.rb +433 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/lib/shoulda/helpers.rb +8 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/lib/shoulda/integrations/rspec.rb +13 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/lib/shoulda/integrations/rspec2.rb +22 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/lib/shoulda/integrations/test_unit.rb +22 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/lib/shoulda/macros.rb +161 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/lib/shoulda/private_helpers.rb +13 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/lib/shoulda/proc_extensions.rb +14 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/lib/shoulda/rails.rb +8 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/lib/shoulda/tasks.rb +3 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/lib/shoulda/tasks/list_tests.rake +29 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/lib/shoulda/tasks/yaml_to_shoulda.rake +28 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/lib/shoulda/version.rb +4 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/rails/init.rb +8 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/README +36 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/fail_macros.rb +55 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/fixtures/addresses.yml +3 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/fixtures/friendships.yml +0 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/fixtures/posts.yml +5 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/fixtures/products.yml +0 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/fixtures/taggings.yml +0 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/fixtures/tags.yml +9 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/fixtures/users.yml +6 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/functional/posts_controller_test.rb +121 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/functional/users_controller_test.rb +19 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/matchers/action_mailer/have_sent_email_test.rb +70 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/matchers/active_record/allow_mass_assignment_of_matcher_test.rb +74 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/matchers/active_record/allow_value_matcher_test.rb +64 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/matchers/active_record/association_matcher_test.rb +263 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/matchers/active_record/ensure_inclusion_of_matcher_test.rb +81 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/matchers/active_record/ensure_length_of_matcher_test.rb +158 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/matchers/active_record/have_db_column_matcher_test.rb +169 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/matchers/active_record/have_db_index_matcher_test.rb +91 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/matchers/active_record/have_readonly_attributes_matcher_test.rb +29 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/matchers/active_record/validate_acceptance_of_matcher_test.rb +44 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/matchers/active_record/validate_format_of_matcher_test.rb +39 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/matchers/active_record/validate_numericality_of_matcher_test.rb +52 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/matchers/active_record/validate_presence_of_matcher_test.rb +86 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/matchers/active_record/validate_uniqueness_of_matcher_test.rb +147 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/matchers/controller/assign_to_matcher_test.rb +45 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/matchers/controller/filter_param_matcher_test.rb +40 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/matchers/controller/redirect_to_matcher_test.rb +37 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/matchers/controller/render_template_matcher_test.rb +37 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/matchers/controller/render_with_layout_matcher_test.rb +47 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/matchers/controller/respond_with_content_type_matcher_test.rb +32 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/matchers/controller/respond_with_matcher_test.rb +96 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/matchers/controller/route_matcher_test.rb +75 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/matchers/controller/set_session_matcher_test.rb +48 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/matchers/controller/set_the_flash_matcher.rb +95 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/other/autoload_macro_test.rb +18 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/other/context_test.rb +372 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/other/convert_to_should_syntax_test.rb +63 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/other/helpers_test.rb +317 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/other/private_helpers_test.rb +32 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/other/should_test.rb +271 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_model_builder.rb +130 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_root/app/controllers/application_controller.rb +22 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_root/app/controllers/posts_controller.rb +87 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_root/app/controllers/users_controller.rb +84 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_root/app/helpers/application_helper.rb +3 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_root/app/helpers/posts_helper.rb +2 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_root/app/helpers/users_helper.rb +2 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_root/app/models/address.rb +7 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_root/app/models/flea.rb +11 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_root/app/models/friendship.rb +4 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_root/app/models/notifier.rb +8 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_root/app/models/pets/cat.rb +7 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_root/app/models/pets/dog.rb +10 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_root/app/models/post.rb +12 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_root/app/models/product.rb +12 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_root/app/models/profile.rb +2 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_root/app/models/registration.rb +2 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_root/app/models/tag.rb +8 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_root/app/models/tagging.rb +4 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_root/app/models/treat.rb +3 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_root/app/models/user.rb +32 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_root/app/views/layouts/posts.rhtml +19 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_root/app/views/layouts/users.rhtml +17 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_root/app/views/layouts/wide.html.erb +1 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_root/app/views/notifier/the_email.html.erb +1 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_root/app/views/posts/edit.rhtml +27 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_root/app/views/posts/index.rhtml +25 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_root/app/views/posts/new.rhtml +26 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_root/app/views/posts/show.rhtml +18 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_root/app/views/users/edit.rhtml +22 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_root/app/views/users/index.rhtml +22 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_root/app/views/users/new.rhtml +21 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_root/app/views/users/show.rhtml +13 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_root/config/boot.rb +110 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_root/config/database.yml +4 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_root/config/environment.rb +17 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_root/config/environments/test.rb +23 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_root/config/initializers/new_rails_defaults.rb +15 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_root/config/initializers/shoulda.rb +8 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_root/config/routes.rb +6 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_root/db/migrate/001_create_users.rb +19 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_root/db/migrate/002_create_posts.rb +13 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_root/db/migrate/003_create_taggings.rb +12 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_root/db/migrate/004_create_tags.rb +11 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_root/db/migrate/005_create_dogs.rb +12 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_root/db/migrate/006_create_addresses.rb +14 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_root/db/migrate/007_create_fleas.rb +11 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_root/db/migrate/008_create_dogs_fleas.rb +12 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_root/db/migrate/009_create_products.rb +17 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_root/db/migrate/010_create_friendships.rb +14 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_root/db/migrate/011_create_treats.rb +12 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_root/db/migrate/20090506203502_create_profiles.rb +12 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_root/db/migrate/20090506203536_create_registrations.rb +14 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_root/db/migrate/20090513104502_create_cats.rb +12 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_root/db/schema.rb +0 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_root/log/test.log +50381 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_root/public/404.html +30 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_root/public/422.html +30 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_root/public/500.html +30 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_root/script/console +3 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_root/script/generate +3 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_root/test/shoulda_macros/custom_macro.rb +6 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_root/vendor/gems/gem_with_macro-0.0.1/shoulda_macros/gem_macro.rb +6 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_root/vendor/plugins/plugin_with_macro/shoulda_macros/plugin_macro.rb +6 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails2_test_helper.rb +6 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_model_builder.rb +118 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/Gemfile +28 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/README +244 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/Rakefile +10 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/app/controllers/application_controller.rb +22 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/app/controllers/posts_controller.rb +87 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/app/controllers/users_controller.rb +82 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/app/helpers/application_helper.rb +2 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/app/models/address.rb +7 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/app/models/flea.rb +11 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/app/models/friendship.rb +4 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/app/models/notifier.rb +8 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/app/models/pets/cat.rb +7 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/app/models/pets/dog.rb +10 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/app/models/post.rb +12 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/app/models/product.rb +12 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/app/models/profile.rb +2 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/app/models/registration.rb +2 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/app/models/tag.rb +8 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/app/models/tagging.rb +4 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/app/models/treat.rb +3 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/app/models/user.rb +32 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/app/views/layouts/application.html.erb +14 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/app/views/layouts/posts.rhtml +19 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/app/views/layouts/users.rhtml +17 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/app/views/layouts/wide.html.erb +1 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/app/views/notifier/the_email.html.erb +1 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/app/views/posts/edit.rhtml +27 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/app/views/posts/index.rhtml +25 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/app/views/posts/new.rhtml +24 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/app/views/posts/show.rhtml +18 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/app/views/users/edit.rhtml +22 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/app/views/users/index.rhtml +22 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/app/views/users/new.rhtml +21 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/app/views/users/show.rhtml +13 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/config.ru +4 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/config/application.rb +46 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/config/boot.rb +6 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/config/database.yml +22 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/config/environment.rb +5 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/config/environments/development.rb +19 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/config/environments/production.rb +42 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/config/environments/test.rb +32 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/config/initializers/backtrace_silencers.rb +7 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/config/initializers/inflections.rb +10 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/config/initializers/mime_types.rb +5 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/config/initializers/secret_token.rb +7 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/config/initializers/session_store.rb +8 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/config/locales/en.yml +5 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/config/routes.rb +4 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/db/migrate/001_create_users.rb +19 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/db/migrate/002_create_posts.rb +13 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/db/migrate/003_create_taggings.rb +12 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/db/migrate/004_create_tags.rb +11 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/db/migrate/005_create_dogs.rb +12 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/db/migrate/006_create_addresses.rb +14 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/db/migrate/007_create_fleas.rb +11 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/db/migrate/008_create_dogs_fleas.rb +12 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/db/migrate/009_create_products.rb +17 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/db/migrate/010_create_friendships.rb +14 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/db/migrate/011_create_treats.rb +12 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/db/migrate/20090506203502_create_profiles.rb +12 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/db/migrate/20090506203536_create_registrations.rb +14 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/db/migrate/20090513104502_create_cats.rb +12 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/db/seeds.rb +7 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/db/test.sqlite3 +0 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/log/test.log +10834 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/public/404.html +26 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/public/422.html +26 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/public/500.html +26 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/public/favicon.ico +0 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/public/images/rails.png +0 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/public/index.html +279 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/public/javascripts/application.js +2 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/public/javascripts/controls.js +965 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/public/javascripts/dragdrop.js +974 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/public/javascripts/effects.js +1123 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/public/javascripts/prototype.js +4874 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/public/javascripts/rails.js +118 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/public/robots.txt +5 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/script/rails +9 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/test/performance/browsing_test.rb +9 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_root/test/test_helper.rb +13 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rails3_test_helper.rb +6 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/rspec_test.rb +207 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/test_helper.rb +36 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/unit/address_test.rb +10 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/unit/cat_test.rb +7 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/unit/dog_test.rb +9 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/unit/flea_test.rb +14 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/unit/friendship_test.rb +6 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/unit/post_test.rb +15 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/unit/product_test.rb +23 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/unit/tag_test.rb +11 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/unit/tagging_test.rb +6 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/test/unit/user_test.rb +46 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/specifications/git-1.2.5.gemspec +26 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/specifications/jeweler-1.5.2.gemspec +78 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/specifications/rake-0.8.7.gemspec +29 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/specifications/rcov-0.9.9.gemspec +32 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/specifications/shoulda-2.11.3.gemspec +29 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/init.rb +1 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/lib/dirty_history.rb +10 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/lib/dirty_history/dirty_history_mixin.rb +109 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/lib/dirty_history/dirty_history_record.rb +40 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/lib/generators/dirty_history/migration/migration_generator.rb +32 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/lib/generators/dirty_history/migration/templates/active_record/migration.rb +20 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/rails/init.rb +1 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/test/helper.rb +18 -0
- data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/test/test_dirty_history.rb +7 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/.gemtest +0 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/CHANGES +509 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/MIT-LICENSE +21 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/README.rdoc +200 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/RRR +9 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/Rakefile +405 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/TODO +20 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/bin/rake +32 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/install.rb +90 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake.rb +65 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/alt_system.rb +109 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/application.rb +589 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/classic_namespace.rb +9 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/clean.rb +31 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/cloneable.rb +25 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/contrib/compositepublisher.rb +21 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/contrib/ftptools.rb +150 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/contrib/publisher.rb +69 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/contrib/rubyforgepublisher.rb +16 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/contrib/sshpublisher.rb +45 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/contrib/sys.rb +191 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/default_loader.rb +10 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/dsl_definition.rb +167 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/early_time.rb +18 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/ext/core.rb +27 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/ext/module.rb +39 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/ext/string.rb +167 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/ext/time.rb +14 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/file_creation_task.rb +24 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/file_list.rb +403 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/file_task.rb +47 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/file_utils.rb +112 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/file_utils_ext.rb +142 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/gempackagetask.rb +13 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/invocation_chain.rb +51 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/invocation_exception_mixin.rb +16 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/loaders/makefile.rb +40 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/multi_task.rb +16 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/name_space.rb +25 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/packagetask.rb +185 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/pathmap.rb +1 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/pseudo_status.rb +24 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/rake_module.rb +29 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/rake_test_loader.rb +13 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/rdoctask.rb +230 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/ruby182_test_unit_fix.rb +25 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/rule_recursion_overflow_error.rb +20 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/runtest.rb +21 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/task.rb +327 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/task_argument_error.rb +7 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/task_arguments.rb +74 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/task_manager.rb +307 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/tasklib.rb +22 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/testtask.rb +191 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/version.rb +10 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/win32.rb +55 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/check_expansion.rb +5 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/check_no_expansion.rb +5 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/data/access/Rakefile +35 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/data/chains/Rakefile +15 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/data/comments/Rakefile +18 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/data/default/Rakefile +17 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/data/deprecated_import/Rakefile +1 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/data/dryrun/Rakefile +22 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/data/extra/Rakefile +1 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/data/file_creation_task/Rakefile +31 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/data/imports/Rakefile +19 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/data/imports/deps.mf +1 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/data/multidesc/Rakefile +15 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/data/namespace/Rakefile +64 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/data/rakelib/test1.rb +4 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/data/rbext/rakefile.rb +3 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/data/sample.mf +14 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/data/statusreturn/Rakefile +6 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/data/unittest/Rakefile +1 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/data/verbose/Rakefile +34 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/file_creation.rb +34 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/helper.rb +44 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/in_environment.rb +35 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/reqfile.rb +3 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/reqfile2.rb +3 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/shellcommand.rb +3 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake.rb +38 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_application.rb +364 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_application_options.rb +382 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_clean.rb +12 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_definitions.rb +80 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_directory_task.rb +55 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_dsl.rb +73 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_early_time.rb +31 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_extension.rb +59 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_file_creation_task.rb +62 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_file_list.rb +633 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_file_list_path_map.rb +8 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_file_task.rb +104 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_file_utils.rb +252 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_ftp_file.rb +59 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_functional.rb +468 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_invocation_chain.rb +52 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_makefile_loader.rb +23 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_multi_task.rb +51 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_name_space.rb +43 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_package_task.rb +78 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_path_map.rb +157 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_path_map_explode.rb +31 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_path_map_partial.rb +18 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_pseudo_status.rb +20 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_rdoc_task.rb +81 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_require.rb +35 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_rules.rb +346 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_task.rb +271 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_task_argument_parsing.rb +116 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_task_arguments.rb +86 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_task_lib.rb +9 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_task_manager.rb +145 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_task_manager_argument_resolution.rb +36 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_task_with_arguments.rb +162 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_test_task.rb +122 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_top_level_functions.rb +76 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_win32.rb +83 -0
- data/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_sys.rb +20 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/BLURB +111 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/LICENSE +53 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/Rakefile +103 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/THANKS +110 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/bin/rcov +522 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/editor-extensions/rcov.el +131 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/editor-extensions/rcov.vim +38 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/ext/rcovrt/1.8/callsite.c +216 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/ext/rcovrt/1.8/rcovrt.c +294 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/ext/rcovrt/1.9/callsite.c +234 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/ext/rcovrt/1.9/rcovrt.c +264 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/ext/rcovrt/Makefile +187 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/ext/rcovrt/callsite.o +0 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/ext/rcovrt/extconf.rb +21 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/ext/rcovrt/rcovrt.bundle +0 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/ext/rcovrt/rcovrt.o +0 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/lib/rcov.rb +33 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/lib/rcov/call_site_analyzer.rb +225 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/lib/rcov/code_coverage_analyzer.rb +284 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/lib/rcov/coverage_info.rb +36 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/lib/rcov/differential_analyzer.rb +116 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/lib/rcov/file_statistics.rb +356 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/lib/rcov/formatters.rb +13 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/lib/rcov/formatters/base_formatter.rb +174 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/lib/rcov/formatters/failure_report.rb +15 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/lib/rcov/formatters/full_text_report.rb +48 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/lib/rcov/formatters/html_coverage.rb +274 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/lib/rcov/formatters/html_erb_template.rb +62 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/lib/rcov/formatters/text_coverage_diff.rb +193 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/lib/rcov/formatters/text_report.rb +32 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/lib/rcov/formatters/text_summary.rb +11 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/lib/rcov/lowlevel.rb +146 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/lib/rcov/rcovtask.rb +156 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/lib/rcov/templates/detail.html.erb +64 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/lib/rcov/templates/index.html.erb +93 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/lib/rcov/templates/jquery-1.3.2.min.js +19 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/lib/rcov/templates/jquery.tablesorter.min.js +15 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/lib/rcov/templates/print.css +12 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/lib/rcov/templates/rcov.js +42 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/lib/rcov/templates/screen.css +270 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/lib/rcov/version.rb +10 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/lib/rcovrt.bundle +0 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/setup.rb +1588 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/test/assets/sample_01.rb +7 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/test/assets/sample_02.rb +5 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/test/assets/sample_03.rb +20 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/test/assets/sample_04.rb +10 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/test/assets/sample_05-new.rb +17 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/test/assets/sample_05-old.rb +13 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/test/assets/sample_05.rb +17 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/test/assets/sample_06.rb +8 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/test/call_site_analyzer_test.rb +171 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/test/code_coverage_analyzer_test.rb +220 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/test/expected_coverage/diff-gcc-all.out +7 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/test/expected_coverage/diff-gcc-diff.out +11 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/test/expected_coverage/diff-gcc-original.out +5 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/test/expected_coverage/diff-no-color.out +12 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/test/expected_coverage/diff.out +12 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/test/expected_coverage/gcc-text.out +10 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/test/expected_coverage/sample_03_rb.html +651 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/test/expected_coverage/sample_03_rb.rb +28 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/test/expected_coverage/sample_04_rb.html +641 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/test/file_statistics_test.rb +471 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/test/functional_test.rb +91 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/test/test_helper.rb +4 -0
- data/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/test/turn_off_rcovrt.rb +4 -0
- data/dirty_history/ruby/1.9.1/specifications/dirty_history-0.2.0.gemspec +40 -0
- data/dirty_history/ruby/1.9.1/specifications/rake-0.9.2.gemspec +41 -0
- data/dirty_history/ruby/1.9.1/specifications/rcov-0.9.11.gemspec +31 -0
- data/lib/dirty_history/dirty_history_mixin.rb +50 -22
- data/lib/dirty_history/dirty_history_record.rb +2 -1
- metadata +818 -14
@@ -0,0 +1,104 @@
|
|
1
|
+
module Git
|
2
|
+
class Branch < Path
|
3
|
+
|
4
|
+
attr_accessor :full, :remote, :name
|
5
|
+
|
6
|
+
def initialize(base, name)
|
7
|
+
@remote = nil
|
8
|
+
@full = name
|
9
|
+
@base = base
|
10
|
+
@gcommit = nil
|
11
|
+
@stashes = nil
|
12
|
+
|
13
|
+
parts = name.split('/')
|
14
|
+
if parts[1]
|
15
|
+
@remote = Git::Remote.new(@base, parts[0])
|
16
|
+
@name = parts[1]
|
17
|
+
else
|
18
|
+
@name = parts[0]
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
def gcommit
|
23
|
+
@gcommit ||= @base.gcommit(@full)
|
24
|
+
@gcommit
|
25
|
+
end
|
26
|
+
|
27
|
+
def stashes
|
28
|
+
@stashes ||= Git::Stashes.new(@base)
|
29
|
+
end
|
30
|
+
|
31
|
+
def checkout
|
32
|
+
check_if_create
|
33
|
+
@base.checkout(@full)
|
34
|
+
end
|
35
|
+
|
36
|
+
def archive(file, opts = {})
|
37
|
+
@base.lib.archive(@full, file, opts)
|
38
|
+
end
|
39
|
+
|
40
|
+
# g.branch('new_branch').in_branch do
|
41
|
+
# # create new file
|
42
|
+
# # do other stuff
|
43
|
+
# return true # auto commits and switches back
|
44
|
+
# end
|
45
|
+
def in_branch (message = 'in branch work')
|
46
|
+
old_current = @base.lib.branch_current
|
47
|
+
checkout
|
48
|
+
if yield
|
49
|
+
@base.commit_all(message)
|
50
|
+
else
|
51
|
+
@base.reset_hard
|
52
|
+
end
|
53
|
+
@base.checkout(old_current)
|
54
|
+
end
|
55
|
+
|
56
|
+
def create
|
57
|
+
check_if_create
|
58
|
+
end
|
59
|
+
|
60
|
+
def delete
|
61
|
+
@base.lib.branch_delete(@name)
|
62
|
+
end
|
63
|
+
|
64
|
+
def current
|
65
|
+
determine_current
|
66
|
+
end
|
67
|
+
|
68
|
+
def merge(branch = nil, message = nil)
|
69
|
+
if branch
|
70
|
+
in_branch do
|
71
|
+
@base.merge(branch, message)
|
72
|
+
false
|
73
|
+
end
|
74
|
+
# merge a branch into this one
|
75
|
+
else
|
76
|
+
# merge this branch into the current one
|
77
|
+
@base.merge(@name)
|
78
|
+
end
|
79
|
+
end
|
80
|
+
|
81
|
+
def update_ref(commit)
|
82
|
+
@base.lib.update_ref(@full, commit)
|
83
|
+
end
|
84
|
+
|
85
|
+
def to_a
|
86
|
+
[@full]
|
87
|
+
end
|
88
|
+
|
89
|
+
def to_s
|
90
|
+
@full
|
91
|
+
end
|
92
|
+
|
93
|
+
private
|
94
|
+
|
95
|
+
def check_if_create
|
96
|
+
@base.lib.branch_new(@name) rescue nil
|
97
|
+
end
|
98
|
+
|
99
|
+
def determine_current
|
100
|
+
@base.lib.branch_current == @name
|
101
|
+
end
|
102
|
+
|
103
|
+
end
|
104
|
+
end
|
@@ -0,0 +1,48 @@
|
|
1
|
+
module Git
|
2
|
+
|
3
|
+
# object that holds all the available branches
|
4
|
+
class Branches
|
5
|
+
include Enumerable
|
6
|
+
|
7
|
+
def initialize(base)
|
8
|
+
@branches = {}
|
9
|
+
|
10
|
+
@base = base
|
11
|
+
|
12
|
+
@base.lib.branches_all.each do |b|
|
13
|
+
@branches[b[0]] = Git::Branch.new(@base, b[0])
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
17
|
+
def local
|
18
|
+
self.select { |b| !b.remote }
|
19
|
+
end
|
20
|
+
|
21
|
+
def remote
|
22
|
+
self.select { |b| b.remote }
|
23
|
+
end
|
24
|
+
|
25
|
+
# array like methods
|
26
|
+
|
27
|
+
def size
|
28
|
+
@branches.size
|
29
|
+
end
|
30
|
+
|
31
|
+
def each(&block)
|
32
|
+
@branches.values.each(&block)
|
33
|
+
end
|
34
|
+
|
35
|
+
def [](symbol)
|
36
|
+
@branches[symbol.to_s]
|
37
|
+
end
|
38
|
+
|
39
|
+
def to_s
|
40
|
+
out = ''
|
41
|
+
@branches.each do |k, b|
|
42
|
+
out << (b.current ? '* ' : ' ') << b.to_s << "\n"
|
43
|
+
end
|
44
|
+
out
|
45
|
+
end
|
46
|
+
|
47
|
+
end
|
48
|
+
end
|
@@ -0,0 +1,146 @@
|
|
1
|
+
module Git
|
2
|
+
|
3
|
+
# object that holds the last X commits on given branch
|
4
|
+
class Diff
|
5
|
+
include Enumerable
|
6
|
+
|
7
|
+
def initialize(base, from = nil, to = nil)
|
8
|
+
@base = base
|
9
|
+
@from = from.to_s
|
10
|
+
@to = to.to_s
|
11
|
+
|
12
|
+
@path = nil
|
13
|
+
@full_diff = nil
|
14
|
+
@full_diff_files = nil
|
15
|
+
@stats = nil
|
16
|
+
end
|
17
|
+
attr_reader :from, :to
|
18
|
+
|
19
|
+
def path(path)
|
20
|
+
@path = path
|
21
|
+
return self
|
22
|
+
end
|
23
|
+
|
24
|
+
def size
|
25
|
+
cache_stats
|
26
|
+
@stats[:total][:files]
|
27
|
+
end
|
28
|
+
|
29
|
+
def lines
|
30
|
+
cache_stats
|
31
|
+
@stats[:total][:lines]
|
32
|
+
end
|
33
|
+
|
34
|
+
def deletions
|
35
|
+
cache_stats
|
36
|
+
@stats[:total][:deletions]
|
37
|
+
end
|
38
|
+
|
39
|
+
def insertions
|
40
|
+
cache_stats
|
41
|
+
@stats[:total][:insertions]
|
42
|
+
end
|
43
|
+
|
44
|
+
def stats
|
45
|
+
cache_stats
|
46
|
+
@stats
|
47
|
+
end
|
48
|
+
|
49
|
+
# if file is provided and is writable, it will write the patch into the file
|
50
|
+
def patch(file = nil)
|
51
|
+
cache_full
|
52
|
+
@full_diff
|
53
|
+
end
|
54
|
+
alias_method :to_s, :patch
|
55
|
+
|
56
|
+
# enumerable methods
|
57
|
+
|
58
|
+
def [](key)
|
59
|
+
process_full
|
60
|
+
@full_diff_files.assoc(key)[1]
|
61
|
+
end
|
62
|
+
|
63
|
+
def each(&block) # :yields: each Git::DiffFile in turn
|
64
|
+
process_full
|
65
|
+
@full_diff_files.map { |file| file[1] }.each(&block)
|
66
|
+
end
|
67
|
+
|
68
|
+
class DiffFile
|
69
|
+
attr_accessor :patch, :path, :mode, :src, :dst, :type
|
70
|
+
@base = nil
|
71
|
+
|
72
|
+
def initialize(base, hash)
|
73
|
+
@base = base
|
74
|
+
@patch = hash[:patch]
|
75
|
+
@path = hash[:path]
|
76
|
+
@mode = hash[:mode]
|
77
|
+
@src = hash[:src]
|
78
|
+
@dst = hash[:dst]
|
79
|
+
@type = hash[:type]
|
80
|
+
@binary = hash[:binary]
|
81
|
+
end
|
82
|
+
|
83
|
+
def binary?
|
84
|
+
!!@binary
|
85
|
+
end
|
86
|
+
|
87
|
+
def blob(type = :dst)
|
88
|
+
if type == :src
|
89
|
+
@base.object(@src) if @src != '0000000'
|
90
|
+
else
|
91
|
+
@base.object(@dst) if @dst != '0000000'
|
92
|
+
end
|
93
|
+
end
|
94
|
+
end
|
95
|
+
|
96
|
+
private
|
97
|
+
|
98
|
+
def cache_full
|
99
|
+
unless @full_diff
|
100
|
+
@full_diff = @base.lib.diff_full(@from, @to, {:path_limiter => @path})
|
101
|
+
end
|
102
|
+
end
|
103
|
+
|
104
|
+
def process_full
|
105
|
+
unless @full_diff_files
|
106
|
+
cache_full
|
107
|
+
@full_diff_files = process_full_diff
|
108
|
+
end
|
109
|
+
end
|
110
|
+
|
111
|
+
def cache_stats
|
112
|
+
unless @stats
|
113
|
+
@stats = @base.lib.diff_stats(@from, @to, {:path_limiter => @path})
|
114
|
+
end
|
115
|
+
end
|
116
|
+
|
117
|
+
# break up @diff_full
|
118
|
+
def process_full_diff
|
119
|
+
final = {}
|
120
|
+
current_file = nil
|
121
|
+
@full_diff.split("\n").each do |line|
|
122
|
+
if m = /diff --git a\/(.*?) b\/(.*?)/.match(line)
|
123
|
+
current_file = m[1]
|
124
|
+
final[current_file] = {:patch => line, :path => current_file,
|
125
|
+
:mode => '', :src => '', :dst => '', :type => 'modified'}
|
126
|
+
else
|
127
|
+
if m = /index (.......)\.\.(.......)( ......)*/.match(line)
|
128
|
+
final[current_file][:src] = m[1]
|
129
|
+
final[current_file][:dst] = m[2]
|
130
|
+
final[current_file][:mode] = m[3].strip if m[3]
|
131
|
+
end
|
132
|
+
if m = /(.*?) file mode (......)/.match(line)
|
133
|
+
final[current_file][:type] = m[1]
|
134
|
+
final[current_file][:mode] = m[2]
|
135
|
+
end
|
136
|
+
if m = /^Binary files /.match(line)
|
137
|
+
final[current_file][:binary] = true
|
138
|
+
end
|
139
|
+
final[current_file][:patch] << "\n" + line
|
140
|
+
end
|
141
|
+
end
|
142
|
+
final.map { |e| [e[0], DiffFile.new(@base, e[1])] }
|
143
|
+
end
|
144
|
+
|
145
|
+
end
|
146
|
+
end
|
@@ -0,0 +1,719 @@
|
|
1
|
+
require 'tempfile'
|
2
|
+
|
3
|
+
module Git
|
4
|
+
|
5
|
+
class GitExecuteError < StandardError
|
6
|
+
end
|
7
|
+
|
8
|
+
class Lib
|
9
|
+
|
10
|
+
def initialize(base = nil, logger = nil)
|
11
|
+
@git_dir = nil
|
12
|
+
@git_index_file = nil
|
13
|
+
@git_work_dir = nil
|
14
|
+
@path = nil
|
15
|
+
|
16
|
+
if base.is_a?(Git::Base)
|
17
|
+
@git_dir = base.repo.path
|
18
|
+
@git_index_file = base.index.path if base.index
|
19
|
+
@git_work_dir = base.dir.path if base.dir
|
20
|
+
elsif base.is_a?(Hash)
|
21
|
+
@git_dir = base[:repository]
|
22
|
+
@git_index_file = base[:index]
|
23
|
+
@git_work_dir = base[:working_directory]
|
24
|
+
end
|
25
|
+
@logger = logger
|
26
|
+
end
|
27
|
+
|
28
|
+
def init
|
29
|
+
command('init')
|
30
|
+
end
|
31
|
+
|
32
|
+
# tries to clone the given repo
|
33
|
+
#
|
34
|
+
# returns {:repository} (if bare)
|
35
|
+
# {:working_directory} otherwise
|
36
|
+
#
|
37
|
+
# accepts options:
|
38
|
+
# :remote:: name of remote (rather than 'origin')
|
39
|
+
# :bare:: no working directory
|
40
|
+
# :depth:: the number of commits back to pull
|
41
|
+
#
|
42
|
+
# TODO - make this work with SSH password or auth_key
|
43
|
+
#
|
44
|
+
def clone(repository, name, opts = {})
|
45
|
+
@path = opts[:path] || '.'
|
46
|
+
clone_dir = opts[:path] ? File.join(@path, name) : name
|
47
|
+
|
48
|
+
arr_opts = []
|
49
|
+
arr_opts << "--bare" if opts[:bare]
|
50
|
+
arr_opts << "-o" << opts[:remote] if opts[:remote]
|
51
|
+
arr_opts << "--depth" << opts[:depth].to_i if opts[:depth] && opts[:depth].to_i > 0
|
52
|
+
|
53
|
+
arr_opts << '--'
|
54
|
+
arr_opts << repository
|
55
|
+
arr_opts << clone_dir
|
56
|
+
|
57
|
+
command('clone', arr_opts)
|
58
|
+
|
59
|
+
opts[:bare] ? {:repository => clone_dir} : {:working_directory => clone_dir}
|
60
|
+
end
|
61
|
+
|
62
|
+
|
63
|
+
## READ COMMANDS ##
|
64
|
+
|
65
|
+
|
66
|
+
def log_commits(opts = {})
|
67
|
+
arr_opts = ['--pretty=oneline']
|
68
|
+
arr_opts << "-#{opts[:count]}" if opts[:count]
|
69
|
+
arr_opts << "--since=#{opts[:since]}" if opts[:since].is_a? String
|
70
|
+
arr_opts << "--until=#{opts[:until]}" if opts[:until].is_a? String
|
71
|
+
arr_opts << "--grep=#{opts[:grep]}" if opts[:grep].is_a? String
|
72
|
+
arr_opts << "--author=#{opts[:author]}" if opts[:author].is_a? String
|
73
|
+
arr_opts << "#{opts[:between][0].to_s}..#{opts[:between][1].to_s}" if (opts[:between] && opts[:between].size == 2)
|
74
|
+
arr_opts << opts[:object] if opts[:object].is_a? String
|
75
|
+
arr_opts << '--' << opts[:path_limiter] if opts[:path_limiter].is_a? String
|
76
|
+
|
77
|
+
command_lines('log', arr_opts, true).map { |l| l.split.first }
|
78
|
+
end
|
79
|
+
|
80
|
+
def full_log_commits(opts = {})
|
81
|
+
arr_opts = ['--pretty=raw']
|
82
|
+
arr_opts << "-#{opts[:count]}" if opts[:count]
|
83
|
+
arr_opts << "--skip=#{opts[:skip]}" if opts[:skip]
|
84
|
+
arr_opts << "--since=#{opts[:since]}" if opts[:since].is_a? String
|
85
|
+
arr_opts << "--until=#{opts[:until]}" if opts[:until].is_a? String
|
86
|
+
arr_opts << "--grep=#{opts[:grep]}" if opts[:grep].is_a? String
|
87
|
+
arr_opts << "--author=#{opts[:author]}" if opts[:author].is_a? String
|
88
|
+
arr_opts << "#{opts[:between][0].to_s}..#{opts[:between][1].to_s}" if (opts[:between] && opts[:between].size == 2)
|
89
|
+
arr_opts << opts[:object] if opts[:object].is_a? String
|
90
|
+
arr_opts << '--' << opts[:path_limiter] if opts[:path_limiter].is_a? String
|
91
|
+
|
92
|
+
full_log = command_lines('log', arr_opts, true)
|
93
|
+
process_commit_data(full_log)
|
94
|
+
end
|
95
|
+
|
96
|
+
def revparse(string)
|
97
|
+
return string if string =~ /[A-Fa-f0-9]{40}/ # passing in a sha - just no-op it
|
98
|
+
rev = ['head', 'remotes', 'tags'].map do |d|
|
99
|
+
File.join(@git_dir, 'refs', d, string)
|
100
|
+
end.find do |path|
|
101
|
+
File.file?(path)
|
102
|
+
end
|
103
|
+
return File.read(rev).chomp if rev
|
104
|
+
command('rev-parse', string)
|
105
|
+
end
|
106
|
+
|
107
|
+
def namerev(string)
|
108
|
+
command('name-rev', string).split[1]
|
109
|
+
end
|
110
|
+
|
111
|
+
def object_type(sha)
|
112
|
+
command('cat-file', ['-t', sha])
|
113
|
+
end
|
114
|
+
|
115
|
+
def object_size(sha)
|
116
|
+
command('cat-file', ['-s', sha]).to_i
|
117
|
+
end
|
118
|
+
|
119
|
+
# returns useful array of raw commit object data
|
120
|
+
def commit_data(sha)
|
121
|
+
sha = sha.to_s
|
122
|
+
cdata = command_lines('cat-file', ['commit', sha])
|
123
|
+
process_commit_data(cdata, sha, 0)
|
124
|
+
end
|
125
|
+
|
126
|
+
def process_commit_data(data, sha = nil, indent = 4)
|
127
|
+
in_message = false
|
128
|
+
|
129
|
+
if sha
|
130
|
+
hsh = {'sha' => sha, 'message' => '', 'parent' => []}
|
131
|
+
else
|
132
|
+
hsh_array = []
|
133
|
+
end
|
134
|
+
|
135
|
+
data.each do |line|
|
136
|
+
line = line.chomp
|
137
|
+
if line == ''
|
138
|
+
in_message = !in_message
|
139
|
+
elsif in_message
|
140
|
+
hsh['message'] << line[indent..-1] << "\n"
|
141
|
+
else
|
142
|
+
data = line.split
|
143
|
+
key = data.shift
|
144
|
+
value = data.join(' ')
|
145
|
+
if key == 'commit'
|
146
|
+
sha = value
|
147
|
+
hsh_array << hsh if hsh
|
148
|
+
hsh = {'sha' => sha, 'message' => '', 'parent' => []}
|
149
|
+
end
|
150
|
+
if key == 'parent'
|
151
|
+
hsh[key] << value
|
152
|
+
else
|
153
|
+
hsh[key] = value
|
154
|
+
end
|
155
|
+
end
|
156
|
+
end
|
157
|
+
|
158
|
+
if hsh_array
|
159
|
+
hsh_array << hsh if hsh
|
160
|
+
hsh_array
|
161
|
+
else
|
162
|
+
hsh
|
163
|
+
end
|
164
|
+
end
|
165
|
+
|
166
|
+
def object_contents(sha, &block)
|
167
|
+
command('cat-file', ['-p', sha], &block)
|
168
|
+
end
|
169
|
+
|
170
|
+
def ls_tree(sha)
|
171
|
+
data = {'blob' => {}, 'tree' => {}}
|
172
|
+
|
173
|
+
command_lines('ls-tree', sha).each do |line|
|
174
|
+
(info, filenm) = line.split("\t")
|
175
|
+
(mode, type, sha) = info.split
|
176
|
+
data[type][filenm] = {:mode => mode, :sha => sha}
|
177
|
+
end
|
178
|
+
|
179
|
+
data
|
180
|
+
end
|
181
|
+
|
182
|
+
def mv(file1, file2)
|
183
|
+
command_lines('mv', ['--', file1, file2])
|
184
|
+
end
|
185
|
+
|
186
|
+
def full_tree(sha)
|
187
|
+
command_lines('ls-tree', ['-r', sha])
|
188
|
+
end
|
189
|
+
|
190
|
+
def tree_depth(sha)
|
191
|
+
full_tree(sha).size
|
192
|
+
end
|
193
|
+
|
194
|
+
def change_head_branch(branch_name)
|
195
|
+
command('symbolic-ref', ['HEAD', "refs/heads/#{branch_name}"])
|
196
|
+
end
|
197
|
+
|
198
|
+
def branches_all
|
199
|
+
arr = []
|
200
|
+
command_lines('branch', '-a').each do |b|
|
201
|
+
current = (b[0, 2] == '* ')
|
202
|
+
arr << [b.gsub('* ', '').strip, current]
|
203
|
+
end
|
204
|
+
arr
|
205
|
+
end
|
206
|
+
|
207
|
+
def list_files(ref_dir)
|
208
|
+
dir = File.join(@git_dir, 'refs', ref_dir)
|
209
|
+
files = []
|
210
|
+
Dir.chdir(dir) { files = Dir.glob('**/*').select { |f| File.file?(f) } } rescue nil
|
211
|
+
files
|
212
|
+
end
|
213
|
+
|
214
|
+
def branch_current
|
215
|
+
branches_all.select { |b| b[1] }.first[0] rescue nil
|
216
|
+
end
|
217
|
+
|
218
|
+
|
219
|
+
# returns hash
|
220
|
+
# [tree-ish] = [[line_no, match], [line_no, match2]]
|
221
|
+
# [tree-ish] = [[line_no, match], [line_no, match2]]
|
222
|
+
def grep(string, opts = {})
|
223
|
+
opts[:object] ||= 'HEAD'
|
224
|
+
|
225
|
+
grep_opts = ['-n']
|
226
|
+
grep_opts << '-i' if opts[:ignore_case]
|
227
|
+
grep_opts << '-v' if opts[:invert_match]
|
228
|
+
grep_opts << '-e'
|
229
|
+
grep_opts << string
|
230
|
+
grep_opts << opts[:object] if opts[:object].is_a?(String)
|
231
|
+
grep_opts << '--' << opts[:path_limiter] if opts[:path_limiter].is_a? String
|
232
|
+
|
233
|
+
hsh = {}
|
234
|
+
command_lines('grep', grep_opts).each do |line|
|
235
|
+
if m = /(.*)\:(\d+)\:(.*)/.match(line)
|
236
|
+
hsh[m[1]] ||= []
|
237
|
+
hsh[m[1]] << [m[2].to_i, m[3]]
|
238
|
+
end
|
239
|
+
end
|
240
|
+
hsh
|
241
|
+
end
|
242
|
+
|
243
|
+
def diff_full(obj1 = 'HEAD', obj2 = nil, opts = {})
|
244
|
+
diff_opts = ['-p']
|
245
|
+
diff_opts << obj1
|
246
|
+
diff_opts << obj2 if obj2.is_a?(String)
|
247
|
+
diff_opts << '--' << opts[:path_limiter] if opts[:path_limiter].is_a? String
|
248
|
+
|
249
|
+
command('diff', diff_opts)
|
250
|
+
end
|
251
|
+
|
252
|
+
def diff_stats(obj1 = 'HEAD', obj2 = nil, opts = {})
|
253
|
+
diff_opts = ['--numstat']
|
254
|
+
diff_opts << obj1
|
255
|
+
diff_opts << obj2 if obj2.is_a?(String)
|
256
|
+
diff_opts << '--' << opts[:path_limiter] if opts[:path_limiter].is_a? String
|
257
|
+
|
258
|
+
hsh = {:total => {:insertions => 0, :deletions => 0, :lines => 0, :files => 0}, :files => {}}
|
259
|
+
|
260
|
+
command_lines('diff', diff_opts).each do |file|
|
261
|
+
(insertions, deletions, filename) = file.split("\t")
|
262
|
+
hsh[:total][:insertions] += insertions.to_i
|
263
|
+
hsh[:total][:deletions] += deletions.to_i
|
264
|
+
hsh[:total][:lines] = (hsh[:total][:deletions] + hsh[:total][:insertions])
|
265
|
+
hsh[:total][:files] += 1
|
266
|
+
hsh[:files][filename] = {:insertions => insertions.to_i, :deletions => deletions.to_i}
|
267
|
+
end
|
268
|
+
|
269
|
+
hsh
|
270
|
+
end
|
271
|
+
|
272
|
+
# compares the index and the working directory
|
273
|
+
def diff_files
|
274
|
+
hsh = {}
|
275
|
+
command_lines('diff-files').each do |line|
|
276
|
+
(info, file) = line.split("\t")
|
277
|
+
(mode_src, mode_dest, sha_src, sha_dest, type) = info.split
|
278
|
+
hsh[file] = {:path => file, :mode_file => mode_src.to_s[1, 7], :mode_index => mode_dest,
|
279
|
+
:sha_file => sha_src, :sha_index => sha_dest, :type => type}
|
280
|
+
end
|
281
|
+
hsh
|
282
|
+
end
|
283
|
+
|
284
|
+
# compares the index and the repository
|
285
|
+
def diff_index(treeish)
|
286
|
+
hsh = {}
|
287
|
+
command_lines('diff-index', treeish).each do |line|
|
288
|
+
(info, file) = line.split("\t")
|
289
|
+
(mode_src, mode_dest, sha_src, sha_dest, type) = info.split
|
290
|
+
hsh[file] = {:path => file, :mode_repo => mode_src.to_s[1, 7], :mode_index => mode_dest,
|
291
|
+
:sha_repo => sha_src, :sha_index => sha_dest, :type => type}
|
292
|
+
end
|
293
|
+
hsh
|
294
|
+
end
|
295
|
+
|
296
|
+
def ls_files(location=nil)
|
297
|
+
hsh = {}
|
298
|
+
command_lines('ls-files', ['--stage', location]).each do |line|
|
299
|
+
(info, file) = line.split("\t")
|
300
|
+
(mode, sha, stage) = info.split
|
301
|
+
file = eval(file) if file =~ /^\".*\"$/ # This takes care of quoted strings returned from git
|
302
|
+
hsh[file] = {:path => file, :mode_index => mode, :sha_index => sha, :stage => stage}
|
303
|
+
end
|
304
|
+
hsh
|
305
|
+
end
|
306
|
+
|
307
|
+
|
308
|
+
def ignored_files
|
309
|
+
command_lines('ls-files', ['--others', '-i', '--exclude-standard'])
|
310
|
+
end
|
311
|
+
|
312
|
+
|
313
|
+
def config_remote(name)
|
314
|
+
hsh = {}
|
315
|
+
config_list.each do |key, value|
|
316
|
+
if /remote.#{name}/.match(key)
|
317
|
+
hsh[key.gsub("remote.#{name}.", '')] = value
|
318
|
+
end
|
319
|
+
end
|
320
|
+
hsh
|
321
|
+
end
|
322
|
+
|
323
|
+
def config_get(name)
|
324
|
+
do_get = lambda do
|
325
|
+
command('config', ['--get', name])
|
326
|
+
end
|
327
|
+
|
328
|
+
if @git_dir
|
329
|
+
Dir.chdir(@git_dir, &do_get)
|
330
|
+
else
|
331
|
+
build_list.call
|
332
|
+
end
|
333
|
+
end
|
334
|
+
|
335
|
+
def global_config_get(name)
|
336
|
+
command('config', ['--global', '--get', name], false)
|
337
|
+
end
|
338
|
+
|
339
|
+
def config_list
|
340
|
+
build_list = lambda do |path|
|
341
|
+
parse_config_list command_lines('config', ['--list'])
|
342
|
+
end
|
343
|
+
|
344
|
+
if @git_dir
|
345
|
+
Dir.chdir(@git_dir, &build_list)
|
346
|
+
else
|
347
|
+
build_list.call
|
348
|
+
end
|
349
|
+
end
|
350
|
+
|
351
|
+
def global_config_list
|
352
|
+
parse_config_list command_lines('config', ['--global', '--list'], false)
|
353
|
+
end
|
354
|
+
|
355
|
+
def parse_config_list(lines)
|
356
|
+
hsh = {}
|
357
|
+
lines.each do |line|
|
358
|
+
(key, *values) = line.split('=')
|
359
|
+
hsh[key] = values.join('=')
|
360
|
+
end
|
361
|
+
hsh
|
362
|
+
end
|
363
|
+
|
364
|
+
def parse_config(file)
|
365
|
+
hsh = {}
|
366
|
+
parse_config_list command_lines('config', ['--list', '--file', file], false)
|
367
|
+
#hsh = {}
|
368
|
+
#file = File.expand_path(file)
|
369
|
+
#if File.file?(file)
|
370
|
+
# current_section = nil
|
371
|
+
# File.readlines(file).each do |line|
|
372
|
+
# if m = /\[(\w+)\]/.match(line)
|
373
|
+
# current_section = m[1]
|
374
|
+
# elsif m = /\[(\w+?) "(.*?)"\]/.match(line)
|
375
|
+
# current_section = "#{m[1]}.#{m[2]}"
|
376
|
+
# elsif m = /(\w+?) = (.*)/.match(line)
|
377
|
+
# key = "#{current_section}.#{m[1]}"
|
378
|
+
# hsh[key] = m[2]
|
379
|
+
# end
|
380
|
+
# end
|
381
|
+
#end
|
382
|
+
#hsh
|
383
|
+
end
|
384
|
+
|
385
|
+
## WRITE COMMANDS ##
|
386
|
+
|
387
|
+
def config_set(name, value)
|
388
|
+
command('config', [name, value])
|
389
|
+
end
|
390
|
+
|
391
|
+
def global_config_set(name, value)
|
392
|
+
command('config', ['--global', name, value], false)
|
393
|
+
end
|
394
|
+
|
395
|
+
def add(path = '.')
|
396
|
+
arr_opts = ['--']
|
397
|
+
if path.is_a?(Array)
|
398
|
+
arr_opts += path
|
399
|
+
else
|
400
|
+
arr_opts << path
|
401
|
+
end
|
402
|
+
command('add', arr_opts)
|
403
|
+
end
|
404
|
+
|
405
|
+
def remove(path = '.', opts = {})
|
406
|
+
arr_opts = ['-f'] # overrides the up-to-date check by default
|
407
|
+
arr_opts << ['-r'] if opts[:recursive]
|
408
|
+
arr_opts << '--'
|
409
|
+
if path.is_a?(Array)
|
410
|
+
arr_opts += path
|
411
|
+
else
|
412
|
+
arr_opts << path
|
413
|
+
end
|
414
|
+
|
415
|
+
command('rm', arr_opts)
|
416
|
+
end
|
417
|
+
|
418
|
+
def commit(message, opts = {})
|
419
|
+
arr_opts = ['-m', message]
|
420
|
+
arr_opts << '-a' if opts[:add_all]
|
421
|
+
arr_opts << '--allow-empty' if opts[:allow_empty]
|
422
|
+
arr_opts << "--author" << opts[:author] if opts[:author]
|
423
|
+
command('commit', arr_opts)
|
424
|
+
end
|
425
|
+
|
426
|
+
def reset(commit, opts = {})
|
427
|
+
arr_opts = []
|
428
|
+
arr_opts << '--hard' if opts[:hard]
|
429
|
+
arr_opts << commit if commit
|
430
|
+
command('reset', arr_opts)
|
431
|
+
end
|
432
|
+
|
433
|
+
def apply(patch_file)
|
434
|
+
arr_opts = []
|
435
|
+
arr_opts << '--' << patch_file if patch_file
|
436
|
+
command('apply', arr_opts)
|
437
|
+
end
|
438
|
+
|
439
|
+
def apply_mail(patch_file)
|
440
|
+
arr_opts = []
|
441
|
+
arr_opts << '--' << patch_file if patch_file
|
442
|
+
command('am', arr_opts)
|
443
|
+
end
|
444
|
+
|
445
|
+
def stashes_all
|
446
|
+
arr = []
|
447
|
+
filename = File.join(@git_dir, 'logs/refs/stash')
|
448
|
+
if File.exist?(filename)
|
449
|
+
File.open(filename).each_with_index { |line, i|
|
450
|
+
m = line.match(/:(.*)$/)
|
451
|
+
arr << [i, m[1].strip]
|
452
|
+
}
|
453
|
+
end
|
454
|
+
arr
|
455
|
+
end
|
456
|
+
|
457
|
+
def stash_save(message)
|
458
|
+
output = command('stash save', ['--', message])
|
459
|
+
output =~ /HEAD is now at/
|
460
|
+
end
|
461
|
+
|
462
|
+
def stash_apply(id = nil)
|
463
|
+
if id
|
464
|
+
command('stash apply', [id])
|
465
|
+
else
|
466
|
+
command('stash apply')
|
467
|
+
end
|
468
|
+
end
|
469
|
+
|
470
|
+
def stash_clear
|
471
|
+
command('stash clear')
|
472
|
+
end
|
473
|
+
|
474
|
+
def stash_list
|
475
|
+
command('stash list')
|
476
|
+
end
|
477
|
+
|
478
|
+
def branch_new(branch)
|
479
|
+
command('branch', branch)
|
480
|
+
end
|
481
|
+
|
482
|
+
def branch_delete(branch)
|
483
|
+
command('branch', ['-D', branch])
|
484
|
+
end
|
485
|
+
|
486
|
+
def checkout(branch, opts = {})
|
487
|
+
arr_opts = []
|
488
|
+
arr_opts << '-f' if opts[:force]
|
489
|
+
arr_opts << '-b' << opts[:new_branch] if opts[:new_branch]
|
490
|
+
arr_opts << branch
|
491
|
+
|
492
|
+
command('checkout', arr_opts)
|
493
|
+
end
|
494
|
+
|
495
|
+
def checkout_file(version, file)
|
496
|
+
arr_opts = []
|
497
|
+
arr_opts << version
|
498
|
+
arr_opts << file
|
499
|
+
command('checkout', arr_opts)
|
500
|
+
end
|
501
|
+
|
502
|
+
def merge(branch, message = nil)
|
503
|
+
arr_opts = []
|
504
|
+
arr_opts << '-m' << message if message
|
505
|
+
arr_opts += [branch]
|
506
|
+
command('merge', arr_opts)
|
507
|
+
end
|
508
|
+
|
509
|
+
def unmerged
|
510
|
+
unmerged = []
|
511
|
+
command_lines('diff', ["--cached"]).each do |line|
|
512
|
+
unmerged << $1 if line =~ /^\* Unmerged path (.*)/
|
513
|
+
end
|
514
|
+
unmerged
|
515
|
+
end
|
516
|
+
|
517
|
+
def conflicts # :yields: file, your, their
|
518
|
+
self.unmerged.each do |f|
|
519
|
+
your = Tempfile.new("YOUR-#{File.basename(f)}").path
|
520
|
+
command('show', ":2:#{f}", true, "> #{escape your}")
|
521
|
+
|
522
|
+
their = Tempfile.new("THEIR-#{File.basename(f)}").path
|
523
|
+
command('show', ":3:#{f}", true, "> #{escape their}")
|
524
|
+
yield(f, your, their)
|
525
|
+
end
|
526
|
+
end
|
527
|
+
|
528
|
+
def remote_add(name, url, opts = {})
|
529
|
+
arr_opts = ['add']
|
530
|
+
arr_opts << '-f' if opts[:with_fetch]
|
531
|
+
arr_opts << '--'
|
532
|
+
arr_opts << name
|
533
|
+
arr_opts << url
|
534
|
+
|
535
|
+
command('remote', arr_opts)
|
536
|
+
end
|
537
|
+
|
538
|
+
# this is documented as such, but seems broken for some reason
|
539
|
+
# i'll try to get around it some other way later
|
540
|
+
def remote_remove(name)
|
541
|
+
command('remote', ['rm', '--', name])
|
542
|
+
end
|
543
|
+
|
544
|
+
def remotes
|
545
|
+
command_lines('remote')
|
546
|
+
end
|
547
|
+
|
548
|
+
def tags
|
549
|
+
command_lines('tag')
|
550
|
+
end
|
551
|
+
|
552
|
+
def tag(tag)
|
553
|
+
command('tag', tag)
|
554
|
+
end
|
555
|
+
|
556
|
+
|
557
|
+
def fetch(remote)
|
558
|
+
command('fetch', remote)
|
559
|
+
end
|
560
|
+
|
561
|
+
def push(remote, branch = 'master', tags = false)
|
562
|
+
command('push', [remote, branch])
|
563
|
+
command('push', ['--tags', remote]) if tags
|
564
|
+
end
|
565
|
+
|
566
|
+
def tag_sha(tag_name)
|
567
|
+
head = File.join(@git_dir, 'refs', 'tags', tag_name)
|
568
|
+
return File.read(head).chomp if File.exists?(head)
|
569
|
+
|
570
|
+
command('show-ref', ['--tags', '-s', tag_name])
|
571
|
+
end
|
572
|
+
|
573
|
+
def repack
|
574
|
+
command('repack', ['-a', '-d'])
|
575
|
+
end
|
576
|
+
|
577
|
+
def gc
|
578
|
+
command('gc', ['--prune', '--aggressive', '--auto'])
|
579
|
+
end
|
580
|
+
|
581
|
+
# reads a tree into the current index file
|
582
|
+
def read_tree(treeish, opts = {})
|
583
|
+
arr_opts = []
|
584
|
+
arr_opts << "--prefix=#{opts[:prefix]}" if opts[:prefix]
|
585
|
+
arr_opts += [treeish]
|
586
|
+
command('read-tree', arr_opts)
|
587
|
+
end
|
588
|
+
|
589
|
+
def write_tree
|
590
|
+
command('write-tree')
|
591
|
+
end
|
592
|
+
|
593
|
+
def commit_tree(tree, opts = {})
|
594
|
+
opts[:message] ||= "commit tree #{tree}"
|
595
|
+
t = Tempfile.new('commit-message')
|
596
|
+
t.write(opts[:message])
|
597
|
+
t.close
|
598
|
+
|
599
|
+
arr_opts = []
|
600
|
+
arr_opts << tree
|
601
|
+
arr_opts << '-p' << opts[:parent] if opts[:parent]
|
602
|
+
arr_opts += [opts[:parents]].map { |p| ['-p', p] }.flatten if opts[:parents]
|
603
|
+
command('commit-tree', arr_opts, true, "< #{escape t.path}")
|
604
|
+
end
|
605
|
+
|
606
|
+
def update_ref(branch, commit)
|
607
|
+
command('update-ref', [branch, commit])
|
608
|
+
end
|
609
|
+
|
610
|
+
def checkout_index(opts = {})
|
611
|
+
arr_opts = []
|
612
|
+
arr_opts << "--prefix=#{opts[:prefix]}" if opts[:prefix]
|
613
|
+
arr_opts << "--force" if opts[:force]
|
614
|
+
arr_opts << "--all" if opts[:all]
|
615
|
+
arr_opts << '--' << opts[:path_limiter] if opts[:path_limiter].is_a? String
|
616
|
+
|
617
|
+
command('checkout-index', arr_opts)
|
618
|
+
end
|
619
|
+
|
620
|
+
# creates an archive file
|
621
|
+
#
|
622
|
+
# options
|
623
|
+
# :format (zip, tar)
|
624
|
+
# :prefix
|
625
|
+
# :remote
|
626
|
+
# :path
|
627
|
+
def archive(sha, file = nil, opts = {})
|
628
|
+
opts[:format] ||= 'zip'
|
629
|
+
|
630
|
+
if opts[:format] == 'tgz'
|
631
|
+
opts[:format] = 'tar'
|
632
|
+
opts[:add_gzip] = true
|
633
|
+
end
|
634
|
+
|
635
|
+
file ||= Tempfile.new('archive').path
|
636
|
+
|
637
|
+
arr_opts = []
|
638
|
+
arr_opts << "--format=#{opts[:format]}" if opts[:format]
|
639
|
+
arr_opts << "--prefix=#{opts[:prefix]}" if opts[:prefix]
|
640
|
+
arr_opts << "--remote=#{opts[:remote]}" if opts[:remote]
|
641
|
+
arr_opts << sha
|
642
|
+
arr_opts << '--' << opts[:path] if opts[:path]
|
643
|
+
command('archive', arr_opts, true, (opts[:add_gzip] ? '| gzip' : '') + " > #{escape file}")
|
644
|
+
return file
|
645
|
+
end
|
646
|
+
|
647
|
+
# returns the current version of git, as an Array of Fixnums.
|
648
|
+
def current_command_version
|
649
|
+
output = command('version', [], false)
|
650
|
+
version = output[/\d+\.\d+(\.\d+)+/]
|
651
|
+
version.split('.').collect {|i| i.to_i}
|
652
|
+
end
|
653
|
+
|
654
|
+
def required_command_version
|
655
|
+
[1, 6, 0, 0]
|
656
|
+
end
|
657
|
+
|
658
|
+
def meets_required_version?
|
659
|
+
current_version = self.current_command_version
|
660
|
+
required_version = self.required_command_version
|
661
|
+
|
662
|
+
return current_version[0] >= required_version[0] &&
|
663
|
+
current_version[1] >= required_version[1] &&
|
664
|
+
(current_version[2] ? current_version[2] >= required_version[2] : true) &&
|
665
|
+
(current_version[3] ? current_version[3] >= required_version[3] : true)
|
666
|
+
end
|
667
|
+
|
668
|
+
|
669
|
+
private
|
670
|
+
|
671
|
+
def command_lines(cmd, opts = [], chdir = true, redirect = '')
|
672
|
+
command(cmd, opts, chdir).split("\n")
|
673
|
+
end
|
674
|
+
|
675
|
+
def command(cmd, opts = [], chdir = true, redirect = '', &block)
|
676
|
+
ENV['GIT_DIR'] = @git_dir
|
677
|
+
ENV['GIT_INDEX_FILE'] = @git_index_file
|
678
|
+
ENV['GIT_WORK_TREE'] = @git_work_dir
|
679
|
+
path = @git_work_dir || @git_dir || @path
|
680
|
+
|
681
|
+
opts = [opts].flatten.map {|s| escape(s) }.join(' ')
|
682
|
+
git_cmd = "git #{cmd} #{opts} #{redirect} 2>&1"
|
683
|
+
|
684
|
+
out = nil
|
685
|
+
if chdir && (Dir.getwd != path)
|
686
|
+
Dir.chdir(path) { out = run_command(git_cmd, &block) }
|
687
|
+
else
|
688
|
+
out = run_command(git_cmd, &block)
|
689
|
+
end
|
690
|
+
|
691
|
+
if @logger
|
692
|
+
@logger.info(git_cmd)
|
693
|
+
@logger.debug(out)
|
694
|
+
end
|
695
|
+
|
696
|
+
if $?.exitstatus > 0
|
697
|
+
if $?.exitstatus == 1 && out == ''
|
698
|
+
return ''
|
699
|
+
end
|
700
|
+
raise Git::GitExecuteError.new(git_cmd + ':' + out.to_s)
|
701
|
+
end
|
702
|
+
out
|
703
|
+
end
|
704
|
+
|
705
|
+
def run_command(git_cmd, &block)
|
706
|
+
if block_given?
|
707
|
+
IO.popen(git_cmd, &block)
|
708
|
+
else
|
709
|
+
`#{git_cmd}`.chomp
|
710
|
+
end
|
711
|
+
end
|
712
|
+
|
713
|
+
def escape(s)
|
714
|
+
escaped = s.to_s.gsub('\'', '\'\\\'\'')
|
715
|
+
%Q{"#{escaped}"}
|
716
|
+
end
|
717
|
+
|
718
|
+
end
|
719
|
+
end
|