dirty_history 0.2.0 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2273) hide show
  1. data/Gemfile +4 -2
  2. data/Gemfile.lock +23 -4
  3. data/README.rdoc +9 -3
  4. data/Rakefile +2 -1
  5. data/VERSION +1 -1
  6. data/dirty_history-0.2.0.gem +0 -0
  7. data/dirty_history.gemspec +2266 -11
  8. data/dirty_history/ruby/1.9.1/cache/activemodel-3.1.1.gem +0 -0
  9. data/dirty_history/ruby/1.9.1/cache/activerecord-3.1.1.gem +0 -0
  10. data/dirty_history/ruby/1.9.1/cache/activesupport-3.1.1.gem +0 -0
  11. data/dirty_history/ruby/1.9.1/cache/arel-2.2.1.gem +0 -0
  12. data/dirty_history/ruby/1.9.1/cache/builder-3.0.0.gem +0 -0
  13. data/dirty_history/ruby/1.9.1/cache/dirty_history-0.2.0.gem +0 -0
  14. data/dirty_history/ruby/1.9.1/cache/i18n-0.6.0.gem +0 -0
  15. data/dirty_history/ruby/1.9.1/cache/jeweler-1.6.4.gem +0 -0
  16. data/dirty_history/ruby/1.9.1/cache/multi_json-1.0.3.gem +0 -0
  17. data/dirty_history/ruby/1.9.1/cache/rails3_acts_as_paranoid-0.1.1.gem +0 -0
  18. data/dirty_history/ruby/1.9.1/cache/tzinfo-0.3.30.gem +0 -0
  19. data/dirty_history/ruby/1.9.1/gems/activemodel-3.1.1/CHANGELOG +110 -0
  20. data/dirty_history/ruby/1.9.1/gems/activemodel-3.1.1/MIT-LICENSE +21 -0
  21. data/dirty_history/ruby/1.9.1/gems/activemodel-3.1.1/README.rdoc +211 -0
  22. data/dirty_history/ruby/1.9.1/gems/activemodel-3.1.1/lib/active_model.rb +61 -0
  23. data/dirty_history/ruby/1.9.1/gems/activemodel-3.1.1/lib/active_model/attribute_methods.rb +433 -0
  24. data/dirty_history/ruby/1.9.1/gems/activemodel-3.1.1/lib/active_model/callbacks.rb +134 -0
  25. data/dirty_history/ruby/1.9.1/gems/activemodel-3.1.1/lib/active_model/conversion.rb +49 -0
  26. data/dirty_history/ruby/1.9.1/gems/activemodel-3.1.1/lib/active_model/dirty.rb +167 -0
  27. data/dirty_history/ruby/1.9.1/gems/activemodel-3.1.1/lib/active_model/errors.rb +322 -0
  28. data/dirty_history/ruby/1.9.1/gems/activemodel-3.1.1/lib/active_model/lint.rb +114 -0
  29. data/dirty_history/ruby/1.9.1/gems/activemodel-3.1.1/lib/active_model/locale/en.yml +27 -0
  30. data/dirty_history/ruby/1.9.1/gems/activemodel-3.1.1/lib/active_model/mass_assignment_security.rb +216 -0
  31. data/dirty_history/ruby/1.9.1/gems/activemodel-3.1.1/lib/active_model/mass_assignment_security/permission_set.rb +40 -0
  32. data/dirty_history/ruby/1.9.1/gems/activemodel-3.1.1/lib/active_model/mass_assignment_security/sanitizer.rb +23 -0
  33. data/dirty_history/ruby/1.9.1/gems/activemodel-3.1.1/lib/active_model/naming.rb +142 -0
  34. data/dirty_history/ruby/1.9.1/gems/activemodel-3.1.1/lib/active_model/observer_array.rb +147 -0
  35. data/dirty_history/ruby/1.9.1/gems/activemodel-3.1.1/lib/active_model/observing.rb +253 -0
  36. data/dirty_history/ruby/1.9.1/gems/activemodel-3.1.1/lib/active_model/railtie.rb +2 -0
  37. data/dirty_history/ruby/1.9.1/gems/activemodel-3.1.1/lib/active_model/secure_password.rb +74 -0
  38. data/dirty_history/ruby/1.9.1/gems/activemodel-3.1.1/lib/active_model/serialization.rb +88 -0
  39. data/dirty_history/ruby/1.9.1/gems/activemodel-3.1.1/lib/active_model/serializers/json.rb +102 -0
  40. data/dirty_history/ruby/1.9.1/gems/activemodel-3.1.1/lib/active_model/serializers/xml.rb +171 -0
  41. data/dirty_history/ruby/1.9.1/gems/activemodel-3.1.1/lib/active_model/test_case.rb +16 -0
  42. data/dirty_history/ruby/1.9.1/gems/activemodel-3.1.1/lib/active_model/translation.rb +58 -0
  43. data/dirty_history/ruby/1.9.1/gems/activemodel-3.1.1/lib/active_model/validations.rb +221 -0
  44. data/dirty_history/ruby/1.9.1/gems/activemodel-3.1.1/lib/active_model/validations/acceptance.rb +66 -0
  45. data/dirty_history/ruby/1.9.1/gems/activemodel-3.1.1/lib/active_model/validations/callbacks.rb +57 -0
  46. data/dirty_history/ruby/1.9.1/gems/activemodel-3.1.1/lib/active_model/validations/confirmation.rb +66 -0
  47. data/dirty_history/ruby/1.9.1/gems/activemodel-3.1.1/lib/active_model/validations/exclusion.rb +67 -0
  48. data/dirty_history/ruby/1.9.1/gems/activemodel-3.1.1/lib/active_model/validations/format.rb +92 -0
  49. data/dirty_history/ruby/1.9.1/gems/activemodel-3.1.1/lib/active_model/validations/inclusion.rb +67 -0
  50. data/dirty_history/ruby/1.9.1/gems/activemodel-3.1.1/lib/active_model/validations/length.rb +106 -0
  51. data/dirty_history/ruby/1.9.1/gems/activemodel-3.1.1/lib/active_model/validations/numericality.rb +128 -0
  52. data/dirty_history/ruby/1.9.1/gems/activemodel-3.1.1/lib/active_model/validations/presence.rb +44 -0
  53. data/dirty_history/ruby/1.9.1/gems/activemodel-3.1.1/lib/active_model/validations/validates.rb +126 -0
  54. data/dirty_history/ruby/1.9.1/gems/activemodel-3.1.1/lib/active_model/validations/with.rb +143 -0
  55. data/dirty_history/ruby/1.9.1/gems/activemodel-3.1.1/lib/active_model/validator.rb +184 -0
  56. data/dirty_history/ruby/1.9.1/gems/activemodel-3.1.1/lib/active_model/version.rb +10 -0
  57. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/CHANGELOG +6546 -0
  58. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/README.rdoc +222 -0
  59. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/examples/associations.png +0 -0
  60. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/examples/performance.rb +158 -0
  61. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/examples/simple.rb +14 -0
  62. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record.rb +121 -0
  63. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/aggregations.rb +254 -0
  64. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/associations.rb +1591 -0
  65. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/associations/alias_tracker.rb +79 -0
  66. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/associations/association.rb +279 -0
  67. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/associations/association_scope.rb +131 -0
  68. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/associations/belongs_to_association.rb +79 -0
  69. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/associations/belongs_to_polymorphic_association.rb +34 -0
  70. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/associations/builder/association.rb +53 -0
  71. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/associations/builder/belongs_to.rb +85 -0
  72. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/associations/builder/collection_association.rb +75 -0
  73. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/associations/builder/has_and_belongs_to_many.rb +57 -0
  74. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/associations/builder/has_many.rb +65 -0
  75. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/associations/builder/has_one.rb +63 -0
  76. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/associations/builder/singular_association.rb +45 -0
  77. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/associations/collection_association.rb +536 -0
  78. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/associations/collection_proxy.rb +160 -0
  79. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/associations/has_and_belongs_to_many_association.rb +58 -0
  80. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/associations/has_many_association.rb +104 -0
  81. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/associations/has_many_through_association.rb +151 -0
  82. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/associations/has_one_association.rb +73 -0
  83. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/associations/has_one_through_association.rb +36 -0
  84. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/associations/join_dependency.rb +214 -0
  85. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/associations/join_dependency/join_association.rb +154 -0
  86. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/associations/join_dependency/join_base.rb +24 -0
  87. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/associations/join_dependency/join_part.rb +78 -0
  88. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/associations/join_helper.rb +55 -0
  89. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/associations/preloader.rb +177 -0
  90. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/associations/preloader/association.rb +127 -0
  91. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/associations/preloader/belongs_to.rb +17 -0
  92. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/associations/preloader/collection_association.rb +24 -0
  93. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/associations/preloader/has_and_belongs_to_many.rb +60 -0
  94. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/associations/preloader/has_many.rb +17 -0
  95. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/associations/preloader/has_many_through.rb +15 -0
  96. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/associations/preloader/has_one.rb +23 -0
  97. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/associations/preloader/has_one_through.rb +9 -0
  98. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/associations/preloader/singular_association.rb +21 -0
  99. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/associations/preloader/through_association.rb +67 -0
  100. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/associations/singular_association.rb +64 -0
  101. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/associations/through_association.rb +83 -0
  102. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/attribute_methods.rb +74 -0
  103. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/attribute_methods/before_type_cast.rb +31 -0
  104. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/attribute_methods/dirty.rb +101 -0
  105. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/attribute_methods/primary_key.rb +74 -0
  106. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/attribute_methods/query.rb +39 -0
  107. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/attribute_methods/read.rb +146 -0
  108. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/attribute_methods/time_zone_conversion.rb +67 -0
  109. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/attribute_methods/write.rb +44 -0
  110. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/autosave_association.rb +407 -0
  111. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/base.rb +2190 -0
  112. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/callbacks.rb +275 -0
  113. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/coders/yaml_column.rb +41 -0
  114. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/connection_adapters/abstract/connection_pool.rb +486 -0
  115. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/connection_adapters/abstract/connection_specification.rb +127 -0
  116. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/connection_adapters/abstract/database_limits.rb +58 -0
  117. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/connection_adapters/abstract/database_statements.rb +415 -0
  118. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/connection_adapters/abstract/query_cache.rb +82 -0
  119. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/connection_adapters/abstract/quoting.rb +112 -0
  120. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/connection_adapters/abstract/schema_definitions.rb +482 -0
  121. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/connection_adapters/abstract/schema_statements.rb +577 -0
  122. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/connection_adapters/abstract_adapter.rb +260 -0
  123. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/connection_adapters/column.rb +270 -0
  124. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/connection_adapters/mysql2_adapter.rb +716 -0
  125. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/connection_adapters/mysql_adapter.rb +972 -0
  126. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/connection_adapters/postgresql_adapter.rb +1127 -0
  127. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/connection_adapters/sqlite3_adapter.rb +59 -0
  128. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/connection_adapters/sqlite_adapter.rb +545 -0
  129. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/connection_adapters/statement_pool.rb +40 -0
  130. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/counter_cache.rb +118 -0
  131. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/dynamic_finder_match.rb +56 -0
  132. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/dynamic_scope_match.rb +23 -0
  133. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/errors.rb +185 -0
  134. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/fixtures.rb +951 -0
  135. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/identity_map.rb +157 -0
  136. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/locale/en.yml +40 -0
  137. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/locking/optimistic.rb +178 -0
  138. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/locking/pessimistic.rb +55 -0
  139. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/log_subscriber.rb +68 -0
  140. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/migration.rb +748 -0
  141. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/migration/command_recorder.rb +105 -0
  142. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/named_scope.rb +200 -0
  143. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/nested_attributes.rb +468 -0
  144. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/observer.rb +121 -0
  145. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/persistence.rb +330 -0
  146. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/query_cache.rb +72 -0
  147. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/railtie.rb +123 -0
  148. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/railties/console_sandbox.rb +6 -0
  149. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/railties/controller_runtime.rb +47 -0
  150. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/railties/databases.rake +563 -0
  151. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/railties/jdbcmysql_error.rb +16 -0
  152. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/reflection.rb +542 -0
  153. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/relation.rb +490 -0
  154. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/relation/batches.rb +87 -0
  155. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/relation/calculations.rb +333 -0
  156. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/relation/finder_methods.rb +397 -0
  157. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/relation/predicate_builder.rb +56 -0
  158. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/relation/query_methods.rb +351 -0
  159. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/relation/spawn_methods.rb +139 -0
  160. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/result.rb +34 -0
  161. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/schema.rb +58 -0
  162. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/schema_dumper.rb +201 -0
  163. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/serialization.rb +60 -0
  164. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/serializers/xml_serializer.rb +244 -0
  165. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/session_store.rb +358 -0
  166. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/test_case.rb +69 -0
  167. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/timestamp.rb +100 -0
  168. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/transactions.rb +360 -0
  169. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/validations.rb +83 -0
  170. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/validations/associated.rb +42 -0
  171. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/validations/uniqueness.rb +180 -0
  172. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/version.rb +10 -0
  173. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/rails/generators/active_record.rb +25 -0
  174. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/rails/generators/active_record/migration.rb +15 -0
  175. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/rails/generators/active_record/migration/migration_generator.rb +25 -0
  176. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/rails/generators/active_record/migration/templates/migration.rb +25 -0
  177. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/rails/generators/active_record/model/model_generator.rb +39 -0
  178. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/rails/generators/active_record/model/templates/migration.rb +17 -0
  179. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/rails/generators/active_record/model/templates/model.rb +7 -0
  180. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/rails/generators/active_record/model/templates/module.rb +7 -0
  181. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/rails/generators/active_record/observer/observer_generator.rb +15 -0
  182. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/rails/generators/active_record/observer/templates/observer.rb +4 -0
  183. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/rails/generators/active_record/session_migration/session_migration_generator.rb +25 -0
  184. data/dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/rails/generators/active_record/session_migration/templates/migration.rb +16 -0
  185. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/CHANGELOG +1548 -0
  186. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/README.rdoc +33 -0
  187. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support.rb +82 -0
  188. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/all.rb +3 -0
  189. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/backtrace_cleaner.rb +99 -0
  190. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/base64.rb +42 -0
  191. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/basic_object.rb +21 -0
  192. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/benchmarkable.rb +60 -0
  193. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/buffered_logger.rb +137 -0
  194. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/builder.rb +6 -0
  195. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/cache.rb +635 -0
  196. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/cache/compressed_mem_cache_store.rb +13 -0
  197. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/cache/file_store.rb +189 -0
  198. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/cache/mem_cache_store.rb +198 -0
  199. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/cache/memory_store.rb +159 -0
  200. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/cache/strategy/local_cache.rb +169 -0
  201. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/cache/synchronized_memory_store.rb +11 -0
  202. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/callbacks.rb +621 -0
  203. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/concern.rb +134 -0
  204. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/configurable.rb +90 -0
  205. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext.rb +3 -0
  206. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/array.rb +7 -0
  207. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/array/access.rb +46 -0
  208. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/array/conversions.rb +164 -0
  209. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/array/extract_options.rb +29 -0
  210. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/array/grouping.rb +100 -0
  211. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/array/random_access.rb +30 -0
  212. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/array/uniq_by.rb +16 -0
  213. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/array/wrap.rb +48 -0
  214. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/benchmark.rb +7 -0
  215. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/big_decimal.rb +1 -0
  216. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/big_decimal/conversions.rb +45 -0
  217. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/class.rb +5 -0
  218. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/class/attribute.rb +115 -0
  219. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/class/attribute_accessors.rb +79 -0
  220. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/class/delegating_attributes.rb +44 -0
  221. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/class/inheritable_attributes.rb +178 -0
  222. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/class/subclasses.rb +36 -0
  223. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/date/acts_like.rb +8 -0
  224. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/date/calculations.rb +253 -0
  225. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/date/conversions.rb +106 -0
  226. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/date/freeze.rb +31 -0
  227. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/date/zones.rb +14 -0
  228. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/date_time/acts_like.rb +13 -0
  229. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/date_time/calculations.rb +132 -0
  230. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/date_time/conversions.rb +103 -0
  231. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/date_time/zones.rb +21 -0
  232. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/enumerable.rb +117 -0
  233. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/exception.rb +3 -0
  234. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/file.rb +2 -0
  235. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/file/atomic.rb +41 -0
  236. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/file/path.rb +5 -0
  237. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/float.rb +1 -0
  238. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/float/rounding.rb +19 -0
  239. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/hash.rb +9 -0
  240. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/hash/conversions.rb +157 -0
  241. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/hash/deep_dup.rb +11 -0
  242. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/hash/deep_merge.rb +16 -0
  243. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/hash/diff.rb +13 -0
  244. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/hash/except.rb +23 -0
  245. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/hash/indifferent_access.rb +24 -0
  246. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/hash/keys.rb +47 -0
  247. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/hash/reverse_merge.rb +23 -0
  248. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/hash/slice.rb +40 -0
  249. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/integer.rb +3 -0
  250. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/integer/inflections.rb +17 -0
  251. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/integer/multiple.rb +6 -0
  252. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/integer/time.rb +39 -0
  253. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/kernel.rb +5 -0
  254. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/kernel/agnostics.rb +11 -0
  255. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/kernel/debugger.rb +16 -0
  256. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/kernel/reporting.rb +93 -0
  257. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/kernel/requires.rb +28 -0
  258. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/kernel/singleton_class.rb +13 -0
  259. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/load_error.rb +23 -0
  260. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/logger.rb +81 -0
  261. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/module.rb +12 -0
  262. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/module/aliasing.rb +70 -0
  263. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/module/anonymous.rb +24 -0
  264. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/module/attr_accessor_with_default.rb +31 -0
  265. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/module/attr_internal.rb +39 -0
  266. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/module/attribute_accessors.rb +60 -0
  267. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/module/delegation.rb +142 -0
  268. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/module/deprecation.rb +9 -0
  269. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/module/introspection.rb +88 -0
  270. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/module/method_names.rb +14 -0
  271. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/module/reachable.rb +10 -0
  272. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/module/remove_method.rb +16 -0
  273. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/module/synchronization.rb +43 -0
  274. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/name_error.rb +18 -0
  275. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/numeric.rb +2 -0
  276. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/numeric/bytes.rb +44 -0
  277. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/numeric/time.rb +79 -0
  278. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/object.rb +13 -0
  279. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/object/acts_like.rb +10 -0
  280. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/object/blank.rb +109 -0
  281. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/object/conversions.rb +4 -0
  282. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/object/duplicable.rb +106 -0
  283. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/object/inclusion.rb +15 -0
  284. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/object/instance_variables.rb +33 -0
  285. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/object/to_json.rb +19 -0
  286. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/object/to_param.rb +55 -0
  287. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/object/to_query.rb +27 -0
  288. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/object/try.rb +53 -0
  289. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/object/with_options.rb +43 -0
  290. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/proc.rb +14 -0
  291. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/process.rb +1 -0
  292. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/process/daemon.rb +23 -0
  293. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/range.rb +5 -0
  294. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/range/blockless_step.rb +29 -0
  295. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/range/conversions.rb +21 -0
  296. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/range/cover.rb +3 -0
  297. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/range/include_range.rb +21 -0
  298. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/range/overlaps.rb +8 -0
  299. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/regexp.rb +5 -0
  300. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/rexml.rb +46 -0
  301. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/string.rb +14 -0
  302. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/string/access.rb +99 -0
  303. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/string/behavior.rb +6 -0
  304. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/string/conversions.rb +54 -0
  305. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/string/encoding.rb +11 -0
  306. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/string/exclude.rb +6 -0
  307. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/string/filters.rb +49 -0
  308. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/string/inflections.rb +164 -0
  309. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/string/inquiry.rb +13 -0
  310. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/string/interpolation.rb +2 -0
  311. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/string/multibyte.rb +72 -0
  312. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/string/output_safety.rb +165 -0
  313. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/string/starts_ends_with.rb +4 -0
  314. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/string/strip.rb +26 -0
  315. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/string/xchar.rb +18 -0
  316. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/time/acts_like.rb +8 -0
  317. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/time/calculations.rb +290 -0
  318. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/time/conversions.rb +85 -0
  319. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/time/marshal.rb +57 -0
  320. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/time/publicize_conversion_methods.rb +10 -0
  321. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/time/zones.rb +86 -0
  322. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/core_ext/uri.rb +30 -0
  323. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/dependencies.rb +704 -0
  324. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/dependencies/autoload.rb +50 -0
  325. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/deprecation.rb +18 -0
  326. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/deprecation/behaviors.rb +49 -0
  327. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/deprecation/method_wrappers.rb +29 -0
  328. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/deprecation/proxy_wrappers.rb +81 -0
  329. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/deprecation/reporting.rb +65 -0
  330. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/descendants_tracker.rb +45 -0
  331. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/duration.rb +110 -0
  332. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/file_update_checker.rb +36 -0
  333. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/file_watcher.rb +36 -0
  334. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/gzip.rb +30 -0
  335. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/hash_with_indifferent_access.rb +164 -0
  336. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/i18n.rb +9 -0
  337. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/i18n_railtie.rb +97 -0
  338. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/inflections.rb +61 -0
  339. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/inflector.rb +7 -0
  340. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/inflector/inflections.rb +211 -0
  341. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/inflector/methods.rb +153 -0
  342. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/inflector/transliterate.rb +98 -0
  343. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/json.rb +2 -0
  344. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/json/decoding.rb +65 -0
  345. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/json/encoding.rb +287 -0
  346. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/json/variable.rb +9 -0
  347. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/lazy_load_hooks.rb +46 -0
  348. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/locale/en.yml +36 -0
  349. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/log_subscriber.rb +122 -0
  350. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/log_subscriber/test_helper.rb +101 -0
  351. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/memoizable.rb +105 -0
  352. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/message_encryptor.rb +71 -0
  353. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/message_verifier.rb +62 -0
  354. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/multibyte.rb +44 -0
  355. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/multibyte/chars.rb +476 -0
  356. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/multibyte/exceptions.rb +8 -0
  357. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/multibyte/unicode.rb +393 -0
  358. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/multibyte/utils.rb +60 -0
  359. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/notifications.rb +77 -0
  360. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/notifications/fanout.rb +61 -0
  361. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/notifications/instrumenter.rb +54 -0
  362. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/option_merger.rb +25 -0
  363. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/ordered_hash.rb +218 -0
  364. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/ordered_options.rb +61 -0
  365. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/railtie.rb +59 -0
  366. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/rescuable.rb +115 -0
  367. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/ruby/shim.rb +22 -0
  368. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/secure_random.rb +6 -0
  369. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/string_inquirer.rb +21 -0
  370. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/test_case.rb +34 -0
  371. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/testing/assertions.rb +97 -0
  372. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/testing/declarative.rb +40 -0
  373. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/testing/deprecation.rb +55 -0
  374. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/testing/isolation.rb +157 -0
  375. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/testing/mochaing.rb +7 -0
  376. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/testing/pending.rb +52 -0
  377. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/testing/performance.rb +317 -0
  378. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/testing/performance/jruby.rb +115 -0
  379. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/testing/performance/rubinius.rb +113 -0
  380. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/testing/performance/ruby.rb +152 -0
  381. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/testing/performance/ruby/mri.rb +57 -0
  382. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/testing/performance/ruby/yarv.rb +57 -0
  383. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/testing/setup_and_teardown.rb +111 -0
  384. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/time.rb +35 -0
  385. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/time/autoload.rb +5 -0
  386. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/time_with_zone.rb +351 -0
  387. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/values/time_zone.rb +397 -0
  388. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/values/unicode_tables.dat +0 -0
  389. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/version.rb +10 -0
  390. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/whiny_nil.rb +60 -0
  391. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/xml_mini.rb +167 -0
  392. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/xml_mini/jdom.rb +175 -0
  393. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/xml_mini/libxml.rb +80 -0
  394. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/xml_mini/libxmlsax.rb +86 -0
  395. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/xml_mini/nokogiri.rb +84 -0
  396. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/xml_mini/nokogirisax.rb +88 -0
  397. data/dirty_history/ruby/1.9.1/gems/activesupport-3.1.1/lib/active_support/xml_mini/rexml.rb +130 -0
  398. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/.autotest +26 -0
  399. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/.gemtest +0 -0
  400. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/.travis.yml +13 -0
  401. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/Gemfile +4 -0
  402. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/History.txt +205 -0
  403. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/MIT-LICENSE.txt +20 -0
  404. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/Manifest.txt +119 -0
  405. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/README.markdown +118 -0
  406. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/Rakefile +18 -0
  407. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/arel.gemspec +40 -0
  408. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel.rb +47 -0
  409. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/alias_predication.rb +7 -0
  410. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/attributes.rb +20 -0
  411. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/attributes/attribute.rb +27 -0
  412. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/compatibility/wheres.rb +33 -0
  413. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/crud.rb +72 -0
  414. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/delete_manager.rb +18 -0
  415. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/deprecated.rb +4 -0
  416. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/expression.rb +5 -0
  417. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/expressions.rb +23 -0
  418. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/factory_methods.rb +43 -0
  419. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/insert_manager.rb +38 -0
  420. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/math.rb +19 -0
  421. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/nodes.rb +46 -0
  422. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/nodes/and.rb +23 -0
  423. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/nodes/ascending.rb +23 -0
  424. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/nodes/binary.rb +40 -0
  425. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/nodes/count.rb +10 -0
  426. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/nodes/delete_statement.rb +19 -0
  427. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/nodes/descending.rb +23 -0
  428. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/nodes/equality.rb +9 -0
  429. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/nodes/false.rb +6 -0
  430. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/nodes/function.rb +30 -0
  431. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/nodes/in.rb +6 -0
  432. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/nodes/infix_operation.rb +44 -0
  433. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/nodes/inner_join.rb +6 -0
  434. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/nodes/insert_statement.rb +19 -0
  435. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/nodes/join_source.rb +18 -0
  436. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/nodes/named_function.rb +12 -0
  437. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/nodes/node.rb +46 -0
  438. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/nodes/ordering.rb +6 -0
  439. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/nodes/outer_join.rb +6 -0
  440. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/nodes/select_core.rb +40 -0
  441. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/nodes/select_statement.rb +24 -0
  442. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/nodes/sql_literal.rb +10 -0
  443. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/nodes/string_join.rb +9 -0
  444. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/nodes/table_alias.rb +17 -0
  445. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/nodes/terminal.rb +6 -0
  446. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/nodes/true.rb +6 -0
  447. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/nodes/unary.rb +29 -0
  448. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/nodes/unqualified_column.rb +20 -0
  449. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/nodes/update_statement.rb +23 -0
  450. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/nodes/values.rb +14 -0
  451. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/nodes/with.rb +10 -0
  452. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/order_predications.rb +13 -0
  453. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/predications.rb +164 -0
  454. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/relation.rb +6 -0
  455. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/select_manager.rb +301 -0
  456. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/sql/engine.rb +10 -0
  457. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/sql_literal.rb +4 -0
  458. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/table.rb +147 -0
  459. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/tree_manager.rb +39 -0
  460. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/update_manager.rb +57 -0
  461. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/visitors.rb +42 -0
  462. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/visitors/depth_first.rb +166 -0
  463. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/visitors/dot.rb +246 -0
  464. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/visitors/ibm_db.rb +12 -0
  465. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/visitors/informix.rb +33 -0
  466. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/visitors/join_sql.rb +19 -0
  467. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/visitors/mssql.rb +73 -0
  468. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/visitors/mysql.rb +60 -0
  469. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/visitors/oracle.rb +128 -0
  470. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/visitors/order_clauses.rb +11 -0
  471. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/visitors/postgresql.rb +22 -0
  472. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/visitors/sqlite.rb +11 -0
  473. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/visitors/to_sql.rb +435 -0
  474. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/visitors/visitor.rb +31 -0
  475. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/visitors/where_sql.rb +9 -0
  476. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/attributes/test_attribute.rb +664 -0
  477. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/helper.rb +13 -0
  478. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/nodes/test_as.rb +22 -0
  479. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/nodes/test_ascending.rb +34 -0
  480. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/nodes/test_bin.rb +23 -0
  481. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/nodes/test_count.rb +27 -0
  482. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/nodes/test_delete_statement.rb +14 -0
  483. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/nodes/test_descending.rb +34 -0
  484. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/nodes/test_equality.rb +74 -0
  485. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/nodes/test_infix_operation.rb +30 -0
  486. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/nodes/test_insert_statement.rb +18 -0
  487. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/nodes/test_named_function.rb +30 -0
  488. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/nodes/test_node.rb +38 -0
  489. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/nodes/test_not.rb +17 -0
  490. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/nodes/test_or.rb +22 -0
  491. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/nodes/test_select_core.rb +31 -0
  492. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/nodes/test_select_statement.rb +13 -0
  493. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/nodes/test_sql_literal.rb +51 -0
  494. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/nodes/test_sum.rb +12 -0
  495. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/nodes/test_update_statement.rb +18 -0
  496. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/support/fake_record.rb +109 -0
  497. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/test_activerecord_compat.rb +18 -0
  498. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/test_attributes.rb +54 -0
  499. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/test_crud.rb +63 -0
  500. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/test_delete_manager.rb +42 -0
  501. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/test_factory_methods.rb +44 -0
  502. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/test_insert_manager.rb +144 -0
  503. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/test_select_manager.rb +968 -0
  504. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/test_table.rb +184 -0
  505. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/test_update_manager.rb +115 -0
  506. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/visitors/test_depth_first.rb +230 -0
  507. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/visitors/test_dot.rb +76 -0
  508. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/visitors/test_ibm_db.rb +27 -0
  509. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/visitors/test_informix.rb +42 -0
  510. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/visitors/test_join_sql.rb +42 -0
  511. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/visitors/test_mssql.rb +66 -0
  512. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/visitors/test_mysql.rb +55 -0
  513. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/visitors/test_oracle.rb +148 -0
  514. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/visitors/test_postgres.rb +48 -0
  515. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/visitors/test_sqlite.rb +18 -0
  516. data/dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/visitors/test_to_sql.rb +365 -0
  517. data/dirty_history/ruby/1.9.1/gems/builder-3.0.0/CHANGES +89 -0
  518. data/dirty_history/ruby/1.9.1/gems/builder-3.0.0/README +229 -0
  519. data/dirty_history/ruby/1.9.1/gems/builder-3.0.0/README.rdoc +232 -0
  520. data/dirty_history/ruby/1.9.1/gems/builder-3.0.0/Rakefile +296 -0
  521. data/dirty_history/ruby/1.9.1/gems/builder-3.0.0/TAGS +55364 -0
  522. data/dirty_history/ruby/1.9.1/gems/builder-3.0.0/lib/blankslate.rb +109 -0
  523. data/dirty_history/ruby/1.9.1/gems/builder-3.0.0/lib/builder.rb +13 -0
  524. data/dirty_history/ruby/1.9.1/gems/builder-3.0.0/lib/builder/blankslate.rb +23 -0
  525. data/dirty_history/ruby/1.9.1/gems/builder-3.0.0/lib/builder/xchar.rb +197 -0
  526. data/dirty_history/ruby/1.9.1/gems/builder-3.0.0/lib/builder/xmlbase.rb +160 -0
  527. data/dirty_history/ruby/1.9.1/gems/builder-3.0.0/lib/builder/xmlevents.rb +63 -0
  528. data/dirty_history/ruby/1.9.1/gems/builder-3.0.0/lib/builder/xmlmarkup.rb +334 -0
  529. data/dirty_history/ruby/1.9.1/gems/builder-3.0.0/test/performance.rb +40 -0
  530. data/dirty_history/ruby/1.9.1/gems/builder-3.0.0/test/preload.rb +39 -0
  531. data/dirty_history/ruby/1.9.1/gems/builder-3.0.0/test/test_blankslate.rb +225 -0
  532. data/dirty_history/ruby/1.9.1/gems/builder-3.0.0/test/test_cssbuilder.rb +125 -0
  533. data/dirty_history/ruby/1.9.1/gems/builder-3.0.0/test/test_eventbuilder.rb +150 -0
  534. data/dirty_history/ruby/1.9.1/gems/builder-3.0.0/test/test_markupbuilder.rb +546 -0
  535. data/dirty_history/ruby/1.9.1/gems/builder-3.0.0/test/test_namecollision.rb +39 -0
  536. data/dirty_history/ruby/1.9.1/gems/builder-3.0.0/test/test_xchar.rb +77 -0
  537. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/Gemfile +4 -2
  538. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/Gemfile.lock +23 -4
  539. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/Rakefile +2 -1
  540. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history.gemspec +818 -10
  541. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/cache/dirty_history-0.2.0.gem +0 -0
  542. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/cache/rake-0.9.2.gem +0 -0
  543. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/cache/rcov-0.9.11.gem +0 -0
  544. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/.document +5 -0
  545. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/Gemfile +15 -0
  546. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/Gemfile.lock +39 -0
  547. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/LICENSE.txt +20 -0
  548. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/README.rdoc +84 -0
  549. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/Rakefile +54 -0
  550. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/VERSION +1 -0
  551. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history.gemspec +1471 -0
  552. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  553. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/bin/jeweler +19 -0
  554. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/bin/rake +19 -0
  555. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/bin/rcov +19 -0
  556. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  557. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  558. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  559. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  560. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  561. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  562. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  563. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  564. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  565. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  566. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  567. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  568. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  569. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  570. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  571. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  572. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  573. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  574. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  575. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  576. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  577. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  578. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  579. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  580. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  581. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  582. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  583. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  584. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  585. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  586. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  587. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  588. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  589. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  590. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  591. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  592. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  593. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  594. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  595. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  596. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  597. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  598. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  599. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  600. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  601. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  602. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  603. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  604. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  605. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  606. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  607. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  608. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  609. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  610. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  611. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  612. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  613. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  614. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  615. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  616. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  617. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  618. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  619. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  620. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  621. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  622. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  623. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  624. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  625. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  626. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  627. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  628. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  629. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  630. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  631. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  632. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  633. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  634. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  635. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  636. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  637. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  638. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  639. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  640. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  641. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  642. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  643. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  644. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  645. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  646. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  647. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  648. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  649. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  650. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  651. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  652. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  653. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  654. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  655. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  656. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  657. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  658. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  659. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  660. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  661. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  662. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  663. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  664. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  665. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  666. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  667. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  668. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  669. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  670. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  671. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  672. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  673. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  674. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  675. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  676. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  677. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  678. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  679. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  680. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  681. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  682. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  683. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  684. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  685. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  686. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  687. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  688. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  689. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  690. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  691. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  692. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  693. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  694. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  695. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  696. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  697. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  698. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  699. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  700. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  701. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  702. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  703. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  704. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  705. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  706. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  707. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  708. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  709. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  710. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  711. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  712. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  713. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  714. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  715. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  716. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  717. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  718. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  719. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  720. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  721. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  722. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  723. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  724. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  725. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  726. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  727. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  728. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  729. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  730. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  731. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  732. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  733. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  734. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  735. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  736. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  737. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  738. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  739. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  740. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  741. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  742. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  743. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  744. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  745. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  746. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  747. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  748. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  749. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  750. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  751. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  752. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  753. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  754. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  755. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  756. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  757. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  758. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  759. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  760. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  761. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  762. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  763. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  764. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  765. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  766. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  767. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  768. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  769. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  770. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  771. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  772. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  773. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  774. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  775. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  776. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  777. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  778. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  779. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  780. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  781. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  782. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  783. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  784. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  785. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  786. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  787. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  788. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  789. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  790. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  791. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  792. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  793. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  794. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  795. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  796. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  797. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  798. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  799. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  800. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  801. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  802. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  803. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  804. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  805. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  806. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  807. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  808. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  809. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  810. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  811. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  812. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  813. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  814. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  815. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  816. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  817. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  818. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  819. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  820. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  821. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  822. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  823. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  824. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  825. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  826. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  827. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  828. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  829. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  830. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  831. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  832. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  833. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  834. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  835. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  836. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  837. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  838. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  839. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  840. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  841. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  842. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  843. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  844. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  845. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  846. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  847. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  848. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  849. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  850. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  851. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  852. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  853. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  854. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  855. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  856. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  857. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  858. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  859. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  860. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  861. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  862. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  863. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  864. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  865. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  866. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  867. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  868. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  869. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  870. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  871. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  872. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  873. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  874. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  875. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  876. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  877. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  878. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  879. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  880. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  881. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  882. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  883. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  884. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  885. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  886. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  887. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  888. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  889. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  890. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  891. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  892. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  893. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  894. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  895. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  896. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  897. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  898. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  899. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  900. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  901. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  902. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  903. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  904. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  905. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  906. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  907. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  908. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  909. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  910. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  911. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  912. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  913. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  914. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  915. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  916. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  917. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  918. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  919. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  920. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  921. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  922. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  923. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  924. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  925. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  926. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  927. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  928. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  929. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  930. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  931. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  932. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  933. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  934. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  935. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  936. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  937. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  938. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  939. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  940. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  941. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  942. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  943. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  944. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  945. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  946. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  947. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  948. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  949. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  950. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  951. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  952. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  953. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  954. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  955. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  956. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  957. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  958. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  959. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  960. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  961. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  962. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  963. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  964. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  965. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  966. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  967. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  968. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  969. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  970. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  971. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  972. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  973. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  974. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  975. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  976. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  977. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  978. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  979. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  980. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  981. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  982. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  983. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  984. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  985. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  986. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  987. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  988. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  989. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  990. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  991. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  992. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  993. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  994. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  995. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  996. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  997. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  998. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  999. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1000. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1001. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1002. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1003. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1004. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1005. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1006. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1007. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1008. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1009. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1010. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1011. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1012. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1013. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1014. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1015. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1016. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1017. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1018. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1019. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1020. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1021. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1022. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1023. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1024. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1025. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1026. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1027. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1028. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1029. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1030. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1031. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1032. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1033. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1034. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1035. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1036. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1037. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1038. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1039. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1040. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1041. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1042. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1043. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1044. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1045. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1046. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1047. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1048. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1049. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1050. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1051. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1052. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1053. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1054. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1055. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1056. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1057. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1058. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1059. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1060. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1061. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1062. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1063. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1064. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1065. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1066. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1067. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1068. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1069. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1070. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1071. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1072. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1073. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1074. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1075. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1076. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1077. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1078. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1079. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1080. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1081. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1082. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1083. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1084. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1085. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1086. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1087. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1088. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1089. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1090. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1091. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1092. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1093. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1094. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1095. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1096. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1097. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1098. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1099. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1100. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1101. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1102. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1103. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1104. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1105. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1106. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1107. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1108. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1109. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1110. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1111. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1112. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1113. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1114. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1115. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1116. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1117. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1118. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1119. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1120. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1121. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1122. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1123. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1124. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1125. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1126. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1127. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1128. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1129. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1130. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1131. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1132. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1133. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1134. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1135. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1136. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1137. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1138. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1139. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1140. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1141. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1142. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1143. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1144. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1145. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1146. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1147. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/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
  1148. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/init.rb +1 -0
  1149. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/lib/dirty_history.rb +10 -0
  1150. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/lib/dirty_history/dirty_history_mixin.rb +120 -0
  1151. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/lib/dirty_history/dirty_history_record.rb +42 -0
  1152. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/lib/generators/dirty_history/migration/migration_generator.rb +32 -0
  1153. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/lib/generators/dirty_history/migration/templates/active_record/migration.rb +21 -0
  1154. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/rails/init.rb +1 -0
  1155. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/test/helper.rb +18 -0
  1156. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/test/test_dirty_history.rb +7 -0
  1157. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/.gemtest +0 -0
  1158. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/CHANGES +509 -0
  1159. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/MIT-LICENSE +21 -0
  1160. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/README.rdoc +200 -0
  1161. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/RRR +9 -0
  1162. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/Rakefile +405 -0
  1163. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/TODO +20 -0
  1164. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/bin/rake +32 -0
  1165. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/install.rb +90 -0
  1166. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake.rb +65 -0
  1167. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/alt_system.rb +109 -0
  1168. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/application.rb +589 -0
  1169. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/classic_namespace.rb +9 -0
  1170. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/clean.rb +31 -0
  1171. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/cloneable.rb +25 -0
  1172. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/contrib/compositepublisher.rb +21 -0
  1173. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/contrib/ftptools.rb +150 -0
  1174. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/contrib/publisher.rb +69 -0
  1175. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/contrib/rubyforgepublisher.rb +16 -0
  1176. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/contrib/sshpublisher.rb +45 -0
  1177. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/contrib/sys.rb +191 -0
  1178. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/default_loader.rb +10 -0
  1179. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/dsl_definition.rb +167 -0
  1180. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/early_time.rb +18 -0
  1181. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/ext/core.rb +27 -0
  1182. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/ext/module.rb +39 -0
  1183. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/ext/string.rb +167 -0
  1184. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/ext/time.rb +14 -0
  1185. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/file_creation_task.rb +24 -0
  1186. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/file_list.rb +403 -0
  1187. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/file_task.rb +47 -0
  1188. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/file_utils.rb +112 -0
  1189. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/file_utils_ext.rb +142 -0
  1190. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/gempackagetask.rb +13 -0
  1191. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/invocation_chain.rb +51 -0
  1192. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/invocation_exception_mixin.rb +16 -0
  1193. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/loaders/makefile.rb +40 -0
  1194. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/multi_task.rb +16 -0
  1195. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/name_space.rb +25 -0
  1196. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/packagetask.rb +185 -0
  1197. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/pathmap.rb +1 -0
  1198. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/pseudo_status.rb +24 -0
  1199. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/rake_module.rb +29 -0
  1200. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/rake_test_loader.rb +13 -0
  1201. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/rdoctask.rb +230 -0
  1202. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/ruby182_test_unit_fix.rb +25 -0
  1203. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/rule_recursion_overflow_error.rb +20 -0
  1204. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/runtest.rb +21 -0
  1205. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/task.rb +327 -0
  1206. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/task_argument_error.rb +7 -0
  1207. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/task_arguments.rb +74 -0
  1208. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/task_manager.rb +307 -0
  1209. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/tasklib.rb +22 -0
  1210. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/testtask.rb +191 -0
  1211. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/version.rb +10 -0
  1212. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/lib/rake/win32.rb +55 -0
  1213. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/check_expansion.rb +5 -0
  1214. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/check_no_expansion.rb +5 -0
  1215. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/data/access/Rakefile +35 -0
  1216. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/data/chains/Rakefile +15 -0
  1217. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/data/comments/Rakefile +18 -0
  1218. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/data/default/Rakefile +17 -0
  1219. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/data/deprecated_import/Rakefile +1 -0
  1220. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/data/dryrun/Rakefile +22 -0
  1221. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/data/extra/Rakefile +1 -0
  1222. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/data/file_creation_task/Rakefile +31 -0
  1223. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/data/imports/Rakefile +19 -0
  1224. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/data/imports/deps.mf +1 -0
  1225. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/data/multidesc/Rakefile +15 -0
  1226. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/data/namespace/Rakefile +64 -0
  1227. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/data/rakelib/test1.rb +4 -0
  1228. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/data/rbext/rakefile.rb +3 -0
  1229. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/data/sample.mf +14 -0
  1230. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/data/statusreturn/Rakefile +6 -0
  1231. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/data/unittest/Rakefile +1 -0
  1232. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/data/verbose/Rakefile +34 -0
  1233. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/file_creation.rb +34 -0
  1234. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/helper.rb +44 -0
  1235. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/in_environment.rb +35 -0
  1236. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/reqfile.rb +3 -0
  1237. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/reqfile2.rb +3 -0
  1238. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/shellcommand.rb +3 -0
  1239. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake.rb +38 -0
  1240. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_application.rb +364 -0
  1241. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_application_options.rb +382 -0
  1242. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_clean.rb +12 -0
  1243. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_definitions.rb +80 -0
  1244. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_directory_task.rb +55 -0
  1245. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_dsl.rb +73 -0
  1246. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_early_time.rb +31 -0
  1247. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_extension.rb +59 -0
  1248. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_file_creation_task.rb +62 -0
  1249. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_file_list.rb +633 -0
  1250. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_file_list_path_map.rb +8 -0
  1251. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_file_task.rb +104 -0
  1252. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_file_utils.rb +252 -0
  1253. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_ftp_file.rb +59 -0
  1254. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_functional.rb +468 -0
  1255. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_invocation_chain.rb +52 -0
  1256. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_makefile_loader.rb +23 -0
  1257. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_multi_task.rb +51 -0
  1258. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_name_space.rb +43 -0
  1259. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_package_task.rb +78 -0
  1260. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_path_map.rb +157 -0
  1261. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_path_map_explode.rb +31 -0
  1262. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_path_map_partial.rb +18 -0
  1263. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_pseudo_status.rb +20 -0
  1264. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_rdoc_task.rb +81 -0
  1265. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_require.rb +35 -0
  1266. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_rules.rb +346 -0
  1267. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_task.rb +271 -0
  1268. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_task_argument_parsing.rb +116 -0
  1269. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_task_arguments.rb +86 -0
  1270. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_task_lib.rb +9 -0
  1271. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_task_manager.rb +145 -0
  1272. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_task_manager_argument_resolution.rb +36 -0
  1273. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_task_with_arguments.rb +162 -0
  1274. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_test_task.rb +122 -0
  1275. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_top_level_functions.rb +76 -0
  1276. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_rake_win32.rb +83 -0
  1277. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rake-0.9.2/test/test_sys.rb +20 -0
  1278. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/BLURB +111 -0
  1279. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/LICENSE +53 -0
  1280. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/Rakefile +103 -0
  1281. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/THANKS +110 -0
  1282. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/bin/rcov +522 -0
  1283. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/editor-extensions/rcov.el +131 -0
  1284. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/editor-extensions/rcov.vim +38 -0
  1285. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/ext/rcovrt/1.8/callsite.c +216 -0
  1286. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/ext/rcovrt/1.8/rcovrt.c +294 -0
  1287. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/ext/rcovrt/1.9/callsite.c +234 -0
  1288. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/ext/rcovrt/1.9/rcovrt.c +264 -0
  1289. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/ext/rcovrt/Makefile +187 -0
  1290. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/ext/rcovrt/callsite.o +0 -0
  1291. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/ext/rcovrt/extconf.rb +21 -0
  1292. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/ext/rcovrt/rcovrt.bundle +0 -0
  1293. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/ext/rcovrt/rcovrt.o +0 -0
  1294. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/lib/rcov.rb +33 -0
  1295. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/lib/rcov/call_site_analyzer.rb +225 -0
  1296. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/lib/rcov/code_coverage_analyzer.rb +284 -0
  1297. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/lib/rcov/coverage_info.rb +36 -0
  1298. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/lib/rcov/differential_analyzer.rb +116 -0
  1299. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/lib/rcov/file_statistics.rb +356 -0
  1300. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/lib/rcov/formatters.rb +13 -0
  1301. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/lib/rcov/formatters/base_formatter.rb +174 -0
  1302. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/lib/rcov/formatters/failure_report.rb +15 -0
  1303. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/lib/rcov/formatters/full_text_report.rb +48 -0
  1304. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/lib/rcov/formatters/html_coverage.rb +274 -0
  1305. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/lib/rcov/formatters/html_erb_template.rb +62 -0
  1306. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/lib/rcov/formatters/text_coverage_diff.rb +193 -0
  1307. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/lib/rcov/formatters/text_report.rb +32 -0
  1308. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/lib/rcov/formatters/text_summary.rb +11 -0
  1309. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/lib/rcov/lowlevel.rb +146 -0
  1310. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/lib/rcov/rcovtask.rb +156 -0
  1311. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/lib/rcov/templates/detail.html.erb +64 -0
  1312. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/lib/rcov/templates/index.html.erb +93 -0
  1313. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/lib/rcov/templates/jquery-1.3.2.min.js +19 -0
  1314. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/lib/rcov/templates/jquery.tablesorter.min.js +15 -0
  1315. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/lib/rcov/templates/print.css +12 -0
  1316. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/lib/rcov/templates/rcov.js +42 -0
  1317. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/lib/rcov/templates/screen.css +270 -0
  1318. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/lib/rcov/version.rb +10 -0
  1319. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/lib/rcovrt.bundle +0 -0
  1320. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/setup.rb +1588 -0
  1321. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/test/assets/sample_01.rb +7 -0
  1322. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/test/assets/sample_02.rb +5 -0
  1323. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/test/assets/sample_03.rb +20 -0
  1324. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/test/assets/sample_04.rb +10 -0
  1325. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/test/assets/sample_05-new.rb +17 -0
  1326. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/test/assets/sample_05-old.rb +13 -0
  1327. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/test/assets/sample_05.rb +17 -0
  1328. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/test/assets/sample_06.rb +8 -0
  1329. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/test/call_site_analyzer_test.rb +171 -0
  1330. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/test/code_coverage_analyzer_test.rb +220 -0
  1331. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/test/expected_coverage/diff-gcc-all.out +7 -0
  1332. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/test/expected_coverage/diff-gcc-diff.out +11 -0
  1333. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/test/expected_coverage/diff-gcc-original.out +5 -0
  1334. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/test/expected_coverage/diff-no-color.out +12 -0
  1335. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/test/expected_coverage/diff.out +12 -0
  1336. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/test/expected_coverage/gcc-text.out +10 -0
  1337. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/test/expected_coverage/sample_03_rb.html +651 -0
  1338. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/test/expected_coverage/sample_03_rb.rb +28 -0
  1339. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/test/expected_coverage/sample_04_rb.html +641 -0
  1340. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/test/file_statistics_test.rb +471 -0
  1341. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/test/functional_test.rb +91 -0
  1342. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/test/test_helper.rb +4 -0
  1343. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/gems/rcov-0.9.11/test/turn_off_rcovrt.rb +4 -0
  1344. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/specifications/dirty_history-0.2.0.gemspec +46 -0
  1345. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/specifications/rake-0.9.2.gemspec +41 -0
  1346. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/dirty_history/ruby/1.9.1/specifications/rcov-0.9.11.gemspec +31 -0
  1347. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/lib/dirty_history/dirty_history_mixin.rb +29 -18
  1348. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/lib/dirty_history/dirty_history_record.rb +6 -4
  1349. data/dirty_history/ruby/1.9.1/gems/dirty_history-0.2.0/lib/generators/dirty_history/migration/templates/active_record/migration.rb +1 -0
  1350. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/CHANGELOG.textile +152 -0
  1351. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/MIT-LICENSE +20 -0
  1352. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/README.textile +103 -0
  1353. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/ci/Gemfile.no-rails +5 -0
  1354. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/ci/Gemfile.no-rails.lock +14 -0
  1355. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/ci/Gemfile.rails-2.3.x +9 -0
  1356. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/ci/Gemfile.rails-2.3.x.lock +23 -0
  1357. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/ci/Gemfile.rails-3.x +9 -0
  1358. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/ci/Gemfile.rails-3.x.lock +23 -0
  1359. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/lib/i18n.rb +331 -0
  1360. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/lib/i18n/backend.rb +18 -0
  1361. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/lib/i18n/backend/base.rb +175 -0
  1362. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/lib/i18n/backend/cache.rb +96 -0
  1363. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/lib/i18n/backend/cascade.rb +53 -0
  1364. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/lib/i18n/backend/chain.rb +78 -0
  1365. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/lib/i18n/backend/fallbacks.rb +68 -0
  1366. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/lib/i18n/backend/flatten.rb +113 -0
  1367. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/lib/i18n/backend/gettext.rb +71 -0
  1368. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/lib/i18n/backend/interpolation_compiler.rb +121 -0
  1369. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/lib/i18n/backend/key_value.rb +101 -0
  1370. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/lib/i18n/backend/memoize.rb +46 -0
  1371. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/lib/i18n/backend/metadata.rb +65 -0
  1372. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/lib/i18n/backend/pluralization.rb +55 -0
  1373. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/lib/i18n/backend/simple.rb +87 -0
  1374. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/lib/i18n/backend/transliterator.rb +98 -0
  1375. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/lib/i18n/config.rb +86 -0
  1376. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/lib/i18n/core_ext/hash.rb +29 -0
  1377. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/lib/i18n/core_ext/kernel/surpress_warnings.rb +9 -0
  1378. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/lib/i18n/core_ext/string/interpolate.rb +105 -0
  1379. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/lib/i18n/exceptions.rb +106 -0
  1380. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/lib/i18n/gettext.rb +25 -0
  1381. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/lib/i18n/gettext/helpers.rb +64 -0
  1382. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/lib/i18n/gettext/po_parser.rb +329 -0
  1383. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/lib/i18n/interpolate/ruby.rb +31 -0
  1384. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/lib/i18n/locale.rb +6 -0
  1385. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/lib/i18n/locale/fallbacks.rb +96 -0
  1386. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/lib/i18n/locale/tag.rb +28 -0
  1387. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/lib/i18n/locale/tag/parents.rb +22 -0
  1388. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/lib/i18n/locale/tag/rfc4646.rb +74 -0
  1389. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/lib/i18n/locale/tag/simple.rb +39 -0
  1390. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/lib/i18n/tests.rb +12 -0
  1391. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/lib/i18n/tests/basics.rb +54 -0
  1392. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/lib/i18n/tests/defaults.rb +40 -0
  1393. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/lib/i18n/tests/interpolation.rb +133 -0
  1394. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/lib/i18n/tests/link.rb +56 -0
  1395. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/lib/i18n/tests/localization.rb +19 -0
  1396. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/lib/i18n/tests/localization/date.rb +84 -0
  1397. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/lib/i18n/tests/localization/date_time.rb +77 -0
  1398. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/lib/i18n/tests/localization/procs.rb +116 -0
  1399. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/lib/i18n/tests/localization/time.rb +76 -0
  1400. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/lib/i18n/tests/lookup.rb +74 -0
  1401. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/lib/i18n/tests/pluralization.rb +35 -0
  1402. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/lib/i18n/tests/procs.rb +55 -0
  1403. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/lib/i18n/version.rb +3 -0
  1404. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/test/all.rb +8 -0
  1405. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/test/api/all_features_test.rb +58 -0
  1406. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/test/api/cascade_test.rb +28 -0
  1407. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/test/api/chain_test.rb +24 -0
  1408. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/test/api/fallbacks_test.rb +30 -0
  1409. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/test/api/key_value_test.rb +28 -0
  1410. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/test/api/memoize_test.rb +60 -0
  1411. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/test/api/pluralization_test.rb +30 -0
  1412. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/test/api/simple_test.rb +28 -0
  1413. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/test/backend/cache_test.rb +85 -0
  1414. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/test/backend/cascade_test.rb +85 -0
  1415. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/test/backend/chain_test.rb +72 -0
  1416. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/test/backend/exceptions_test.rb +30 -0
  1417. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/test/backend/fallbacks_test.rb +120 -0
  1418. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/test/backend/interpolation_compiler_test.rb +102 -0
  1419. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/test/backend/key_value_test.rb +46 -0
  1420. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/test/backend/memoize_test.rb +47 -0
  1421. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/test/backend/metadata_test.rb +67 -0
  1422. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/test/backend/pluralization_test.rb +44 -0
  1423. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/test/backend/simple_test.rb +83 -0
  1424. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/test/backend/transliterator_test.rb +81 -0
  1425. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/test/core_ext/hash_test.rb +30 -0
  1426. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/test/core_ext/string/interpolate_test.rb +99 -0
  1427. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/test/gettext/api_test.rb +206 -0
  1428. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/test/gettext/backend_test.rb +93 -0
  1429. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/test/i18n/exceptions_test.rb +116 -0
  1430. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/test/i18n/interpolate_test.rb +61 -0
  1431. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/test/i18n/load_path_test.rb +26 -0
  1432. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/test/i18n_test.rb +236 -0
  1433. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/test/locale/fallbacks_test.rb +124 -0
  1434. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/test/locale/tag/rfc4646_test.rb +142 -0
  1435. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/test/locale/tag/simple_test.rb +32 -0
  1436. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/test/run_all.rb +21 -0
  1437. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/test/test_data/locales/de.po +72 -0
  1438. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/test/test_data/locales/en.rb +3 -0
  1439. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/test/test_data/locales/en.yml +3 -0
  1440. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/test/test_data/locales/invalid/empty.yml +1 -0
  1441. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/test/test_data/locales/plurals.rb +113 -0
  1442. data/dirty_history/ruby/1.9.1/gems/i18n-0.6.0/test/test_helper.rb +56 -0
  1443. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/.document +8 -0
  1444. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/ChangeLog.markdown +177 -0
  1445. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/Gemfile +22 -0
  1446. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/Gemfile.lock +59 -0
  1447. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/LICENSE.txt +20 -0
  1448. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/README.markdown +216 -0
  1449. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/Rakefile +81 -0
  1450. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/bin/jeweler +5 -0
  1451. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/features/generator/cucumber.feature +103 -0
  1452. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/features/generator/directory_layout.feature +86 -0
  1453. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/features/generator/dotdocument.feature +13 -0
  1454. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/features/generator/env_options.feature +9 -0
  1455. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/features/generator/gemfile.feature +71 -0
  1456. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/features/generator/git.feature +102 -0
  1457. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/features/generator/license.feature +20 -0
  1458. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/features/generator/rakefile.feature +158 -0
  1459. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/features/generator/readme.feature +12 -0
  1460. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/features/generator/test.feature +54 -0
  1461. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/features/generator/test_helper.feature +149 -0
  1462. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/features/placeholder.feature +5 -0
  1463. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/features/step_definitions/debug_steps.rb +6 -0
  1464. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/features/step_definitions/filesystem_steps.rb +70 -0
  1465. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/features/step_definitions/generator_steps.rb +380 -0
  1466. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/features/step_definitions/task_steps.rb +6 -0
  1467. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/features/support/env.rb +42 -0
  1468. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/features/tasks/build_gem.feature +9 -0
  1469. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/features/tasks/version.feature +31 -0
  1470. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/features/tasks/version_bumping.feature +49 -0
  1471. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/jeweler.gemspec +245 -0
  1472. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler.rb +177 -0
  1473. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/commands.rb +20 -0
  1474. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/commands/build_gem.rb +36 -0
  1475. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/commands/check_dependencies.rb +66 -0
  1476. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/commands/install_gem.rb +31 -0
  1477. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/commands/release_gemspec.rb +82 -0
  1478. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/commands/release_to_git.rb +59 -0
  1479. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/commands/release_to_rubygems.rb +28 -0
  1480. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/commands/validate_gemspec.rb +30 -0
  1481. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/commands/version/base.rb +55 -0
  1482. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/commands/version/bump_major.rb +13 -0
  1483. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/commands/version/bump_minor.rb +12 -0
  1484. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/commands/version/bump_patch.rb +14 -0
  1485. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/commands/version/write.rb +12 -0
  1486. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/commands/write_gemspec.rb +39 -0
  1487. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/errors.rb +8 -0
  1488. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/gemcutter_tasks.rb +8 -0
  1489. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/gemspec_helper.rb +87 -0
  1490. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/generator.rb +295 -0
  1491. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/generator/application.rb +61 -0
  1492. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/generator/bacon_mixin.rb +43 -0
  1493. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/generator/github_mixin.rb +29 -0
  1494. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/generator/micronaut_mixin.rb +41 -0
  1495. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/generator/minitest_mixin.rb +42 -0
  1496. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/generator/options.rb +163 -0
  1497. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/generator/rdoc_mixin.rb +9 -0
  1498. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/generator/riot_mixin.rb +42 -0
  1499. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/generator/rspec_mixin.rb +42 -0
  1500. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/generator/shindo_mixin.rb +44 -0
  1501. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/generator/shoulda_mixin.rb +42 -0
  1502. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/generator/testspec_mixin.rb +42 -0
  1503. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/generator/testunit_mixin.rb +39 -0
  1504. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/generator/yard_mixin.rb +14 -0
  1505. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/rubyforge_tasks.rb +95 -0
  1506. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/rubygems_dot_org_tasks.rb +38 -0
  1507. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/rubygems_tasks.rb +38 -0
  1508. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/specification.rb +110 -0
  1509. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/tasks.rb +224 -0
  1510. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/templates/.document +5 -0
  1511. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/templates/.gitignore +48 -0
  1512. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/templates/Gemfile +12 -0
  1513. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/templates/LICENSE.txt +20 -0
  1514. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/templates/README.rdoc +19 -0
  1515. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/templates/Rakefile +9 -0
  1516. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/templates/bacon/flunking.rb +7 -0
  1517. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/templates/bacon/helper.rb +9 -0
  1518. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/templates/bundler_setup.erb +10 -0
  1519. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/templates/features/default.feature +9 -0
  1520. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/templates/features/support/env.rb +10 -0
  1521. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/templates/jeweler_tasks.erb +31 -0
  1522. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/templates/micronaut/flunking.rb +7 -0
  1523. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/templates/micronaut/helper.rb +18 -0
  1524. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/templates/minitest/flunking.rb +7 -0
  1525. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/templates/minitest/helper.rb +12 -0
  1526. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/templates/other_tasks.erb +86 -0
  1527. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/templates/riot/flunking.rb +11 -0
  1528. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/templates/riot/helper.rb +4 -0
  1529. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/templates/rspec/.rspec +1 -0
  1530. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/templates/rspec/flunking.rb +7 -0
  1531. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/templates/rspec/helper.rb +12 -0
  1532. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/templates/shindo/flunking.rb +8 -0
  1533. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/templates/shindo/helper.rb +6 -0
  1534. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/templates/shoulda/flunking.rb +7 -0
  1535. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/templates/shoulda/helper.rb +11 -0
  1536. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/templates/testspec/flunking.rb +7 -0
  1537. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/templates/testspec/helper.rb +7 -0
  1538. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/templates/testunit/flunking.rb +7 -0
  1539. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/templates/testunit/helper.rb +10 -0
  1540. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/version.rb +10 -0
  1541. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/lib/jeweler/version_helper.rb +141 -0
  1542. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/test/fixtures/bar/VERSION.yml +4 -0
  1543. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/test/fixtures/bar/bin/foo_the_ultimate_bin +1 -0
  1544. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/test/fixtures/bar/hey_include_me_in_gemspec +0 -0
  1545. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/test/fixtures/bar/lib/foo_the_ultimate_lib.rb +1 -0
  1546. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/test/fixtures/existing-project-with-version-constant/.document +5 -0
  1547. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/test/fixtures/existing-project-with-version-constant/.gitignore +5 -0
  1548. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/test/fixtures/existing-project-with-version-constant/LICENSE.txt +20 -0
  1549. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/test/fixtures/existing-project-with-version-constant/README.rdoc +7 -0
  1550. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/test/fixtures/existing-project-with-version-constant/Rakefile +85 -0
  1551. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/test/fixtures/existing-project-with-version-constant/existing-project-with-version.gemspec +29 -0
  1552. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/test/fixtures/existing-project-with-version-constant/lib/existing_project_with_version.rb +0 -0
  1553. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/test/fixtures/existing-project-with-version-constant/test/existing_project_with_version_test.rb +7 -0
  1554. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/test/fixtures/existing-project-with-version-constant/test/test_helper.rb +10 -0
  1555. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/test/fixtures/existing-project-with-version-plaintext/.document +5 -0
  1556. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/test/fixtures/existing-project-with-version-plaintext/.gitignore +5 -0
  1557. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/test/fixtures/existing-project-with-version-plaintext/LICENSE.txt +20 -0
  1558. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/test/fixtures/existing-project-with-version-plaintext/README.rdoc +7 -0
  1559. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/test/fixtures/existing-project-with-version-plaintext/Rakefile +84 -0
  1560. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/test/fixtures/existing-project-with-version-plaintext/VERSION +1 -0
  1561. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/test/fixtures/existing-project-with-version-plaintext/existing-project-with-version.gemspec +29 -0
  1562. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/test/fixtures/existing-project-with-version-plaintext/lib/existing_project_with_version.rb +0 -0
  1563. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/test/fixtures/existing-project-with-version-plaintext/test/existing_project_with_version_test.rb +7 -0
  1564. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/test/fixtures/existing-project-with-version-plaintext/test/test_helper.rb +10 -0
  1565. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/test/fixtures/existing-project-with-version-yaml/.document +5 -0
  1566. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/test/fixtures/existing-project-with-version-yaml/.gitignore +5 -0
  1567. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/test/fixtures/existing-project-with-version-yaml/LICENSE.txt +20 -0
  1568. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/test/fixtures/existing-project-with-version-yaml/README.rdoc +7 -0
  1569. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/test/fixtures/existing-project-with-version-yaml/Rakefile +84 -0
  1570. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/test/fixtures/existing-project-with-version-yaml/VERSION.yml +4 -0
  1571. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/test/fixtures/existing-project-with-version-yaml/bin/foo_the_ultimate_bin +0 -0
  1572. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/test/fixtures/existing-project-with-version-yaml/existing-project-with-version.gemspec +29 -0
  1573. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/test/fixtures/existing-project-with-version-yaml/lib/existing_project_with_version.rb +0 -0
  1574. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/test/fixtures/existing-project-with-version-yaml/test/existing_project_with_version_test.rb +7 -0
  1575. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/test/fixtures/existing-project-with-version-yaml/test/test_helper.rb +10 -0
  1576. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/test/geminstaller.yml +12 -0
  1577. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/test/jeweler/commands/test_build_gem.rb +103 -0
  1578. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/test/jeweler/commands/test_install_gem.rb +35 -0
  1579. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/test/jeweler/commands/test_release_to_gemcutter.rb +39 -0
  1580. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/test/jeweler/commands/test_release_to_git.rb +208 -0
  1581. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/test/jeweler/commands/test_release_to_github.rb +406 -0
  1582. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/test/jeweler/commands/test_validate_gemspec.rb +27 -0
  1583. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/test/jeweler/commands/test_write_gemspec.rb +101 -0
  1584. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/test/jeweler/commands/version/test_base.rb +32 -0
  1585. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/test/jeweler/commands/version/test_bump_major.rb +22 -0
  1586. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/test/jeweler/commands/version/test_bump_minor.rb +19 -0
  1587. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/test/jeweler/commands/version/test_bump_patch.rb +20 -0
  1588. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/test/jeweler/commands/version/test_write.rb +22 -0
  1589. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/test/jeweler/generator/test_application.rb +120 -0
  1590. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/test/jeweler/generator/test_options.rb +225 -0
  1591. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/test/jeweler/test_gemspec_helper.rb +44 -0
  1592. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/test/jeweler/test_generator.rb +141 -0
  1593. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/test/jeweler/test_generator_initialization.rb +164 -0
  1594. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/test/jeweler/test_generator_mixins.rb +23 -0
  1595. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/test/jeweler/test_specification.rb +237 -0
  1596. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/test/jeweler/test_tasks.rb +50 -0
  1597. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/test/jeweler/test_version_helper.rb +214 -0
  1598. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/test/shoulda_macros/jeweler_macros.rb +35 -0
  1599. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/test/test_helper.rb +178 -0
  1600. data/dirty_history/ruby/1.9.1/gems/jeweler-1.6.4/test/test_jeweler.rb +175 -0
  1601. data/dirty_history/ruby/1.9.1/gems/multi_json-1.0.3/.document +5 -0
  1602. data/dirty_history/ruby/1.9.1/gems/multi_json-1.0.3/.gemtest +0 -0
  1603. data/dirty_history/ruby/1.9.1/gems/multi_json-1.0.3/.gitignore +34 -0
  1604. data/dirty_history/ruby/1.9.1/gems/multi_json-1.0.3/.rspec +3 -0
  1605. data/dirty_history/ruby/1.9.1/gems/multi_json-1.0.3/.travis.yml +9 -0
  1606. data/dirty_history/ruby/1.9.1/gems/multi_json-1.0.3/Gemfile +7 -0
  1607. data/dirty_history/ruby/1.9.1/gems/multi_json-1.0.3/LICENSE.md +20 -0
  1608. data/dirty_history/ruby/1.9.1/gems/multi_json-1.0.3/README.md +70 -0
  1609. data/dirty_history/ruby/1.9.1/gems/multi_json-1.0.3/Rakefile +23 -0
  1610. data/dirty_history/ruby/1.9.1/gems/multi_json-1.0.3/lib/multi_json.rb +74 -0
  1611. data/dirty_history/ruby/1.9.1/gems/multi_json-1.0.3/lib/multi_json/engines/json_gem.rb +21 -0
  1612. data/dirty_history/ruby/1.9.1/gems/multi_json-1.0.3/lib/multi_json/engines/json_pure.rb +21 -0
  1613. data/dirty_history/ruby/1.9.1/gems/multi_json-1.0.3/lib/multi_json/engines/ok_json.rb +48 -0
  1614. data/dirty_history/ruby/1.9.1/gems/multi_json-1.0.3/lib/multi_json/engines/yajl.rb +18 -0
  1615. data/dirty_history/ruby/1.9.1/gems/multi_json-1.0.3/lib/multi_json/vendor/ok_json.rb +581 -0
  1616. data/dirty_history/ruby/1.9.1/gems/multi_json-1.0.3/lib/multi_json/version.rb +3 -0
  1617. data/dirty_history/ruby/1.9.1/gems/multi_json-1.0.3/multi_json.gemspec +23 -0
  1618. data/dirty_history/ruby/1.9.1/gems/multi_json-1.0.3/spec/helper.rb +11 -0
  1619. data/dirty_history/ruby/1.9.1/gems/multi_json-1.0.3/spec/multi_json_spec.rb +134 -0
  1620. data/dirty_history/ruby/1.9.1/gems/rails3_acts_as_paranoid-0.1.1/LICENSE +20 -0
  1621. data/dirty_history/ruby/1.9.1/gems/rails3_acts_as_paranoid-0.1.1/README.markdown +121 -0
  1622. data/dirty_history/ruby/1.9.1/gems/rails3_acts_as_paranoid-0.1.1/lib/rails3_acts_as_paranoid.rb +198 -0
  1623. data/dirty_history/ruby/1.9.1/gems/rails3_acts_as_paranoid-0.1.1/lib/validations/uniqueness_without_deleted.rb +38 -0
  1624. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/CHANGES +447 -0
  1625. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/LICENSE +19 -0
  1626. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/README +101 -0
  1627. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/Rakefile +241 -0
  1628. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo.rb +55 -0
  1629. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/country.rb +176 -0
  1630. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/country_index_definition.rb +48 -0
  1631. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/country_info.rb +80 -0
  1632. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/country_timezone.rb +101 -0
  1633. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/data_timezone.rb +45 -0
  1634. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/data_timezone_info.rb +222 -0
  1635. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Africa/Abidjan.rb +16 -0
  1636. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Africa/Accra.rb +31 -0
  1637. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Africa/Addis_Ababa.rb +18 -0
  1638. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Africa/Algiers.rb +53 -0
  1639. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Africa/Asmara.rb +20 -0
  1640. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Africa/Asmera.rb +11 -0
  1641. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Africa/Bamako.rb +19 -0
  1642. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Africa/Bangui.rb +16 -0
  1643. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Africa/Banjul.rb +20 -0
  1644. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Africa/Bissau.rb +18 -0
  1645. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Africa/Blantyre.rb +16 -0
  1646. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Africa/Brazzaville.rb +16 -0
  1647. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Africa/Bujumbura.rb +16 -0
  1648. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Africa/Cairo.rb +139 -0
  1649. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Africa/Casablanca.rb +44 -0
  1650. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Africa/Ceuta.rb +170 -0
  1651. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Africa/Conakry.rb +19 -0
  1652. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Africa/Dakar.rb +18 -0
  1653. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Africa/Dar_es_Salaam.rb +19 -0
  1654. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Africa/Djibouti.rb +16 -0
  1655. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Africa/Douala.rb +16 -0
  1656. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Africa/El_Aaiun.rb +18 -0
  1657. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Africa/Freetown.rb +51 -0
  1658. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Africa/Gaborone.rb +19 -0
  1659. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Africa/Harare.rb +16 -0
  1660. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Africa/Johannesburg.rb +23 -0
  1661. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Africa/Juba.rb +51 -0
  1662. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Africa/Kampala.rb +21 -0
  1663. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Africa/Khartoum.rb +51 -0
  1664. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Africa/Kigali.rb +16 -0
  1665. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Africa/Kinshasa.rb +16 -0
  1666. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Africa/Lagos.rb +16 -0
  1667. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Africa/Libreville.rb +16 -0
  1668. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Africa/Lome.rb +16 -0
  1669. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Africa/Luanda.rb +18 -0
  1670. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Africa/Lubumbashi.rb +16 -0
  1671. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Africa/Lusaka.rb +16 -0
  1672. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Africa/Malabo.rb +18 -0
  1673. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Africa/Maputo.rb +16 -0
  1674. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Africa/Maseru.rb +19 -0
  1675. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Africa/Mbabane.rb +16 -0
  1676. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Africa/Mogadishu.rb +19 -0
  1677. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Africa/Monrovia.rb +20 -0
  1678. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Africa/Nairobi.rb +21 -0
  1679. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Africa/Ndjamena.rb +19 -0
  1680. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Africa/Niamey.rb +20 -0
  1681. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Africa/Nouakchott.rb +19 -0
  1682. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Africa/Ouagadougou.rb +16 -0
  1683. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Africa/Porto__m__Novo.rb +18 -0
  1684. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Africa/Sao_Tome.rb +18 -0
  1685. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Africa/Timbuktu.rb +11 -0
  1686. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Africa/Tripoli.rb +46 -0
  1687. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Africa/Tunis.rb +51 -0
  1688. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Africa/Windhoek.rb +138 -0
  1689. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Adak.rb +194 -0
  1690. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Anchorage.rb +194 -0
  1691. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Anguilla.rb +16 -0
  1692. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Antigua.rb +18 -0
  1693. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Araguaina.rb +65 -0
  1694. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Argentina/Buenos_Aires.rb +82 -0
  1695. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Argentina/Catamarca.rb +83 -0
  1696. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Argentina/ComodRivadavia.rb +13 -0
  1697. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Argentina/Cordoba.rb +83 -0
  1698. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Argentina/Jujuy.rb +82 -0
  1699. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Argentina/La_Rioja.rb +84 -0
  1700. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Argentina/Mendoza.rb +84 -0
  1701. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Argentina/Rio_Gallegos.rb +83 -0
  1702. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Argentina/Salta.rb +81 -0
  1703. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Argentina/San_Juan.rb +84 -0
  1704. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Argentina/San_Luis.rb +85 -0
  1705. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Argentina/Tucuman.rb +85 -0
  1706. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Argentina/Ushuaia.rb +83 -0
  1707. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Aruba.rb +18 -0
  1708. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Asuncion.rb +172 -0
  1709. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Atikokan.rb +26 -0
  1710. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Atka.rb +11 -0
  1711. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Bahia.rb +75 -0
  1712. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Bahia_Banderas.rb +138 -0
  1713. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Barbados.rb +27 -0
  1714. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Belem.rb +45 -0
  1715. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Belize.rb +72 -0
  1716. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Blanc__m__Sablon.rb +24 -0
  1717. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Boa_Vista.rb +49 -0
  1718. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Bogota.rb +21 -0
  1719. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Boise.rb +197 -0
  1720. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Buenos_Aires.rb +11 -0
  1721. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Cambridge_Bay.rb +171 -0
  1722. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Campo_Grande.rb +169 -0
  1723. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Cancun.rb +131 -0
  1724. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Caracas.rb +21 -0
  1725. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Catamarca.rb +11 -0
  1726. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Cayenne.rb +18 -0
  1727. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Cayman.rb +18 -0
  1728. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Chicago.rb +281 -0
  1729. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Chihuahua.rb +134 -0
  1730. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Coral_Harbour.rb +11 -0
  1731. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Cordoba.rb +11 -0
  1732. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Costa_Rica.rb +27 -0
  1733. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Cuiaba.rb +167 -0
  1734. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Curacao.rb +18 -0
  1735. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Danmarkshavn.rb +51 -0
  1736. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Dawson.rb +174 -0
  1737. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Dawson_Creek.rb +77 -0
  1738. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Denver.rb +202 -0
  1739. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Detroit.rb +184 -0
  1740. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Dominica.rb +16 -0
  1741. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Edmonton.rb +198 -0
  1742. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Eirunepe.rb +49 -0
  1743. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/El_Salvador.rb +21 -0
  1744. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Ensenada.rb +11 -0
  1745. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Fort_Wayne.rb +11 -0
  1746. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Fortaleza.rb +55 -0
  1747. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Glace_Bay.rb +184 -0
  1748. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Godthab.rb +159 -0
  1749. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Goose_Bay.rb +253 -0
  1750. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Grand_Turk.rb +163 -0
  1751. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Grenada.rb +16 -0
  1752. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Guadeloupe.rb +16 -0
  1753. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Guatemala.rb +25 -0
  1754. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Guayaquil.rb +18 -0
  1755. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Guyana.rb +22 -0
  1756. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Halifax.rb +272 -0
  1757. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Havana.rb +199 -0
  1758. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Hermosillo.rb +33 -0
  1759. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Indiana/Indianapolis.rb +147 -0
  1760. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Indiana/Knox.rb +201 -0
  1761. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Indiana/Marengo.rb +151 -0
  1762. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Indiana/Petersburg.rb +164 -0
  1763. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Indiana/Tell_City.rb +149 -0
  1764. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Indiana/Vevay.rb +129 -0
  1765. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Indiana/Vincennes.rb +149 -0
  1766. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Indiana/Winamac.rb +155 -0
  1767. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Indianapolis.rb +11 -0
  1768. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Inuvik.rb +164 -0
  1769. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Iqaluit.rb +168 -0
  1770. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Jamaica.rb +39 -0
  1771. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Jujuy.rb +11 -0
  1772. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Juneau.rb +193 -0
  1773. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Kentucky/Louisville.rb +226 -0
  1774. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Kentucky/Monticello.rb +196 -0
  1775. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Knox_IN.rb +11 -0
  1776. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Kralendijk.rb +11 -0
  1777. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/La_Paz.rb +20 -0
  1778. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Lima.rb +33 -0
  1779. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Los_Angeles.rb +230 -0
  1780. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Louisville.rb +11 -0
  1781. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Lower_Princes.rb +11 -0
  1782. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Maceio.rb +57 -0
  1783. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Managua.rb +34 -0
  1784. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Manaus.rb +47 -0
  1785. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Marigot.rb +11 -0
  1786. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Martinique.rb +21 -0
  1787. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Matamoros.rb +129 -0
  1788. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Mazatlan.rb +137 -0
  1789. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Mendoza.rb +11 -0
  1790. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Menominee.rb +188 -0
  1791. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Merida.rb +130 -0
  1792. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Metlakatla.rb +55 -0
  1793. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Mexico_City.rb +142 -0
  1794. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Miquelon.rb +147 -0
  1795. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Moncton.rb +252 -0
  1796. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Monterrey.rb +129 -0
  1797. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Montevideo.rb +177 -0
  1798. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Montreal.rb +277 -0
  1799. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Montserrat.rb +16 -0
  1800. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Nassau.rb +191 -0
  1801. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/New_York.rb +280 -0
  1802. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Nipigon.rb +179 -0
  1803. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Nome.rb +194 -0
  1804. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Noronha.rb +55 -0
  1805. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/North_Dakota/Beulah.rb +198 -0
  1806. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/North_Dakota/Center.rb +198 -0
  1807. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/North_Dakota/New_Salem.rb +198 -0
  1808. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Ojinaga.rb +134 -0
  1809. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Panama.rb +18 -0
  1810. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Pangnirtung.rb +171 -0
  1811. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Paramaribo.rb +24 -0
  1812. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Phoenix.rb +28 -0
  1813. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Port__m__au__m__Prince.rb +53 -0
  1814. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Port_of_Spain.rb +16 -0
  1815. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Porto_Acre.rb +11 -0
  1816. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Porto_Velho.rb +45 -0
  1817. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Puerto_Rico.rb +21 -0
  1818. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Rainy_River.rb +179 -0
  1819. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Rankin_Inlet.rb +163 -0
  1820. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Recife.rb +55 -0
  1821. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Regina.rb +72 -0
  1822. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Resolute.rb +163 -0
  1823. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Rio_Branco.rb +47 -0
  1824. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Rosario.rb +11 -0
  1825. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Santa_Isabel.rb +194 -0
  1826. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Santarem.rb +47 -0
  1827. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Santiago.rb +203 -0
  1828. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Santo_Domingo.rb +36 -0
  1829. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Sao_Paulo.rb +169 -0
  1830. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Scoresbysund.rb +161 -0
  1831. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Shiprock.rb +11 -0
  1832. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Sitka.rb +192 -0
  1833. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/St_Barthelemy.rb +11 -0
  1834. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/St_Johns.rb +286 -0
  1835. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/St_Kitts.rb +16 -0
  1836. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/St_Lucia.rb +18 -0
  1837. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/St_Thomas.rb +16 -0
  1838. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/St_Vincent.rb +18 -0
  1839. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Swift_Current.rb +42 -0
  1840. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Tegucigalpa.rb +23 -0
  1841. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Thule.rb +137 -0
  1842. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Thunder_Bay.rb +184 -0
  1843. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Tijuana.rb +194 -0
  1844. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Toronto.rb +277 -0
  1845. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Tortola.rb +16 -0
  1846. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Vancouver.rb +234 -0
  1847. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Virgin.rb +11 -0
  1848. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Whitehorse.rb +174 -0
  1849. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Winnipeg.rb +230 -0
  1850. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Yakutat.rb +191 -0
  1851. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/America/Yellowknife.rb +167 -0
  1852. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Antarctica/Casey.rb +19 -0
  1853. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Antarctica/Davis.rb +21 -0
  1854. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Antarctica/DumontDUrville.rb +19 -0
  1855. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Antarctica/Macquarie.rb +112 -0
  1856. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Antarctica/Mawson.rb +18 -0
  1857. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Antarctica/McMurdo.rb +169 -0
  1858. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Antarctica/Palmer.rb +170 -0
  1859. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Antarctica/Rothera.rb +16 -0
  1860. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Antarctica/South_Pole.rb +11 -0
  1861. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Antarctica/Syowa.rb +16 -0
  1862. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Antarctica/Vostok.rb +16 -0
  1863. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Arctic/Longyearbyen.rb +11 -0
  1864. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Aden.rb +16 -0
  1865. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Almaty.rb +65 -0
  1866. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Amman.rb +161 -0
  1867. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Anadyr.rb +84 -0
  1868. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Aqtau.rb +73 -0
  1869. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Aqtobe.rb +69 -0
  1870. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Ashgabat.rb +46 -0
  1871. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Ashkhabad.rb +11 -0
  1872. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Baghdad.rb +71 -0
  1873. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Bahrain.rb +18 -0
  1874. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Baku.rb +159 -0
  1875. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Bangkok.rb +18 -0
  1876. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Beirut.rb +183 -0
  1877. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Bishkek.rb +73 -0
  1878. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Brunei.rb +18 -0
  1879. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Calcutta.rb +11 -0
  1880. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Choibalsan.rb +66 -0
  1881. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Chongqing.rb +31 -0
  1882. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Chungking.rb +11 -0
  1883. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Colombo.rb +28 -0
  1884. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Dacca.rb +11 -0
  1885. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Damascus.rb +193 -0
  1886. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Dhaka.rb +28 -0
  1887. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Dili.rb +23 -0
  1888. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Dubai.rb +16 -0
  1889. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Dushanbe.rb +43 -0
  1890. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Gaza.rb +111 -0
  1891. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Harbin.rb +35 -0
  1892. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Hebron.rb +113 -0
  1893. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Ho_Chi_Minh.rb +21 -0
  1894. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Hong_Kong.rb +86 -0
  1895. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Hovd.rb +63 -0
  1896. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Irkutsk.rb +85 -0
  1897. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Istanbul.rb +11 -0
  1898. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Jakarta.rb +28 -0
  1899. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Jayapura.rb +19 -0
  1900. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Jerusalem.rb +161 -0
  1901. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Kabul.rb +18 -0
  1902. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Kamchatka.rb +82 -0
  1903. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Karachi.rb +30 -0
  1904. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Kashgar.rb +33 -0
  1905. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Kathmandu.rb +18 -0
  1906. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Katmandu.rb +11 -0
  1907. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Kolkata.rb +23 -0
  1908. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Krasnoyarsk.rb +83 -0
  1909. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Kuala_Lumpur.rb +29 -0
  1910. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Kuching.rb +38 -0
  1911. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Kuwait.rb +16 -0
  1912. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Macao.rb +11 -0
  1913. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Macau.rb +59 -0
  1914. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Magadan.rb +83 -0
  1915. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Makassar.rb +21 -0
  1916. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Manila.rb +28 -0
  1917. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Muscat.rb +16 -0
  1918. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Nicosia.rb +169 -0
  1919. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Novokuznetsk.rb +85 -0
  1920. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Novosibirsk.rb +83 -0
  1921. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Omsk.rb +83 -0
  1922. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Oral.rb +72 -0
  1923. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Phnom_Penh.rb +21 -0
  1924. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Pontianak.rb +28 -0
  1925. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Pyongyang.rb +23 -0
  1926. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Qatar.rb +18 -0
  1927. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Qyzylorda.rb +71 -0
  1928. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Rangoon.rb +22 -0
  1929. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Riyadh.rb +16 -0
  1930. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Riyadh87.rb +590 -0
  1931. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Riyadh88.rb +580 -0
  1932. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Riyadh89.rb +580 -0
  1933. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Saigon.rb +11 -0
  1934. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Sakhalin.rb +85 -0
  1935. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Samarkand.rb +45 -0
  1936. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Seoul.rb +32 -0
  1937. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Shanghai.rb +33 -0
  1938. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Singapore.rb +31 -0
  1939. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Taipei.rb +57 -0
  1940. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Tashkent.rb +45 -0
  1941. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Tbilisi.rb +76 -0
  1942. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Tehran.rb +119 -0
  1943. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Tel_Aviv.rb +11 -0
  1944. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Thimbu.rb +11 -0
  1945. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Thimphu.rb +18 -0
  1946. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Tokyo.rb +28 -0
  1947. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Ujung_Pandang.rb +11 -0
  1948. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Ulaanbaatar.rb +63 -0
  1949. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Ulan_Bator.rb +11 -0
  1950. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Urumqi.rb +31 -0
  1951. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Vientiane.rb +21 -0
  1952. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Vladivostok.rb +84 -0
  1953. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Yakutsk.rb +83 -0
  1954. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Yekaterinburg.rb +85 -0
  1955. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Asia/Yerevan.rb +163 -0
  1956. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Atlantic/Azores.rb +268 -0
  1957. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Atlantic/Bermuda.rb +171 -0
  1958. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Atlantic/Canary.rb +161 -0
  1959. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Atlantic/Cape_Verde.rb +21 -0
  1960. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Atlantic/Faeroe.rb +11 -0
  1961. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Atlantic/Faroe.rb +157 -0
  1962. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Atlantic/Jan_Mayen.rb +11 -0
  1963. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Atlantic/Madeira.rb +267 -0
  1964. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Atlantic/Reykjavik.rb +83 -0
  1965. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Atlantic/South_Georgia.rb +16 -0
  1966. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Atlantic/St_Helena.rb +18 -0
  1967. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Atlantic/Stanley.rb +166 -0
  1968. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Australia/ACT.rb +11 -0
  1969. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Australia/Adelaide.rb +185 -0
  1970. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Australia/Brisbane.rb +33 -0
  1971. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Australia/Broken_Hill.rb +187 -0
  1972. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Australia/Canberra.rb +11 -0
  1973. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Australia/Currie.rb +183 -0
  1974. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Australia/Darwin.rb +27 -0
  1975. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Australia/Eucla.rb +35 -0
  1976. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Australia/Hobart.rb +191 -0
  1977. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Australia/LHI.rb +11 -0
  1978. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Australia/Lindeman.rb +37 -0
  1979. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Australia/Lord_Howe.rb +158 -0
  1980. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Australia/Melbourne.rb +183 -0
  1981. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Australia/NSW.rb +11 -0
  1982. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Australia/North.rb +11 -0
  1983. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Australia/Perth.rb +35 -0
  1984. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Australia/Queensland.rb +11 -0
  1985. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Australia/South.rb +11 -0
  1986. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Australia/Sydney.rb +183 -0
  1987. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Australia/Tasmania.rb +11 -0
  1988. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Australia/Victoria.rb +11 -0
  1989. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Australia/West.rb +11 -0
  1990. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Australia/Yancowinna.rb +11 -0
  1991. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Brazil/Acre.rb +11 -0
  1992. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Brazil/DeNoronha.rb +11 -0
  1993. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Brazil/East.rb +11 -0
  1994. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Brazil/West.rb +11 -0
  1995. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/CET.rb +175 -0
  1996. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/CST6CDT.rb +190 -0
  1997. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Canada/Atlantic.rb +11 -0
  1998. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Canada/Central.rb +11 -0
  1999. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Canada/East__m__Saskatchewan.rb +11 -0
  2000. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Canada/Eastern.rb +11 -0
  2001. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Canada/Mountain.rb +11 -0
  2002. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Canada/Newfoundland.rb +11 -0
  2003. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Canada/Pacific.rb +11 -0
  2004. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Canada/Saskatchewan.rb +11 -0
  2005. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Canada/Yukon.rb +11 -0
  2006. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Chile/Continental.rb +11 -0
  2007. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Chile/EasterIsland.rb +11 -0
  2008. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Cuba.rb +9 -0
  2009. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/EET.rb +161 -0
  2010. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/EST.rb +12 -0
  2011. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/EST5EDT.rb +190 -0
  2012. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Egypt.rb +9 -0
  2013. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Eire.rb +9 -0
  2014. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Etc/GMT.rb +14 -0
  2015. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Etc/GMT0.rb +11 -0
  2016. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Etc/GMT__m__0.rb +11 -0
  2017. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Etc/GMT__m__1.rb +14 -0
  2018. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Etc/GMT__m__10.rb +14 -0
  2019. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Etc/GMT__m__11.rb +14 -0
  2020. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Etc/GMT__m__12.rb +14 -0
  2021. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Etc/GMT__m__13.rb +14 -0
  2022. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Etc/GMT__m__14.rb +14 -0
  2023. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Etc/GMT__m__2.rb +14 -0
  2024. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Etc/GMT__m__3.rb +14 -0
  2025. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Etc/GMT__m__4.rb +14 -0
  2026. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Etc/GMT__m__5.rb +14 -0
  2027. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Etc/GMT__m__6.rb +14 -0
  2028. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Etc/GMT__m__7.rb +14 -0
  2029. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Etc/GMT__m__8.rb +14 -0
  2030. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Etc/GMT__m__9.rb +14 -0
  2031. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Etc/GMT__p__0.rb +11 -0
  2032. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Etc/GMT__p__1.rb +14 -0
  2033. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Etc/GMT__p__10.rb +14 -0
  2034. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Etc/GMT__p__11.rb +14 -0
  2035. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Etc/GMT__p__12.rb +14 -0
  2036. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Etc/GMT__p__2.rb +14 -0
  2037. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Etc/GMT__p__3.rb +14 -0
  2038. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Etc/GMT__p__4.rb +14 -0
  2039. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Etc/GMT__p__5.rb +14 -0
  2040. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Etc/GMT__p__6.rb +14 -0
  2041. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Etc/GMT__p__7.rb +14 -0
  2042. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Etc/GMT__p__8.rb +14 -0
  2043. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Etc/GMT__p__9.rb +14 -0
  2044. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Etc/Greenwich.rb +11 -0
  2045. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Etc/UCT.rb +14 -0
  2046. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Etc/UTC.rb +14 -0
  2047. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Etc/Universal.rb +11 -0
  2048. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Etc/Zulu.rb +11 -0
  2049. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Europe/Amsterdam.rb +226 -0
  2050. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Europe/Andorra.rb +151 -0
  2051. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Europe/Athens.rb +183 -0
  2052. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Europe/Belfast.rb +11 -0
  2053. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Europe/Belgrade.rb +161 -0
  2054. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Europe/Berlin.rb +186 -0
  2055. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Europe/Bratislava.rb +11 -0
  2056. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Europe/Brussels.rb +230 -0
  2057. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Europe/Bucharest.rb +179 -0
  2058. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Europe/Budapest.rb +195 -0
  2059. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Europe/Chisinau.rb +187 -0
  2060. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Europe/Copenhagen.rb +177 -0
  2061. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Europe/Dublin.rb +274 -0
  2062. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Europe/Gibraltar.rb +243 -0
  2063. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Europe/Guernsey.rb +11 -0
  2064. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Europe/Helsinki.rb +161 -0
  2065. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Europe/Isle_of_Man.rb +11 -0
  2066. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Europe/Istanbul.rb +216 -0
  2067. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Europe/Jersey.rb +11 -0
  2068. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Europe/Kaliningrad.rb +101 -0
  2069. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Europe/Kiev.rb +88 -0
  2070. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Europe/Lisbon.rb +266 -0
  2071. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Europe/Ljubljana.rb +11 -0
  2072. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Europe/London.rb +286 -0
  2073. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Europe/Luxembourg.rb +229 -0
  2074. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Europe/Madrid.rb +209 -0
  2075. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Europe/Malta.rb +211 -0
  2076. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Europe/Mariehamn.rb +11 -0
  2077. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Europe/Minsk.rb +90 -0
  2078. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Europe/Monaco.rb +231 -0
  2079. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Europe/Moscow.rb +101 -0
  2080. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Europe/Nicosia.rb +11 -0
  2081. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Europe/Oslo.rb +183 -0
  2082. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Europe/Paris.rb +230 -0
  2083. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Europe/Podgorica.rb +11 -0
  2084. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Europe/Prague.rb +185 -0
  2085. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Europe/Riga.rb +174 -0
  2086. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Europe/Rome.rb +213 -0
  2087. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Europe/Samara.rb +88 -0
  2088. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Europe/San_Marino.rb +11 -0
  2089. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Europe/Sarajevo.rb +11 -0
  2090. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Europe/Simferopol.rb +90 -0
  2091. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Europe/Skopje.rb +11 -0
  2092. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Europe/Sofia.rb +171 -0
  2093. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Europe/Stockholm.rb +163 -0
  2094. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Europe/Tallinn.rb +170 -0
  2095. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Europe/Tirane.rb +175 -0
  2096. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Europe/Tiraspol.rb +11 -0
  2097. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Europe/Uzhgorod.rb +88 -0
  2098. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Europe/Vaduz.rb +157 -0
  2099. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Europe/Vatican.rb +11 -0
  2100. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Europe/Vienna.rb +181 -0
  2101. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Europe/Vilnius.rb +168 -0
  2102. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Europe/Volgograd.rb +85 -0
  2103. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Europe/Warsaw.rb +210 -0
  2104. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Europe/Zagreb.rb +11 -0
  2105. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Europe/Zaporozhye.rb +91 -0
  2106. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Europe/Zurich.rb +163 -0
  2107. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/GB.rb +9 -0
  2108. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/GB__m__Eire.rb +9 -0
  2109. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/GMT.rb +9 -0
  2110. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/GMT0.rb +9 -0
  2111. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/GMT__m__0.rb +9 -0
  2112. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/GMT__p__0.rb +9 -0
  2113. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Greenwich.rb +9 -0
  2114. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/HST.rb +12 -0
  2115. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Hongkong.rb +9 -0
  2116. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Iceland.rb +9 -0
  2117. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Indian/Antananarivo.rb +19 -0
  2118. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Indian/Chagos.rb +18 -0
  2119. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Indian/Christmas.rb +16 -0
  2120. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Indian/Cocos.rb +16 -0
  2121. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Indian/Comoro.rb +16 -0
  2122. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Indian/Kerguelen.rb +16 -0
  2123. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Indian/Mahe.rb +16 -0
  2124. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Indian/Maldives.rb +18 -0
  2125. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Indian/Mauritius.rb +21 -0
  2126. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Indian/Mayotte.rb +16 -0
  2127. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Indian/Reunion.rb +16 -0
  2128. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Iran.rb +9 -0
  2129. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Israel.rb +9 -0
  2130. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Jamaica.rb +9 -0
  2131. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Japan.rb +9 -0
  2132. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Kwajalein.rb +9 -0
  2133. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Libya.rb +9 -0
  2134. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/MET.rb +175 -0
  2135. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/MST.rb +12 -0
  2136. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/MST7MDT.rb +190 -0
  2137. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Mexico/BajaNorte.rb +11 -0
  2138. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Mexico/BajaSur.rb +11 -0
  2139. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Mexico/General.rb +11 -0
  2140. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Mideast/Riyadh87.rb +11 -0
  2141. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Mideast/Riyadh88.rb +11 -0
  2142. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Mideast/Riyadh89.rb +11 -0
  2143. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/NZ.rb +9 -0
  2144. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/NZ__m__CHAT.rb +9 -0
  2145. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Navajo.rb +9 -0
  2146. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/PRC.rb +9 -0
  2147. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/PST8PDT.rb +190 -0
  2148. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Pacific/Apia.rb +28 -0
  2149. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Pacific/Auckland.rb +200 -0
  2150. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Pacific/Chatham.rb +169 -0
  2151. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Pacific/Chuuk.rb +16 -0
  2152. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Pacific/Easter.rb +188 -0
  2153. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Pacific/Efate.rb +37 -0
  2154. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Pacific/Enderbury.rb +20 -0
  2155. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Pacific/Fakaofo.rb +16 -0
  2156. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Pacific/Fiji.rb +25 -0
  2157. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Pacific/Funafuti.rb +16 -0
  2158. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Pacific/Galapagos.rb +18 -0
  2159. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Pacific/Gambier.rb +16 -0
  2160. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Pacific/Guadalcanal.rb +16 -0
  2161. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Pacific/Guam.rb +20 -0
  2162. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Pacific/Honolulu.rb +23 -0
  2163. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Pacific/Johnston.rb +14 -0
  2164. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Pacific/Kiritimati.rb +20 -0
  2165. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Pacific/Kosrae.rb +19 -0
  2166. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Pacific/Kwajalein.rb +20 -0
  2167. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Pacific/Majuro.rb +18 -0
  2168. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Pacific/Marquesas.rb +16 -0
  2169. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Pacific/Midway.rb +23 -0
  2170. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Pacific/Nauru.rb +21 -0
  2171. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Pacific/Niue.rb +20 -0
  2172. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Pacific/Norfolk.rb +18 -0
  2173. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Pacific/Noumea.rb +23 -0
  2174. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Pacific/Pago_Pago.rb +24 -0
  2175. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Pacific/Palau.rb +16 -0
  2176. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Pacific/Pitcairn.rb +18 -0
  2177. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Pacific/Pohnpei.rb +16 -0
  2178. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Pacific/Ponape.rb +11 -0
  2179. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Pacific/Port_Moresby.rb +18 -0
  2180. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Pacific/Rarotonga.rb +44 -0
  2181. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Pacific/Saipan.rb +22 -0
  2182. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Pacific/Samoa.rb +11 -0
  2183. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Pacific/Tahiti.rb +16 -0
  2184. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Pacific/Tarawa.rb +16 -0
  2185. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Pacific/Tongatapu.rb +25 -0
  2186. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Pacific/Truk.rb +11 -0
  2187. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Pacific/Wake.rb +16 -0
  2188. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Pacific/Wallis.rb +16 -0
  2189. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Pacific/Yap.rb +11 -0
  2190. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Poland.rb +9 -0
  2191. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Portugal.rb +9 -0
  2192. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/ROC.rb +9 -0
  2193. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/ROK.rb +9 -0
  2194. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Singapore.rb +9 -0
  2195. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Turkey.rb +9 -0
  2196. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/UCT.rb +9 -0
  2197. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/US/Alaska.rb +11 -0
  2198. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/US/Aleutian.rb +11 -0
  2199. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/US/Arizona.rb +11 -0
  2200. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/US/Central.rb +11 -0
  2201. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/US/East__m__Indiana.rb +11 -0
  2202. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/US/Eastern.rb +11 -0
  2203. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/US/Hawaii.rb +11 -0
  2204. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/US/Indiana__m__Starke.rb +11 -0
  2205. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/US/Michigan.rb +11 -0
  2206. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/US/Mountain.rb +11 -0
  2207. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/US/Pacific.rb +11 -0
  2208. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/US/Pacific__m__New.rb +11 -0
  2209. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/US/Samoa.rb +11 -0
  2210. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/UTC.rb +9 -0
  2211. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Universal.rb +9 -0
  2212. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/WET.rb +161 -0
  2213. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/W__m__SU.rb +9 -0
  2214. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/definitions/Zulu.rb +9 -0
  2215. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/indexes/countries.rb +918 -0
  2216. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/indexes/timezones.rb +588 -0
  2217. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/info_timezone.rb +50 -0
  2218. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/linked_timezone.rb +49 -0
  2219. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/linked_timezone_info.rb +42 -0
  2220. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/offset_rationals.rb +97 -0
  2221. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/ruby_core_support.rb +80 -0
  2222. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/time_or_datetime.rb +291 -0
  2223. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/timezone.rb +535 -0
  2224. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/timezone_definition.rb +53 -0
  2225. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/timezone_index_definition.rb +70 -0
  2226. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/timezone_info.rb +40 -0
  2227. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/timezone_offset_info.rb +94 -0
  2228. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/timezone_period.rb +195 -0
  2229. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/timezone_proxy.rb +83 -0
  2230. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/timezone_transition_info.rb +128 -0
  2231. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/lib/tzinfo/tzdataparser.rb +1168 -0
  2232. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/test/tc_country.rb +156 -0
  2233. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/test/tc_country_index_definition.rb +70 -0
  2234. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/test/tc_country_info.rb +72 -0
  2235. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/test/tc_country_timezone.rb +121 -0
  2236. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/test/tc_data_timezone.rb +68 -0
  2237. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/test/tc_data_timezone_info.rb +282 -0
  2238. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/test/tc_info_timezone.rb +36 -0
  2239. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/test/tc_linked_timezone.rb +102 -0
  2240. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/test/tc_linked_timezone_info.rb +18 -0
  2241. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/test/tc_offset_rationals.rb +25 -0
  2242. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/test/tc_ruby_core_support.rb +31 -0
  2243. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/test/tc_time_or_datetime.rb +422 -0
  2244. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/test/tc_timezone.rb +964 -0
  2245. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/test/tc_timezone_definition.rb +115 -0
  2246. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/test/tc_timezone_index_definition.rb +75 -0
  2247. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/test/tc_timezone_info.rb +13 -0
  2248. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/test/tc_timezone_london.rb +114 -0
  2249. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/test/tc_timezone_melbourne.rb +114 -0
  2250. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/test/tc_timezone_new_york.rb +114 -0
  2251. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/test/tc_timezone_offset_info.rb +116 -0
  2252. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/test/tc_timezone_period.rb +509 -0
  2253. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/test/tc_timezone_proxy.rb +87 -0
  2254. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/test/tc_timezone_transition_info.rb +194 -0
  2255. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/test/tc_timezone_utc.rb +29 -0
  2256. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/test/test_utils.rb +21 -0
  2257. data/dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/test/ts_all.rb +9 -0
  2258. data/dirty_history/ruby/1.9.1/specifications/activemodel-3.1.1.gemspec +35 -0
  2259. data/dirty_history/ruby/1.9.1/specifications/activerecord-3.1.1.gemspec +41 -0
  2260. data/dirty_history/ruby/1.9.1/specifications/activesupport-3.1.1.gemspec +29 -0
  2261. data/dirty_history/ruby/1.9.1/specifications/arel-2.2.1.gemspec +42 -0
  2262. data/dirty_history/ruby/1.9.1/specifications/builder-3.0.0.gemspec +34 -0
  2263. data/dirty_history/ruby/1.9.1/specifications/dirty_history-0.2.0.gemspec +12 -6
  2264. data/dirty_history/ruby/1.9.1/specifications/i18n-0.6.0.gemspec +38 -0
  2265. data/dirty_history/ruby/1.9.1/specifications/jeweler-1.6.4.gemspec +77 -0
  2266. data/dirty_history/ruby/1.9.1/specifications/multi_json-1.0.3.gemspec +40 -0
  2267. data/dirty_history/ruby/1.9.1/specifications/rails3_acts_as_paranoid-0.1.1.gemspec +29 -0
  2268. data/dirty_history/ruby/1.9.1/specifications/tzinfo-0.3.30.gemspec +29 -0
  2269. data/lib/dirty_history.rb +2 -2
  2270. data/lib/dirty_history/dirty_history_mixin.rb +1 -1
  2271. data/lib/dirty_history/dirty_history_record.rb +6 -4
  2272. data/lib/generators/dirty_history/migration/templates/active_record/migration.rb +1 -0
  2273. metadata +2290 -17
@@ -0,0 +1,2190 @@
1
+ begin
2
+ require 'psych'
3
+ rescue LoadError
4
+ end
5
+
6
+ require 'yaml'
7
+ require 'set'
8
+ require 'active_support/benchmarkable'
9
+ require 'active_support/dependencies'
10
+ require 'active_support/descendants_tracker'
11
+ require 'active_support/time'
12
+ require 'active_support/core_ext/class/attribute'
13
+ require 'active_support/core_ext/class/attribute_accessors'
14
+ require 'active_support/core_ext/class/delegating_attributes'
15
+ require 'active_support/core_ext/class/attribute'
16
+ require 'active_support/core_ext/array/extract_options'
17
+ require 'active_support/core_ext/hash/deep_merge'
18
+ require 'active_support/core_ext/hash/indifferent_access'
19
+ require 'active_support/core_ext/hash/slice'
20
+ require 'active_support/core_ext/string/behavior'
21
+ require 'active_support/core_ext/kernel/singleton_class'
22
+ require 'active_support/core_ext/module/delegation'
23
+ require 'active_support/core_ext/module/introspection'
24
+ require 'active_support/core_ext/object/duplicable'
25
+ require 'active_support/core_ext/object/blank'
26
+ require 'active_support/deprecation'
27
+ require 'arel'
28
+ require 'active_record/errors'
29
+ require 'active_record/log_subscriber'
30
+
31
+ module ActiveRecord #:nodoc:
32
+ # = Active Record
33
+ #
34
+ # Active Record objects don't specify their attributes directly, but rather infer them from
35
+ # the table definition with which they're linked. Adding, removing, and changing attributes
36
+ # and their type is done directly in the database. Any change is instantly reflected in the
37
+ # Active Record objects. The mapping that binds a given Active Record class to a certain
38
+ # database table will happen automatically in most common cases, but can be overwritten for the uncommon ones.
39
+ #
40
+ # See the mapping rules in table_name and the full example in link:files/activerecord/README_rdoc.html for more insight.
41
+ #
42
+ # == Creation
43
+ #
44
+ # Active Records accept constructor parameters either in a hash or as a block. The hash
45
+ # method is especially useful when you're receiving the data from somewhere else, like an
46
+ # HTTP request. It works like this:
47
+ #
48
+ # user = User.new(:name => "David", :occupation => "Code Artist")
49
+ # user.name # => "David"
50
+ #
51
+ # You can also use block initialization:
52
+ #
53
+ # user = User.new do |u|
54
+ # u.name = "David"
55
+ # u.occupation = "Code Artist"
56
+ # end
57
+ #
58
+ # And of course you can just create a bare object and specify the attributes after the fact:
59
+ #
60
+ # user = User.new
61
+ # user.name = "David"
62
+ # user.occupation = "Code Artist"
63
+ #
64
+ # == Conditions
65
+ #
66
+ # Conditions can either be specified as a string, array, or hash representing the WHERE-part of an SQL statement.
67
+ # The array form is to be used when the condition input is tainted and requires sanitization. The string form can
68
+ # be used for statements that don't involve tainted data. The hash form works much like the array form, except
69
+ # only equality and range is possible. Examples:
70
+ #
71
+ # class User < ActiveRecord::Base
72
+ # def self.authenticate_unsafely(user_name, password)
73
+ # where("user_name = '#{user_name}' AND password = '#{password}'").first
74
+ # end
75
+ #
76
+ # def self.authenticate_safely(user_name, password)
77
+ # where("user_name = ? AND password = ?", user_name, password).first
78
+ # end
79
+ #
80
+ # def self.authenticate_safely_simply(user_name, password)
81
+ # where(:user_name => user_name, :password => password).first
82
+ # end
83
+ # end
84
+ #
85
+ # The <tt>authenticate_unsafely</tt> method inserts the parameters directly into the query
86
+ # and is thus susceptible to SQL-injection attacks if the <tt>user_name</tt> and +password+
87
+ # parameters come directly from an HTTP request. The <tt>authenticate_safely</tt> and
88
+ # <tt>authenticate_safely_simply</tt> both will sanitize the <tt>user_name</tt> and +password+
89
+ # before inserting them in the query, which will ensure that an attacker can't escape the
90
+ # query and fake the login (or worse).
91
+ #
92
+ # When using multiple parameters in the conditions, it can easily become hard to read exactly
93
+ # what the fourth or fifth question mark is supposed to represent. In those cases, you can
94
+ # resort to named bind variables instead. That's done by replacing the question marks with
95
+ # symbols and supplying a hash with values for the matching symbol keys:
96
+ #
97
+ # Company.where(
98
+ # "id = :id AND name = :name AND division = :division AND created_at > :accounting_date",
99
+ # { :id => 3, :name => "37signals", :division => "First", :accounting_date => '2005-01-01' }
100
+ # ).first
101
+ #
102
+ # Similarly, a simple hash without a statement will generate conditions based on equality with the SQL AND
103
+ # operator. For instance:
104
+ #
105
+ # Student.where(:first_name => "Harvey", :status => 1)
106
+ # Student.where(params[:student])
107
+ #
108
+ # A range may be used in the hash to use the SQL BETWEEN operator:
109
+ #
110
+ # Student.where(:grade => 9..12)
111
+ #
112
+ # An array may be used in the hash to use the SQL IN operator:
113
+ #
114
+ # Student.where(:grade => [9,11,12])
115
+ #
116
+ # When joining tables, nested hashes or keys written in the form 'table_name.column_name'
117
+ # can be used to qualify the table name of a particular condition. For instance:
118
+ #
119
+ # Student.joins(:schools).where(:schools => { :type => 'public' })
120
+ # Student.joins(:schools).where('schools.type' => 'public' )
121
+ #
122
+ # == Overwriting default accessors
123
+ #
124
+ # All column values are automatically available through basic accessors on the Active Record
125
+ # object, but sometimes you want to specialize this behavior. This can be done by overwriting
126
+ # the default accessors (using the same name as the attribute) and calling
127
+ # <tt>read_attribute(attr_name)</tt> and <tt>write_attribute(attr_name, value)</tt> to actually
128
+ # change things.
129
+ #
130
+ # class Song < ActiveRecord::Base
131
+ # # Uses an integer of seconds to hold the length of the song
132
+ #
133
+ # def length=(minutes)
134
+ # write_attribute(:length, minutes.to_i * 60)
135
+ # end
136
+ #
137
+ # def length
138
+ # read_attribute(:length) / 60
139
+ # end
140
+ # end
141
+ #
142
+ # You can alternatively use <tt>self[:attribute]=(value)</tt> and <tt>self[:attribute]</tt>
143
+ # instead of <tt>write_attribute(:attribute, value)</tt> and <tt>read_attribute(:attribute)</tt>.
144
+ #
145
+ # == Attribute query methods
146
+ #
147
+ # In addition to the basic accessors, query methods are also automatically available on the Active Record object.
148
+ # Query methods allow you to test whether an attribute value is present.
149
+ #
150
+ # For example, an Active Record User with the <tt>name</tt> attribute has a <tt>name?</tt> method that you can call
151
+ # to determine whether the user has a name:
152
+ #
153
+ # user = User.new(:name => "David")
154
+ # user.name? # => true
155
+ #
156
+ # anonymous = User.new(:name => "")
157
+ # anonymous.name? # => false
158
+ #
159
+ # == Accessing attributes before they have been typecasted
160
+ #
161
+ # Sometimes you want to be able to read the raw attribute data without having the column-determined
162
+ # typecast run its course first. That can be done by using the <tt><attribute>_before_type_cast</tt>
163
+ # accessors that all attributes have. For example, if your Account model has a <tt>balance</tt> attribute,
164
+ # you can call <tt>account.balance_before_type_cast</tt> or <tt>account.id_before_type_cast</tt>.
165
+ #
166
+ # This is especially useful in validation situations where the user might supply a string for an
167
+ # integer field and you want to display the original string back in an error message. Accessing the
168
+ # attribute normally would typecast the string to 0, which isn't what you want.
169
+ #
170
+ # == Dynamic attribute-based finders
171
+ #
172
+ # Dynamic attribute-based finders are a cleaner way of getting (and/or creating) objects
173
+ # by simple queries without turning to SQL. They work by appending the name of an attribute
174
+ # to <tt>find_by_</tt>, <tt>find_last_by_</tt>, or <tt>find_all_by_</tt> and thus produces finders
175
+ # like <tt>Person.find_by_user_name</tt>, <tt>Person.find_all_by_last_name</tt>, and
176
+ # <tt>Payment.find_by_transaction_id</tt>. Instead of writing
177
+ # <tt>Person.where(:user_name => user_name).first</tt>, you just do <tt>Person.find_by_user_name(user_name)</tt>.
178
+ # And instead of writing <tt>Person.where(:last_name => last_name).all</tt>, you just do
179
+ # <tt>Person.find_all_by_last_name(last_name)</tt>.
180
+ #
181
+ # It's also possible to use multiple attributes in the same find by separating them with "_and_".
182
+ #
183
+ # Person.where(:user_name => user_name, :password => password).first
184
+ # Person.find_by_user_name_and_password(user_name, password) # with dynamic finder
185
+ #
186
+ # It's even possible to call these dynamic finder methods on relations and named scopes.
187
+ #
188
+ # Payment.order("created_on").find_all_by_amount(50)
189
+ # Payment.pending.find_last_by_amount(100)
190
+ #
191
+ # The same dynamic finder style can be used to create the object if it doesn't already exist.
192
+ # This dynamic finder is called with <tt>find_or_create_by_</tt> and will return the object if
193
+ # it already exists and otherwise creates it, then returns it. Protected attributes won't be set
194
+ # unless they are given in a block.
195
+ #
196
+ # # No 'Summer' tag exists
197
+ # Tag.find_or_create_by_name("Summer") # equal to Tag.create(:name => "Summer")
198
+ #
199
+ # # Now the 'Summer' tag does exist
200
+ # Tag.find_or_create_by_name("Summer") # equal to Tag.find_by_name("Summer")
201
+ #
202
+ # # Now 'Bob' exist and is an 'admin'
203
+ # User.find_or_create_by_name('Bob', :age => 40) { |u| u.admin = true }
204
+ #
205
+ # Use the <tt>find_or_initialize_by_</tt> finder if you want to return a new record without
206
+ # saving it first. Protected attributes won't be set unless they are given in a block.
207
+ #
208
+ # # No 'Winter' tag exists
209
+ # winter = Tag.find_or_initialize_by_name("Winter")
210
+ # winter.persisted? # false
211
+ #
212
+ # To find by a subset of the attributes to be used for instantiating a new object, pass a hash instead of
213
+ # a list of parameters.
214
+ #
215
+ # Tag.find_or_create_by_name(:name => "rails", :creator => current_user)
216
+ #
217
+ # That will either find an existing tag named "rails", or create a new one while setting the
218
+ # user that created it.
219
+ #
220
+ # Just like <tt>find_by_*</tt>, you can also use <tt>scoped_by_*</tt> to retrieve data. The good thing about
221
+ # using this feature is that the very first time result is returned using <tt>method_missing</tt> technique
222
+ # but after that the method is declared on the class. Henceforth <tt>method_missing</tt> will not be hit.
223
+ #
224
+ # User.scoped_by_user_name('David')
225
+ #
226
+ # == Saving arrays, hashes, and other non-mappable objects in text columns
227
+ #
228
+ # Active Record can serialize any object in text columns using YAML. To do so, you must
229
+ # specify this with a call to the class method +serialize+.
230
+ # This makes it possible to store arrays, hashes, and other non-mappable objects without doing
231
+ # any additional work.
232
+ #
233
+ # class User < ActiveRecord::Base
234
+ # serialize :preferences
235
+ # end
236
+ #
237
+ # user = User.create(:preferences => { "background" => "black", "display" => large })
238
+ # User.find(user.id).preferences # => { "background" => "black", "display" => large }
239
+ #
240
+ # You can also specify a class option as the second parameter that'll raise an exception
241
+ # if a serialized object is retrieved as a descendant of a class not in the hierarchy.
242
+ #
243
+ # class User < ActiveRecord::Base
244
+ # serialize :preferences, Hash
245
+ # end
246
+ #
247
+ # user = User.create(:preferences => %w( one two three ))
248
+ # User.find(user.id).preferences # raises SerializationTypeMismatch
249
+ #
250
+ # When you specify a class option, the default value for that attribute will be a new
251
+ # instance of that class.
252
+ #
253
+ # class User < ActiveRecord::Base
254
+ # serialize :preferences, OpenStruct
255
+ # end
256
+ #
257
+ # user = User.new
258
+ # user.preferences.theme_color = "red"
259
+ #
260
+ #
261
+ # == Single table inheritance
262
+ #
263
+ # Active Record allows inheritance by storing the name of the class in a column that by
264
+ # default is named "type" (can be changed by overwriting <tt>Base.inheritance_column</tt>).
265
+ # This means that an inheritance looking like this:
266
+ #
267
+ # class Company < ActiveRecord::Base; end
268
+ # class Firm < Company; end
269
+ # class Client < Company; end
270
+ # class PriorityClient < Client; end
271
+ #
272
+ # When you do <tt>Firm.create(:name => "37signals")</tt>, this record will be saved in
273
+ # the companies table with type = "Firm". You can then fetch this row again using
274
+ # <tt>Company.where(:name => '37signals').first</tt> and it will return a Firm object.
275
+ #
276
+ # If you don't have a type column defined in your table, single-table inheritance won't
277
+ # be triggered. In that case, it'll work just like normal subclasses with no special magic
278
+ # for differentiating between them or reloading the right type with find.
279
+ #
280
+ # Note, all the attributes for all the cases are kept in the same table. Read more:
281
+ # http://www.martinfowler.com/eaaCatalog/singleTableInheritance.html
282
+ #
283
+ # == Connection to multiple databases in different models
284
+ #
285
+ # Connections are usually created through ActiveRecord::Base.establish_connection and retrieved
286
+ # by ActiveRecord::Base.connection. All classes inheriting from ActiveRecord::Base will use this
287
+ # connection. But you can also set a class-specific connection. For example, if Course is an
288
+ # ActiveRecord::Base, but resides in a different database, you can just say <tt>Course.establish_connection</tt>
289
+ # and Course and all of its subclasses will use this connection instead.
290
+ #
291
+ # This feature is implemented by keeping a connection pool in ActiveRecord::Base that is
292
+ # a Hash indexed by the class. If a connection is requested, the retrieve_connection method
293
+ # will go up the class-hierarchy until a connection is found in the connection pool.
294
+ #
295
+ # == Exceptions
296
+ #
297
+ # * ActiveRecordError - Generic error class and superclass of all other errors raised by Active Record.
298
+ # * AdapterNotSpecified - The configuration hash used in <tt>establish_connection</tt> didn't include an
299
+ # <tt>:adapter</tt> key.
300
+ # * AdapterNotFound - The <tt>:adapter</tt> key used in <tt>establish_connection</tt> specified a
301
+ # non-existent adapter
302
+ # (or a bad spelling of an existing one).
303
+ # * AssociationTypeMismatch - The object assigned to the association wasn't of the type
304
+ # specified in the association definition.
305
+ # * SerializationTypeMismatch - The serialized object wasn't of the class specified as the second parameter.
306
+ # * ConnectionNotEstablished+ - No connection has been established. Use <tt>establish_connection</tt>
307
+ # before querying.
308
+ # * RecordNotFound - No record responded to the +find+ method. Either the row with the given ID doesn't exist
309
+ # or the row didn't meet the additional restrictions. Some +find+ calls do not raise this exception to signal
310
+ # nothing was found, please check its documentation for further details.
311
+ # * StatementInvalid - The database server rejected the SQL statement. The precise error is added in the message.
312
+ # * MultiparameterAssignmentErrors - Collection of errors that occurred during a mass assignment using the
313
+ # <tt>attributes=</tt> method. The +errors+ property of this exception contains an array of
314
+ # AttributeAssignmentError
315
+ # objects that should be inspected to determine which attributes triggered the errors.
316
+ # * AttributeAssignmentError - An error occurred while doing a mass assignment through the
317
+ # <tt>attributes=</tt> method.
318
+ # You can inspect the +attribute+ property of the exception object to determine which attribute
319
+ # triggered the error.
320
+ #
321
+ # *Note*: The attributes listed are class-level attributes (accessible from both the class and instance level).
322
+ # So it's possible to assign a logger to the class through <tt>Base.logger=</tt> which will then be used by all
323
+ # instances in the current object space.
324
+ class Base
325
+ ##
326
+ # :singleton-method:
327
+ # Accepts a logger conforming to the interface of Log4r or the default Ruby 1.8+ Logger class,
328
+ # which is then passed on to any new database connections made and which can be retrieved on both
329
+ # a class and instance level by calling +logger+.
330
+ cattr_accessor :logger, :instance_writer => false
331
+
332
+ ##
333
+ # :singleton-method:
334
+ # Contains the database configuration - as is typically stored in config/database.yml -
335
+ # as a Hash.
336
+ #
337
+ # For example, the following database.yml...
338
+ #
339
+ # development:
340
+ # adapter: sqlite3
341
+ # database: db/development.sqlite3
342
+ #
343
+ # production:
344
+ # adapter: sqlite3
345
+ # database: db/production.sqlite3
346
+ #
347
+ # ...would result in ActiveRecord::Base.configurations to look like this:
348
+ #
349
+ # {
350
+ # 'development' => {
351
+ # 'adapter' => 'sqlite3',
352
+ # 'database' => 'db/development.sqlite3'
353
+ # },
354
+ # 'production' => {
355
+ # 'adapter' => 'sqlite3',
356
+ # 'database' => 'db/production.sqlite3'
357
+ # }
358
+ # }
359
+ cattr_accessor :configurations, :instance_writer => false
360
+ @@configurations = {}
361
+
362
+ ##
363
+ # :singleton-method:
364
+ # Accessor for the prefix type that will be prepended to every primary key column name.
365
+ # The options are :table_name and :table_name_with_underscore. If the first is specified,
366
+ # the Product class will look for "productid" instead of "id" as the primary column. If the
367
+ # latter is specified, the Product class will look for "product_id" instead of "id". Remember
368
+ # that this is a global setting for all Active Records.
369
+ cattr_accessor :primary_key_prefix_type, :instance_writer => false
370
+ @@primary_key_prefix_type = nil
371
+
372
+ ##
373
+ # :singleton-method:
374
+ # Accessor for the name of the prefix string to prepend to every table name. So if set
375
+ # to "basecamp_", all table names will be named like "basecamp_projects", "basecamp_people",
376
+ # etc. This is a convenient way of creating a namespace for tables in a shared database.
377
+ # By default, the prefix is the empty string.
378
+ #
379
+ # If you are organising your models within modules you can add a prefix to the models within
380
+ # a namespace by defining a singleton method in the parent module called table_name_prefix which
381
+ # returns your chosen prefix.
382
+ class_attribute :table_name_prefix, :instance_writer => false
383
+ self.table_name_prefix = ""
384
+
385
+ ##
386
+ # :singleton-method:
387
+ # Works like +table_name_prefix+, but appends instead of prepends (set to "_basecamp" gives "projects_basecamp",
388
+ # "people_basecamp"). By default, the suffix is the empty string.
389
+ class_attribute :table_name_suffix, :instance_writer => false
390
+ self.table_name_suffix = ""
391
+
392
+ ##
393
+ # :singleton-method:
394
+ # Indicates whether table names should be the pluralized versions of the corresponding class names.
395
+ # If true, the default table name for a Product class will be +products+. If false, it would just be +product+.
396
+ # See table_name for the full rules on table/class naming. This is true, by default.
397
+ class_attribute :pluralize_table_names, :instance_writer => false
398
+ self.pluralize_table_names = true
399
+
400
+ ##
401
+ # :singleton-method:
402
+ # Determines whether to use Time.local (using :local) or Time.utc (using :utc) when pulling
403
+ # dates and times from the database. This is set to :local by default.
404
+ cattr_accessor :default_timezone, :instance_writer => false
405
+ @@default_timezone = :local
406
+
407
+ ##
408
+ # :singleton-method:
409
+ # Specifies the format to use when dumping the database schema with Rails'
410
+ # Rakefile. If :sql, the schema is dumped as (potentially database-
411
+ # specific) SQL statements. If :ruby, the schema is dumped as an
412
+ # ActiveRecord::Schema file which can be loaded into any database that
413
+ # supports migrations. Use :ruby if you want to have different database
414
+ # adapters for, e.g., your development and test environments.
415
+ cattr_accessor :schema_format , :instance_writer => false
416
+ @@schema_format = :ruby
417
+
418
+ ##
419
+ # :singleton-method:
420
+ # Specify whether or not to use timestamps for migration versions
421
+ cattr_accessor :timestamped_migrations , :instance_writer => false
422
+ @@timestamped_migrations = true
423
+
424
+ # Determine whether to store the full constant name including namespace when using STI
425
+ class_attribute :store_full_sti_class
426
+ self.store_full_sti_class = true
427
+
428
+ # Stores the default scope for the class
429
+ class_attribute :default_scopes, :instance_writer => false
430
+ self.default_scopes = []
431
+
432
+ # Returns a hash of all the attributes that have been specified for serialization as
433
+ # keys and their class restriction as values.
434
+ class_attribute :serialized_attributes
435
+ self.serialized_attributes = {}
436
+
437
+ class_attribute :_attr_readonly, :instance_writer => false
438
+ self._attr_readonly = []
439
+
440
+ class << self # Class methods
441
+ delegate :find, :first, :first!, :last, :last!, :all, :exists?, :any?, :many?, :to => :scoped
442
+ delegate :destroy, :destroy_all, :delete, :delete_all, :update, :update_all, :to => :scoped
443
+ delegate :find_each, :find_in_batches, :to => :scoped
444
+ delegate :select, :group, :order, :except, :reorder, :limit, :offset, :joins, :where, :preload, :eager_load, :includes, :from, :lock, :readonly, :having, :create_with, :to => :scoped
445
+ delegate :count, :average, :minimum, :maximum, :sum, :calculate, :to => :scoped
446
+
447
+ # Executes a custom SQL query against your database and returns all the results. The results will
448
+ # be returned as an array with columns requested encapsulated as attributes of the model you call
449
+ # this method from. If you call <tt>Product.find_by_sql</tt> then the results will be returned in
450
+ # a Product object with the attributes you specified in the SQL query.
451
+ #
452
+ # If you call a complicated SQL query which spans multiple tables the columns specified by the
453
+ # SELECT will be attributes of the model, whether or not they are columns of the corresponding
454
+ # table.
455
+ #
456
+ # The +sql+ parameter is a full SQL query as a string. It will be called as is, there will be
457
+ # no database agnostic conversions performed. This should be a last resort because using, for example,
458
+ # MySQL specific terms will lock you to using that particular database engine or require you to
459
+ # change your call if you switch engines.
460
+ #
461
+ # ==== Examples
462
+ # # A simple SQL query spanning multiple tables
463
+ # Post.find_by_sql "SELECT p.title, c.author FROM posts p, comments c WHERE p.id = c.post_id"
464
+ # > [#<Post:0x36bff9c @attributes={"title"=>"Ruby Meetup", "first_name"=>"Quentin"}>, ...]
465
+ #
466
+ # # You can use the same string replacement techniques as you can with ActiveRecord#find
467
+ # Post.find_by_sql ["SELECT title FROM posts WHERE author = ? AND created > ?", author_id, start_date]
468
+ # > [#<Post:0x36bff9c @attributes={"title"=>"The Cheap Man Buys Twice"}>, ...]
469
+ def find_by_sql(sql, binds = [])
470
+ connection.select_all(sanitize_sql(sql), "#{name} Load", binds).collect! { |record| instantiate(record) }
471
+ end
472
+
473
+ # Creates an object (or multiple objects) and saves it to the database, if validations pass.
474
+ # The resulting object is returned whether the object was saved successfully to the database or not.
475
+ #
476
+ # The +attributes+ parameter can be either be a Hash or an Array of Hashes. These Hashes describe the
477
+ # attributes on the objects that are to be created.
478
+ #
479
+ # +create+ respects mass-assignment security and accepts either +:as+ or +:without_protection+ options
480
+ # in the +options+ parameter.
481
+ #
482
+ # ==== Examples
483
+ # # Create a single new object
484
+ # User.create(:first_name => 'Jamie')
485
+ #
486
+ # # Create a single new object using the :admin mass-assignment security role
487
+ # User.create({ :first_name => 'Jamie', :is_admin => true }, :as => :admin)
488
+ #
489
+ # # Create a single new object bypassing mass-assignment security
490
+ # User.create({ :first_name => 'Jamie', :is_admin => true }, :without_protection => true)
491
+ #
492
+ # # Create an Array of new objects
493
+ # User.create([{ :first_name => 'Jamie' }, { :first_name => 'Jeremy' }])
494
+ #
495
+ # # Create a single object and pass it into a block to set other attributes.
496
+ # User.create(:first_name => 'Jamie') do |u|
497
+ # u.is_admin = false
498
+ # end
499
+ #
500
+ # # Creating an Array of new objects using a block, where the block is executed for each object:
501
+ # User.create([{ :first_name => 'Jamie' }, { :first_name => 'Jeremy' }]) do |u|
502
+ # u.is_admin = false
503
+ # end
504
+ def create(attributes = nil, options = {}, &block)
505
+ if attributes.is_a?(Array)
506
+ attributes.collect { |attr| create(attr, options, &block) }
507
+ else
508
+ object = new(attributes, options)
509
+ yield(object) if block_given?
510
+ object.save
511
+ object
512
+ end
513
+ end
514
+
515
+ # Returns the result of an SQL statement that should only include a COUNT(*) in the SELECT part.
516
+ # The use of this method should be restricted to complicated SQL queries that can't be executed
517
+ # using the ActiveRecord::Calculations class methods. Look into those before using this.
518
+ #
519
+ # ==== Parameters
520
+ #
521
+ # * +sql+ - An SQL statement which should return a count query from the database, see the example below.
522
+ #
523
+ # ==== Examples
524
+ #
525
+ # Product.count_by_sql "SELECT COUNT(*) FROM sales s, customers c WHERE s.customer_id = c.id"
526
+ def count_by_sql(sql)
527
+ sql = sanitize_conditions(sql)
528
+ connection.select_value(sql, "#{name} Count").to_i
529
+ end
530
+
531
+ # Attributes listed as readonly will be used to create a new record but update operations will
532
+ # ignore these fields.
533
+ def attr_readonly(*attributes)
534
+ self._attr_readonly = Set.new(attributes.map { |a| a.to_s }) + (self._attr_readonly || [])
535
+ end
536
+
537
+ # Returns an array of all the attributes that have been specified as readonly.
538
+ def readonly_attributes
539
+ self._attr_readonly
540
+ end
541
+
542
+ # If you have an attribute that needs to be saved to the database as an object, and retrieved as the same object,
543
+ # then specify the name of that attribute using this method and it will be handled automatically.
544
+ # The serialization is done through YAML. If +class_name+ is specified, the serialized object must be of that
545
+ # class on retrieval or SerializationTypeMismatch will be raised.
546
+ #
547
+ # ==== Parameters
548
+ #
549
+ # * +attr_name+ - The field name that should be serialized.
550
+ # * +class_name+ - Optional, class name that the object type should be equal to.
551
+ #
552
+ # ==== Example
553
+ # # Serialize a preferences attribute
554
+ # class User < ActiveRecord::Base
555
+ # serialize :preferences
556
+ # end
557
+ def serialize(attr_name, class_name = Object)
558
+ coder = if [:load, :dump].all? { |x| class_name.respond_to?(x) }
559
+ class_name
560
+ else
561
+ Coders::YAMLColumn.new(class_name)
562
+ end
563
+
564
+ # merge new serialized attribute and create new hash to ensure that each class in inheritance hierarchy
565
+ # has its own hash of own serialized attributes
566
+ self.serialized_attributes = serialized_attributes.merge(attr_name.to_s => coder)
567
+ end
568
+
569
+ # Guesses the table name (in forced lower-case) based on the name of the class in the
570
+ # inheritance hierarchy descending directly from ActiveRecord::Base. So if the hierarchy
571
+ # looks like: Reply < Message < ActiveRecord::Base, then Message is used
572
+ # to guess the table name even when called on Reply. The rules used to do the guess
573
+ # are handled by the Inflector class in Active Support, which knows almost all common
574
+ # English inflections. You can add new inflections in config/initializers/inflections.rb.
575
+ #
576
+ # Nested classes are given table names prefixed by the singular form of
577
+ # the parent's table name. Enclosing modules are not considered.
578
+ #
579
+ # ==== Examples
580
+ #
581
+ # class Invoice < ActiveRecord::Base
582
+ # end
583
+ #
584
+ # file class table_name
585
+ # invoice.rb Invoice invoices
586
+ #
587
+ # class Invoice < ActiveRecord::Base
588
+ # class Lineitem < ActiveRecord::Base
589
+ # end
590
+ # end
591
+ #
592
+ # file class table_name
593
+ # invoice.rb Invoice::Lineitem invoice_lineitems
594
+ #
595
+ # module Invoice
596
+ # class Lineitem < ActiveRecord::Base
597
+ # end
598
+ # end
599
+ #
600
+ # file class table_name
601
+ # invoice/lineitem.rb Invoice::Lineitem lineitems
602
+ #
603
+ # Additionally, the class-level +table_name_prefix+ is prepended and the
604
+ # +table_name_suffix+ is appended. So if you have "myapp_" as a prefix,
605
+ # the table name guess for an Invoice class becomes "myapp_invoices".
606
+ # Invoice::Lineitem becomes "myapp_invoice_lineitems".
607
+ #
608
+ # You can also overwrite this class method to allow for unguessable
609
+ # links, such as a Mouse class with a link to a "mice" table. Example:
610
+ #
611
+ # class Mouse < ActiveRecord::Base
612
+ # set_table_name "mice"
613
+ # end
614
+ def table_name
615
+ reset_table_name
616
+ end
617
+
618
+ # Returns a quoted version of the table name, used to construct SQL statements.
619
+ def quoted_table_name
620
+ @quoted_table_name ||= connection.quote_table_name(table_name)
621
+ end
622
+
623
+ # Computes the table name, (re)sets it internally, and returns it.
624
+ def reset_table_name #:nodoc:
625
+ return if abstract_class?
626
+
627
+ self.table_name = compute_table_name
628
+ end
629
+
630
+ def full_table_name_prefix #:nodoc:
631
+ (parents.detect{ |p| p.respond_to?(:table_name_prefix) } || self).table_name_prefix
632
+ end
633
+
634
+ # Defines the column name for use with single table inheritance. Use
635
+ # <tt>set_inheritance_column</tt> to set a different value.
636
+ def inheritance_column
637
+ @inheritance_column ||= "type"
638
+ end
639
+
640
+ # Lazy-set the sequence name to the connection's default. This method
641
+ # is only ever called once since set_sequence_name overrides it.
642
+ def sequence_name #:nodoc:
643
+ reset_sequence_name
644
+ end
645
+
646
+ def reset_sequence_name #:nodoc:
647
+ default = connection.default_sequence_name(table_name, primary_key)
648
+ set_sequence_name(default)
649
+ default
650
+ end
651
+
652
+ # Sets the table name. If the value is nil or false then the value returned by the given
653
+ # block is used.
654
+ #
655
+ # class Project < ActiveRecord::Base
656
+ # set_table_name "project"
657
+ # end
658
+ def set_table_name(value = nil, &block)
659
+ @quoted_table_name = nil
660
+ define_attr_method :table_name, value, &block
661
+ @arel_table = nil
662
+
663
+ @arel_table = Arel::Table.new(table_name, arel_engine)
664
+ @relation = Relation.new(self, arel_table)
665
+ end
666
+ alias :table_name= :set_table_name
667
+
668
+ # Sets the name of the inheritance column to use to the given value,
669
+ # or (if the value # is nil or false) to the value returned by the
670
+ # given block.
671
+ #
672
+ # class Project < ActiveRecord::Base
673
+ # set_inheritance_column do
674
+ # original_inheritance_column + "_id"
675
+ # end
676
+ # end
677
+ def set_inheritance_column(value = nil, &block)
678
+ define_attr_method :inheritance_column, value, &block
679
+ end
680
+ alias :inheritance_column= :set_inheritance_column
681
+
682
+ # Sets the name of the sequence to use when generating ids to the given
683
+ # value, or (if the value is nil or false) to the value returned by the
684
+ # given block. This is required for Oracle and is useful for any
685
+ # database which relies on sequences for primary key generation.
686
+ #
687
+ # If a sequence name is not explicitly set when using Oracle or Firebird,
688
+ # it will default to the commonly used pattern of: #{table_name}_seq
689
+ #
690
+ # If a sequence name is not explicitly set when using PostgreSQL, it
691
+ # will discover the sequence corresponding to your primary key for you.
692
+ #
693
+ # class Project < ActiveRecord::Base
694
+ # set_sequence_name "projectseq" # default would have been "project_seq"
695
+ # end
696
+ def set_sequence_name(value = nil, &block)
697
+ define_attr_method :sequence_name, value, &block
698
+ end
699
+ alias :sequence_name= :set_sequence_name
700
+
701
+ # Indicates whether the table associated with this class exists
702
+ def table_exists?
703
+ connection.table_exists?(table_name)
704
+ end
705
+
706
+ # Returns an array of column objects for the table associated with this class.
707
+ def columns
708
+ if defined?(@primary_key)
709
+ connection_pool.primary_keys[table_name] ||= primary_key
710
+ end
711
+
712
+ connection_pool.columns[table_name]
713
+ end
714
+
715
+ # Returns a hash of column objects for the table associated with this class.
716
+ def columns_hash
717
+ connection_pool.columns_hash[table_name]
718
+ end
719
+
720
+ # Returns a hash where the keys are column names and the values are
721
+ # default values when instantiating the AR object for this table.
722
+ def column_defaults
723
+ connection_pool.column_defaults[table_name]
724
+ end
725
+
726
+ # Returns an array of column names as strings.
727
+ def column_names
728
+ @column_names ||= columns.map { |column| column.name }
729
+ end
730
+
731
+ # Returns an array of column objects where the primary id, all columns ending in "_id" or "_count",
732
+ # and columns used for single table inheritance have been removed.
733
+ def content_columns
734
+ @content_columns ||= columns.reject { |c| c.primary || c.name =~ /(_id|_count)$/ || c.name == inheritance_column }
735
+ end
736
+
737
+ # Returns a hash of all the methods added to query each of the columns in the table with the name of the method as the key
738
+ # and true as the value. This makes it possible to do O(1) lookups in respond_to? to check if a given method for attribute
739
+ # is available.
740
+ def column_methods_hash #:nodoc:
741
+ @dynamic_methods_hash ||= column_names.inject(Hash.new(false)) do |methods, attr|
742
+ attr_name = attr.to_s
743
+ methods[attr.to_sym] = attr_name
744
+ methods["#{attr}=".to_sym] = attr_name
745
+ methods["#{attr}?".to_sym] = attr_name
746
+ methods["#{attr}_before_type_cast".to_sym] = attr_name
747
+ methods
748
+ end
749
+ end
750
+
751
+ # Resets all the cached information about columns, which will cause them
752
+ # to be reloaded on the next request.
753
+ #
754
+ # The most common usage pattern for this method is probably in a migration,
755
+ # when just after creating a table you want to populate it with some default
756
+ # values, eg:
757
+ #
758
+ # class CreateJobLevels < ActiveRecord::Migration
759
+ # def self.up
760
+ # create_table :job_levels do |t|
761
+ # t.integer :id
762
+ # t.string :name
763
+ #
764
+ # t.timestamps
765
+ # end
766
+ #
767
+ # JobLevel.reset_column_information
768
+ # %w{assistant executive manager director}.each do |type|
769
+ # JobLevel.create(:name => type)
770
+ # end
771
+ # end
772
+ #
773
+ # def self.down
774
+ # drop_table :job_levels
775
+ # end
776
+ # end
777
+ def reset_column_information
778
+ connection.clear_cache!
779
+ undefine_attribute_methods
780
+ connection_pool.clear_table_cache!(table_name) if table_exists?
781
+
782
+ @column_names = @content_columns = @dynamic_methods_hash = @inheritance_column = nil
783
+ @arel_engine = @relation = nil
784
+ end
785
+
786
+ def clear_cache! # :nodoc:
787
+ connection_pool.clear_cache!
788
+ end
789
+
790
+ def attribute_method?(attribute)
791
+ super || (table_exists? && column_names.include?(attribute.to_s.sub(/=$/, '')))
792
+ end
793
+
794
+ # Returns an array of column names as strings if it's not
795
+ # an abstract class and table exists.
796
+ # Otherwise it returns an empty array.
797
+ def attribute_names
798
+ @attribute_names ||= if !abstract_class? && table_exists?
799
+ column_names
800
+ else
801
+ []
802
+ end
803
+ end
804
+
805
+ # Set the lookup ancestors for ActiveModel.
806
+ def lookup_ancestors #:nodoc:
807
+ klass = self
808
+ classes = [klass]
809
+ return classes if klass == ActiveRecord::Base
810
+
811
+ while klass != klass.base_class
812
+ classes << klass = klass.superclass
813
+ end
814
+ classes
815
+ end
816
+
817
+ # Set the i18n scope to overwrite ActiveModel.
818
+ def i18n_scope #:nodoc:
819
+ :activerecord
820
+ end
821
+
822
+ # True if this isn't a concrete subclass needing a STI type condition.
823
+ def descends_from_active_record?
824
+ if superclass.abstract_class?
825
+ superclass.descends_from_active_record?
826
+ else
827
+ superclass == Base || !columns_hash.include?(inheritance_column)
828
+ end
829
+ end
830
+
831
+ def finder_needs_type_condition? #:nodoc:
832
+ # This is like this because benchmarking justifies the strange :false stuff
833
+ :true == (@finder_needs_type_condition ||= descends_from_active_record? ? :false : :true)
834
+ end
835
+
836
+ # Returns a string like 'Post(id:integer, title:string, body:text)'
837
+ def inspect
838
+ if self == Base
839
+ super
840
+ elsif abstract_class?
841
+ "#{super}(abstract)"
842
+ elsif table_exists?
843
+ attr_list = columns.map { |c| "#{c.name}: #{c.type}" } * ', '
844
+ "#{super}(#{attr_list})"
845
+ else
846
+ "#{super}(Table doesn't exist)"
847
+ end
848
+ end
849
+
850
+ def quote_value(value, column = nil) #:nodoc:
851
+ connection.quote(value,column)
852
+ end
853
+
854
+ # Used to sanitize objects before they're used in an SQL SELECT statement. Delegates to <tt>connection.quote</tt>.
855
+ def sanitize(object) #:nodoc:
856
+ connection.quote(object)
857
+ end
858
+
859
+ # Overwrite the default class equality method to provide support for association proxies.
860
+ def ===(object)
861
+ object.is_a?(self)
862
+ end
863
+
864
+ def symbolized_base_class
865
+ @symbolized_base_class ||= base_class.to_s.to_sym
866
+ end
867
+
868
+ def symbolized_sti_name
869
+ @symbolized_sti_name ||= sti_name.present? ? sti_name.to_sym : symbolized_base_class
870
+ end
871
+
872
+ # Returns the base AR subclass that this class descends from. If A
873
+ # extends AR::Base, A.base_class will return A. If B descends from A
874
+ # through some arbitrarily deep hierarchy, B.base_class will return A.
875
+ #
876
+ # If B < A and C < B and if A is an abstract_class then both B.base_class
877
+ # and C.base_class would return B as the answer since A is an abstract_class.
878
+ def base_class
879
+ class_of_active_record_descendant(self)
880
+ end
881
+
882
+ # Set this to true if this is an abstract class (see <tt>abstract_class?</tt>).
883
+ attr_accessor :abstract_class
884
+
885
+ # Returns whether this class is an abstract class or not.
886
+ def abstract_class?
887
+ defined?(@abstract_class) && @abstract_class == true
888
+ end
889
+
890
+ def respond_to?(method_id, include_private = false)
891
+ if match = DynamicFinderMatch.match(method_id)
892
+ return true if all_attributes_exists?(match.attribute_names)
893
+ elsif match = DynamicScopeMatch.match(method_id)
894
+ return true if all_attributes_exists?(match.attribute_names)
895
+ end
896
+
897
+ super
898
+ end
899
+
900
+ def sti_name
901
+ store_full_sti_class ? name : name.demodulize
902
+ end
903
+
904
+ def arel_table
905
+ @arel_table ||= Arel::Table.new(table_name, arel_engine)
906
+ end
907
+
908
+ def arel_engine
909
+ @arel_engine ||= begin
910
+ if self == ActiveRecord::Base
911
+ ActiveRecord::Base
912
+ else
913
+ connection_handler.connection_pools[name] ? self : superclass.arel_engine
914
+ end
915
+ end
916
+ end
917
+
918
+ # Returns a scope for this class without taking into account the default_scope.
919
+ #
920
+ # class Post < ActiveRecord::Base
921
+ # def self.default_scope
922
+ # where :published => true
923
+ # end
924
+ # end
925
+ #
926
+ # Post.all # Fires "SELECT * FROM posts WHERE published = true"
927
+ # Post.unscoped.all # Fires "SELECT * FROM posts"
928
+ #
929
+ # This method also accepts a block meaning that all queries inside the block will
930
+ # not use the default_scope:
931
+ #
932
+ # Post.unscoped {
933
+ # Post.limit(10) # Fires "SELECT * FROM posts LIMIT 10"
934
+ # }
935
+ #
936
+ # It is recommended to use block form of unscoped because chaining unscoped with <tt>scope</tt>
937
+ # does not work. Assuming that <tt>published</tt> is a <tt>scope</tt> following two statements are same.
938
+ #
939
+ # Post.unscoped.published
940
+ # Post.published
941
+ def unscoped #:nodoc:
942
+ block_given? ? relation.scoping { yield } : relation
943
+ end
944
+
945
+ def before_remove_const #:nodoc:
946
+ self.current_scope = nil
947
+ end
948
+
949
+ # Finder methods must instantiate through this method to work with the
950
+ # single-table inheritance model that makes it possible to create
951
+ # objects of different types from the same table.
952
+ def instantiate(record)
953
+ sti_class = find_sti_class(record[inheritance_column])
954
+ record_id = sti_class.primary_key && record[sti_class.primary_key]
955
+
956
+ if ActiveRecord::IdentityMap.enabled? && record_id
957
+ if (column = sti_class.columns_hash[sti_class.primary_key]) && column.number?
958
+ record_id = record_id.to_i
959
+ end
960
+ if instance = IdentityMap.get(sti_class, record_id)
961
+ instance.reinit_with('attributes' => record)
962
+ else
963
+ instance = sti_class.allocate.init_with('attributes' => record)
964
+ IdentityMap.add(instance)
965
+ end
966
+ else
967
+ instance = sti_class.allocate.init_with('attributes' => record)
968
+ end
969
+
970
+ instance
971
+ end
972
+
973
+ private
974
+
975
+ def relation #:nodoc:
976
+ @relation ||= Relation.new(self, arel_table)
977
+
978
+ if finder_needs_type_condition?
979
+ @relation.where(type_condition).create_with(inheritance_column.to_sym => sti_name)
980
+ else
981
+ @relation
982
+ end
983
+ end
984
+
985
+ def find_sti_class(type_name)
986
+ if type_name.blank? || !columns_hash.include?(inheritance_column)
987
+ self
988
+ else
989
+ begin
990
+ if store_full_sti_class
991
+ ActiveSupport::Dependencies.constantize(type_name)
992
+ else
993
+ compute_type(type_name)
994
+ end
995
+ rescue NameError
996
+ raise SubclassNotFound,
997
+ "The single-table inheritance mechanism failed to locate the subclass: '#{type_name}'. " +
998
+ "This error is raised because the column '#{inheritance_column}' is reserved for storing the class in case of inheritance. " +
999
+ "Please rename this column if you didn't intend it to be used for storing the inheritance class " +
1000
+ "or overwrite #{name}.inheritance_column to use another column for that information."
1001
+ end
1002
+ end
1003
+ end
1004
+
1005
+ def construct_finder_arel(options = {}, scope = nil)
1006
+ relation = options.is_a?(Hash) ? unscoped.apply_finder_options(options) : options
1007
+ relation = scope.merge(relation) if scope
1008
+ relation
1009
+ end
1010
+
1011
+ def type_condition(table = arel_table)
1012
+ sti_column = table[inheritance_column.to_sym]
1013
+ sti_names = ([self] + descendants).map { |model| model.sti_name }
1014
+
1015
+ sti_column.in(sti_names)
1016
+ end
1017
+
1018
+ # Guesses the table name, but does not decorate it with prefix and suffix information.
1019
+ def undecorated_table_name(class_name = base_class.name)
1020
+ table_name = class_name.to_s.demodulize.underscore
1021
+ table_name = table_name.pluralize if pluralize_table_names
1022
+ table_name
1023
+ end
1024
+
1025
+ # Computes and returns a table name according to default conventions.
1026
+ def compute_table_name
1027
+ base = base_class
1028
+ if self == base
1029
+ # Nested classes are prefixed with singular parent table name.
1030
+ if parent < ActiveRecord::Base && !parent.abstract_class?
1031
+ contained = parent.table_name
1032
+ contained = contained.singularize if parent.pluralize_table_names
1033
+ contained += '_'
1034
+ end
1035
+ "#{full_table_name_prefix}#{contained}#{undecorated_table_name(name)}#{table_name_suffix}"
1036
+ else
1037
+ # STI subclasses always use their superclass' table.
1038
+ base.table_name
1039
+ end
1040
+ end
1041
+
1042
+ # Enables dynamic finders like <tt>User.find_by_user_name(user_name)</tt> and
1043
+ # <tt>User.scoped_by_user_name(user_name). Refer to Dynamic attribute-based finders
1044
+ # section at the top of this file for more detailed information.
1045
+ #
1046
+ # It's even possible to use all the additional parameters to +find+. For example, the
1047
+ # full interface for +find_all_by_amount+ is actually <tt>find_all_by_amount(amount, options)</tt>.
1048
+ #
1049
+ # Each dynamic finder using <tt>scoped_by_*</tt> is also defined in the class after it
1050
+ # is first invoked, so that future attempts to use it do not run through method_missing.
1051
+ def method_missing(method_id, *arguments, &block)
1052
+ if match = DynamicFinderMatch.match(method_id)
1053
+ attribute_names = match.attribute_names
1054
+ super unless all_attributes_exists?(attribute_names)
1055
+ if !arguments.first.is_a?(Hash) && arguments.size < attribute_names.size
1056
+ ActiveSupport::Deprecation.warn(<<-eowarn)
1057
+ Calling dynamic finder with less number of arguments than the number of attributes in method name is deprecated and will raise an ArguementError in the next version of Rails. Please passing `nil' to the argument you want it to be nil.
1058
+ eowarn
1059
+ end
1060
+ if match.finder?
1061
+ options = arguments.extract_options!
1062
+ relation = options.any? ? scoped(options) : scoped
1063
+ relation.send :find_by_attributes, match, attribute_names, *arguments
1064
+ elsif match.instantiator?
1065
+ scoped.send :find_or_instantiator_by_attributes, match, attribute_names, *arguments, &block
1066
+ end
1067
+ elsif match = DynamicScopeMatch.match(method_id)
1068
+ attribute_names = match.attribute_names
1069
+ super unless all_attributes_exists?(attribute_names)
1070
+ if arguments.size < attribute_names.size
1071
+ ActiveSupport::Deprecation.warn(
1072
+ "Calling dynamic scope with less number of arguments than the number of attributes in " \
1073
+ "method name is deprecated and will raise an ArguementError in the next version of Rails. " \
1074
+ "Please passing `nil' to the argument you want it to be nil."
1075
+ )
1076
+ end
1077
+ if match.scope?
1078
+ self.class_eval <<-METHOD, __FILE__, __LINE__ + 1
1079
+ def self.#{method_id}(*args) # def self.scoped_by_user_name_and_password(*args)
1080
+ attributes = Hash[[:#{attribute_names.join(',:')}].zip(args)] # attributes = Hash[[:user_name, :password].zip(args)]
1081
+ #
1082
+ scoped(:conditions => attributes) # scoped(:conditions => attributes)
1083
+ end # end
1084
+ METHOD
1085
+ send(method_id, *arguments)
1086
+ end
1087
+ else
1088
+ super
1089
+ end
1090
+ end
1091
+
1092
+ # Similar in purpose to +expand_hash_conditions_for_aggregates+.
1093
+ def expand_attribute_names_for_aggregates(attribute_names)
1094
+ attribute_names.map { |attribute_name|
1095
+ unless (aggregation = reflect_on_aggregation(attribute_name.to_sym)).nil?
1096
+ aggregate_mapping(aggregation).map do |field_attr, _|
1097
+ field_attr.to_sym
1098
+ end
1099
+ else
1100
+ attribute_name.to_sym
1101
+ end
1102
+ }.flatten
1103
+ end
1104
+
1105
+ def all_attributes_exists?(attribute_names)
1106
+ (expand_attribute_names_for_aggregates(attribute_names) -
1107
+ column_methods_hash.keys).empty?
1108
+ end
1109
+
1110
+ protected
1111
+ # with_scope lets you apply options to inner block incrementally. It takes a hash and the keys must be
1112
+ # <tt>:find</tt> or <tt>:create</tt>. <tt>:find</tt> parameter is <tt>Relation</tt> while
1113
+ # <tt>:create</tt> parameters are an attributes hash.
1114
+ #
1115
+ # class Article < ActiveRecord::Base
1116
+ # def self.create_with_scope
1117
+ # with_scope(:find => where(:blog_id => 1), :create => { :blog_id => 1 }) do
1118
+ # find(1) # => SELECT * from articles WHERE blog_id = 1 AND id = 1
1119
+ # a = create(1)
1120
+ # a.blog_id # => 1
1121
+ # end
1122
+ # end
1123
+ # end
1124
+ #
1125
+ # In nested scopings, all previous parameters are overwritten by the innermost rule, with the exception of
1126
+ # <tt>where</tt>, <tt>includes</tt>, and <tt>joins</tt> operations in <tt>Relation</tt>, which are merged.
1127
+ #
1128
+ # <tt>joins</tt> operations are uniqued so multiple scopes can join in the same table without table aliasing
1129
+ # problems. If you need to join multiple tables, but still want one of the tables to be uniqued, use the
1130
+ # array of strings format for your joins.
1131
+ #
1132
+ # class Article < ActiveRecord::Base
1133
+ # def self.find_with_scope
1134
+ # with_scope(:find => where(:blog_id => 1).limit(1), :create => { :blog_id => 1 }) do
1135
+ # with_scope(:find => limit(10)) do
1136
+ # all # => SELECT * from articles WHERE blog_id = 1 LIMIT 10
1137
+ # end
1138
+ # with_scope(:find => where(:author_id => 3)) do
1139
+ # all # => SELECT * from articles WHERE blog_id = 1 AND author_id = 3 LIMIT 1
1140
+ # end
1141
+ # end
1142
+ # end
1143
+ # end
1144
+ #
1145
+ # You can ignore any previous scopings by using the <tt>with_exclusive_scope</tt> method.
1146
+ #
1147
+ # class Article < ActiveRecord::Base
1148
+ # def self.find_with_exclusive_scope
1149
+ # with_scope(:find => where(:blog_id => 1).limit(1)) do
1150
+ # with_exclusive_scope(:find => limit(10)) do
1151
+ # all # => SELECT * from articles LIMIT 10
1152
+ # end
1153
+ # end
1154
+ # end
1155
+ # end
1156
+ #
1157
+ # *Note*: the +:find+ scope also has effect on update and deletion methods, like +update_all+ and +delete_all+.
1158
+ def with_scope(scope = {}, action = :merge, &block)
1159
+ # If another Active Record class has been passed in, get its current scope
1160
+ scope = scope.current_scope if !scope.is_a?(Relation) && scope.respond_to?(:current_scope)
1161
+
1162
+ previous_scope = self.current_scope
1163
+
1164
+ if scope.is_a?(Hash)
1165
+ # Dup first and second level of hash (method and params).
1166
+ scope = scope.dup
1167
+ scope.each do |method, params|
1168
+ scope[method] = params.dup unless params == true
1169
+ end
1170
+
1171
+ scope.assert_valid_keys([ :find, :create ])
1172
+ relation = construct_finder_arel(scope[:find] || {})
1173
+ relation.default_scoped = true unless action == :overwrite
1174
+
1175
+ if previous_scope && previous_scope.create_with_value && scope[:create]
1176
+ scope_for_create = if action == :merge
1177
+ previous_scope.create_with_value.merge(scope[:create])
1178
+ else
1179
+ scope[:create]
1180
+ end
1181
+
1182
+ relation = relation.create_with(scope_for_create)
1183
+ else
1184
+ scope_for_create = scope[:create]
1185
+ scope_for_create ||= previous_scope.create_with_value if previous_scope
1186
+ relation = relation.create_with(scope_for_create) if scope_for_create
1187
+ end
1188
+
1189
+ scope = relation
1190
+ end
1191
+
1192
+ scope = previous_scope.merge(scope) if previous_scope && action == :merge
1193
+
1194
+ self.current_scope = scope
1195
+ begin
1196
+ yield
1197
+ ensure
1198
+ self.current_scope = previous_scope
1199
+ end
1200
+ end
1201
+
1202
+ # Works like with_scope, but discards any nested properties.
1203
+ def with_exclusive_scope(method_scoping = {}, &block)
1204
+ if method_scoping.values.any? { |e| e.is_a?(ActiveRecord::Relation) }
1205
+ raise ArgumentError, <<-MSG
1206
+ New finder API can not be used with_exclusive_scope. You can either call unscoped to get an anonymous scope not bound to the default_scope:
1207
+
1208
+ User.unscoped.where(:active => true)
1209
+
1210
+ Or call unscoped with a block:
1211
+
1212
+ User.unscoped do
1213
+ User.where(:active => true).all
1214
+ end
1215
+
1216
+ MSG
1217
+ end
1218
+ with_scope(method_scoping, :overwrite, &block)
1219
+ end
1220
+
1221
+ def current_scope #:nodoc:
1222
+ Thread.current["#{self}_current_scope"]
1223
+ end
1224
+
1225
+ def current_scope=(scope) #:nodoc:
1226
+ Thread.current["#{self}_current_scope"] = scope
1227
+ end
1228
+
1229
+ # Use this macro in your model to set a default scope for all operations on
1230
+ # the model.
1231
+ #
1232
+ # class Article < ActiveRecord::Base
1233
+ # default_scope where(:published => true)
1234
+ # end
1235
+ #
1236
+ # Article.all # => SELECT * FROM articles WHERE published = true
1237
+ #
1238
+ # The <tt>default_scope</tt> is also applied while creating/building a record. It is not
1239
+ # applied while updating a record.
1240
+ #
1241
+ # Article.new.published # => true
1242
+ # Article.create.published # => true
1243
+ #
1244
+ # You can also use <tt>default_scope</tt> with a block, in order to have it lazily evaluated:
1245
+ #
1246
+ # class Article < ActiveRecord::Base
1247
+ # default_scope { where(:published_at => Time.now - 1.week) }
1248
+ # end
1249
+ #
1250
+ # (You can also pass any object which responds to <tt>call</tt> to the <tt>default_scope</tt>
1251
+ # macro, and it will be called when building the default scope.)
1252
+ #
1253
+ # If you use multiple <tt>default_scope</tt> declarations in your model then they will
1254
+ # be merged together:
1255
+ #
1256
+ # class Article < ActiveRecord::Base
1257
+ # default_scope where(:published => true)
1258
+ # default_scope where(:rating => 'G')
1259
+ # end
1260
+ #
1261
+ # Article.all # => SELECT * FROM articles WHERE published = true AND rating = 'G'
1262
+ #
1263
+ # This is also the case with inheritance and module includes where the parent or module
1264
+ # defines a <tt>default_scope</tt> and the child or including class defines a second one.
1265
+ #
1266
+ # If you need to do more complex things with a default scope, you can alternatively
1267
+ # define it as a class method:
1268
+ #
1269
+ # class Article < ActiveRecord::Base
1270
+ # def self.default_scope
1271
+ # # Should return a scope, you can call 'super' here etc.
1272
+ # end
1273
+ # end
1274
+ def default_scope(scope = {})
1275
+ scope = Proc.new if block_given?
1276
+ self.default_scopes = default_scopes + [scope]
1277
+ end
1278
+
1279
+ def build_default_scope #:nodoc:
1280
+ if method(:default_scope).owner != Base.singleton_class
1281
+ evaluate_default_scope { default_scope }
1282
+ elsif default_scopes.any?
1283
+ evaluate_default_scope do
1284
+ default_scopes.inject(relation) do |default_scope, scope|
1285
+ if scope.is_a?(Hash)
1286
+ default_scope.apply_finder_options(scope)
1287
+ elsif !scope.is_a?(Relation) && scope.respond_to?(:call)
1288
+ default_scope.merge(scope.call)
1289
+ else
1290
+ default_scope.merge(scope)
1291
+ end
1292
+ end
1293
+ end
1294
+ end
1295
+ end
1296
+
1297
+ def ignore_default_scope? #:nodoc:
1298
+ Thread.current["#{self}_ignore_default_scope"]
1299
+ end
1300
+
1301
+ def ignore_default_scope=(ignore) #:nodoc:
1302
+ Thread.current["#{self}_ignore_default_scope"] = ignore
1303
+ end
1304
+
1305
+ # The ignore_default_scope flag is used to prevent an infinite recursion situation where
1306
+ # a default scope references a scope which has a default scope which references a scope...
1307
+ def evaluate_default_scope
1308
+ return if ignore_default_scope?
1309
+
1310
+ begin
1311
+ self.ignore_default_scope = true
1312
+ yield
1313
+ ensure
1314
+ self.ignore_default_scope = false
1315
+ end
1316
+ end
1317
+
1318
+ # Returns the class type of the record using the current module as a prefix. So descendants of
1319
+ # MyApp::Business::Account would appear as MyApp::Business::AccountSubclass.
1320
+ def compute_type(type_name)
1321
+ if type_name.match(/^::/)
1322
+ # If the type is prefixed with a scope operator then we assume that
1323
+ # the type_name is an absolute reference.
1324
+ ActiveSupport::Dependencies.constantize(type_name)
1325
+ else
1326
+ # Build a list of candidates to search for
1327
+ candidates = []
1328
+ name.scan(/::|$/) { candidates.unshift "#{$`}::#{type_name}" }
1329
+ candidates << type_name
1330
+
1331
+ candidates.each do |candidate|
1332
+ begin
1333
+ constant = ActiveSupport::Dependencies.constantize(candidate)
1334
+ return constant if candidate == constant.to_s
1335
+ rescue NameError => e
1336
+ # We don't want to swallow NoMethodError < NameError errors
1337
+ raise e unless e.instance_of?(NameError)
1338
+ end
1339
+ end
1340
+
1341
+ raise NameError, "uninitialized constant #{candidates.first}"
1342
+ end
1343
+ end
1344
+
1345
+ # Returns the class descending directly from ActiveRecord::Base or an
1346
+ # abstract class, if any, in the inheritance hierarchy.
1347
+ def class_of_active_record_descendant(klass)
1348
+ if klass.superclass == Base || klass.superclass.abstract_class?
1349
+ klass
1350
+ elsif klass.superclass.nil?
1351
+ raise ActiveRecordError, "#{name} doesn't belong in a hierarchy descending from ActiveRecord"
1352
+ else
1353
+ class_of_active_record_descendant(klass.superclass)
1354
+ end
1355
+ end
1356
+
1357
+ # Accepts an array, hash, or string of SQL conditions and sanitizes
1358
+ # them into a valid SQL fragment for a WHERE clause.
1359
+ # ["name='%s' and group_id='%s'", "foo'bar", 4] returns "name='foo''bar' and group_id='4'"
1360
+ # { :name => "foo'bar", :group_id => 4 } returns "name='foo''bar' and group_id='4'"
1361
+ # "name='foo''bar' and group_id='4'" returns "name='foo''bar' and group_id='4'"
1362
+ def sanitize_sql_for_conditions(condition, table_name = self.table_name)
1363
+ return nil if condition.blank?
1364
+
1365
+ case condition
1366
+ when Array; sanitize_sql_array(condition)
1367
+ when Hash; sanitize_sql_hash_for_conditions(condition, table_name)
1368
+ else condition
1369
+ end
1370
+ end
1371
+ alias_method :sanitize_sql, :sanitize_sql_for_conditions
1372
+
1373
+ # Accepts an array, hash, or string of SQL conditions and sanitizes
1374
+ # them into a valid SQL fragment for a SET clause.
1375
+ # { :name => nil, :group_id => 4 } returns "name = NULL , group_id='4'"
1376
+ def sanitize_sql_for_assignment(assignments)
1377
+ case assignments
1378
+ when Array; sanitize_sql_array(assignments)
1379
+ when Hash; sanitize_sql_hash_for_assignment(assignments)
1380
+ else assignments
1381
+ end
1382
+ end
1383
+
1384
+ def aggregate_mapping(reflection)
1385
+ mapping = reflection.options[:mapping] || [reflection.name, reflection.name]
1386
+ mapping.first.is_a?(Array) ? mapping : [mapping]
1387
+ end
1388
+
1389
+ # Accepts a hash of SQL conditions and replaces those attributes
1390
+ # that correspond to a +composed_of+ relationship with their expanded
1391
+ # aggregate attribute values.
1392
+ # Given:
1393
+ # class Person < ActiveRecord::Base
1394
+ # composed_of :address, :class_name => "Address",
1395
+ # :mapping => [%w(address_street street), %w(address_city city)]
1396
+ # end
1397
+ # Then:
1398
+ # { :address => Address.new("813 abc st.", "chicago") }
1399
+ # # => { :address_street => "813 abc st.", :address_city => "chicago" }
1400
+ def expand_hash_conditions_for_aggregates(attrs)
1401
+ expanded_attrs = {}
1402
+ attrs.each do |attr, value|
1403
+ unless (aggregation = reflect_on_aggregation(attr.to_sym)).nil?
1404
+ mapping = aggregate_mapping(aggregation)
1405
+ mapping.each do |field_attr, aggregate_attr|
1406
+ if mapping.size == 1 && !value.respond_to?(aggregate_attr)
1407
+ expanded_attrs[field_attr] = value
1408
+ else
1409
+ expanded_attrs[field_attr] = value.send(aggregate_attr)
1410
+ end
1411
+ end
1412
+ else
1413
+ expanded_attrs[attr] = value
1414
+ end
1415
+ end
1416
+ expanded_attrs
1417
+ end
1418
+
1419
+ # Sanitizes a hash of attribute/value pairs into SQL conditions for a WHERE clause.
1420
+ # { :name => "foo'bar", :group_id => 4 }
1421
+ # # => "name='foo''bar' and group_id= 4"
1422
+ # { :status => nil, :group_id => [1,2,3] }
1423
+ # # => "status IS NULL and group_id IN (1,2,3)"
1424
+ # { :age => 13..18 }
1425
+ # # => "age BETWEEN 13 AND 18"
1426
+ # { 'other_records.id' => 7 }
1427
+ # # => "`other_records`.`id` = 7"
1428
+ # { :other_records => { :id => 7 } }
1429
+ # # => "`other_records`.`id` = 7"
1430
+ # And for value objects on a composed_of relationship:
1431
+ # { :address => Address.new("123 abc st.", "chicago") }
1432
+ # # => "address_street='123 abc st.' and address_city='chicago'"
1433
+ def sanitize_sql_hash_for_conditions(attrs, default_table_name = self.table_name)
1434
+ attrs = expand_hash_conditions_for_aggregates(attrs)
1435
+
1436
+ table = Arel::Table.new(table_name).alias(default_table_name)
1437
+ PredicateBuilder.build_from_hash(arel_engine, attrs, table).map { |b|
1438
+ connection.visitor.accept b
1439
+ }.join(' AND ')
1440
+ end
1441
+ alias_method :sanitize_sql_hash, :sanitize_sql_hash_for_conditions
1442
+
1443
+ # Sanitizes a hash of attribute/value pairs into SQL conditions for a SET clause.
1444
+ # { :status => nil, :group_id => 1 }
1445
+ # # => "status = NULL , group_id = 1"
1446
+ def sanitize_sql_hash_for_assignment(attrs)
1447
+ attrs.map do |attr, value|
1448
+ "#{connection.quote_column_name(attr)} = #{quote_bound_value(value)}"
1449
+ end.join(', ')
1450
+ end
1451
+
1452
+ # Accepts an array of conditions. The array has each value
1453
+ # sanitized and interpolated into the SQL statement.
1454
+ # ["name='%s' and group_id='%s'", "foo'bar", 4] returns "name='foo''bar' and group_id='4'"
1455
+ def sanitize_sql_array(ary)
1456
+ statement, *values = ary
1457
+ if values.first.is_a?(Hash) && statement =~ /:\w+/
1458
+ replace_named_bind_variables(statement, values.first)
1459
+ elsif statement.include?('?')
1460
+ replace_bind_variables(statement, values)
1461
+ elsif statement.blank?
1462
+ statement
1463
+ else
1464
+ statement % values.collect { |value| connection.quote_string(value.to_s) }
1465
+ end
1466
+ end
1467
+
1468
+ alias_method :sanitize_conditions, :sanitize_sql
1469
+
1470
+ def replace_bind_variables(statement, values) #:nodoc:
1471
+ raise_if_bind_arity_mismatch(statement, statement.count('?'), values.size)
1472
+ bound = values.dup
1473
+ c = connection
1474
+ statement.gsub('?') { quote_bound_value(bound.shift, c) }
1475
+ end
1476
+
1477
+ def replace_named_bind_variables(statement, bind_vars) #:nodoc:
1478
+ statement.gsub(/(:?):([a-zA-Z]\w*)/) do
1479
+ if $1 == ':' # skip postgresql casts
1480
+ $& # return the whole match
1481
+ elsif bind_vars.include?(match = $2.to_sym)
1482
+ quote_bound_value(bind_vars[match])
1483
+ else
1484
+ raise PreparedStatementInvalid, "missing value for :#{match} in #{statement}"
1485
+ end
1486
+ end
1487
+ end
1488
+
1489
+ def expand_range_bind_variables(bind_vars) #:nodoc:
1490
+ expanded = []
1491
+
1492
+ bind_vars.each do |var|
1493
+ next if var.is_a?(Hash)
1494
+
1495
+ if var.is_a?(Range)
1496
+ expanded << var.first
1497
+ expanded << var.last
1498
+ else
1499
+ expanded << var
1500
+ end
1501
+ end
1502
+
1503
+ expanded
1504
+ end
1505
+
1506
+ def quote_bound_value(value, c = connection) #:nodoc:
1507
+ if value.respond_to?(:map) && !value.acts_like?(:string)
1508
+ if value.respond_to?(:empty?) && value.empty?
1509
+ c.quote(nil)
1510
+ else
1511
+ value.map { |v| c.quote(v) }.join(',')
1512
+ end
1513
+ else
1514
+ c.quote(value)
1515
+ end
1516
+ end
1517
+
1518
+ def raise_if_bind_arity_mismatch(statement, expected, provided) #:nodoc:
1519
+ unless expected == provided
1520
+ raise PreparedStatementInvalid, "wrong number of bind variables (#{provided} for #{expected}) in: #{statement}"
1521
+ end
1522
+ end
1523
+
1524
+ def encode_quoted_value(value) #:nodoc:
1525
+ quoted_value = connection.quote(value)
1526
+ quoted_value = "'#{quoted_value[1..-2].gsub(/\'/, "\\\\'")}'" if quoted_value.include?("\\\'") # (for ruby mode) "
1527
+ quoted_value
1528
+ end
1529
+ end
1530
+
1531
+ public
1532
+ # New objects can be instantiated as either empty (pass no construction parameter) or pre-set with
1533
+ # attributes but not yet saved (pass a hash with key names matching the associated table column names).
1534
+ # In both instances, valid attribute keys are determined by the column names of the associated table --
1535
+ # hence you can't have attributes that aren't part of the table columns.
1536
+ #
1537
+ # +initialize+ respects mass-assignment security and accepts either +:as+ or +:without_protection+ options
1538
+ # in the +options+ parameter.
1539
+ #
1540
+ # ==== Examples
1541
+ # # Instantiates a single new object
1542
+ # User.new(:first_name => 'Jamie')
1543
+ #
1544
+ # # Instantiates a single new object using the :admin mass-assignment security role
1545
+ # User.new({ :first_name => 'Jamie', :is_admin => true }, :as => :admin)
1546
+ #
1547
+ # # Instantiates a single new object bypassing mass-assignment security
1548
+ # User.new({ :first_name => 'Jamie', :is_admin => true }, :without_protection => true)
1549
+ def initialize(attributes = nil, options = {})
1550
+ @attributes = attributes_from_column_definition
1551
+ @association_cache = {}
1552
+ @aggregation_cache = {}
1553
+ @attributes_cache = {}
1554
+ @new_record = true
1555
+ @readonly = false
1556
+ @destroyed = false
1557
+ @marked_for_destruction = false
1558
+ @previously_changed = {}
1559
+ @changed_attributes = {}
1560
+ @relation = nil
1561
+
1562
+ ensure_proper_type
1563
+ set_serialized_attributes
1564
+
1565
+ populate_with_current_scope_attributes
1566
+
1567
+ assign_attributes(attributes, options) if attributes
1568
+
1569
+ yield self if block_given?
1570
+ run_callbacks :initialize
1571
+ end
1572
+
1573
+ # Populate +coder+ with attributes about this record that should be
1574
+ # serialized. The structure of +coder+ defined in this method is
1575
+ # guaranteed to match the structure of +coder+ passed to the +init_with+
1576
+ # method.
1577
+ #
1578
+ # Example:
1579
+ #
1580
+ # class Post < ActiveRecord::Base
1581
+ # end
1582
+ # coder = {}
1583
+ # Post.new.encode_with(coder)
1584
+ # coder # => { 'id' => nil, ... }
1585
+ def encode_with(coder)
1586
+ coder['attributes'] = attributes
1587
+ end
1588
+
1589
+ # Initialize an empty model object from +coder+. +coder+ must contain
1590
+ # the attributes necessary for initializing an empty model object. For
1591
+ # example:
1592
+ #
1593
+ # class Post < ActiveRecord::Base
1594
+ # end
1595
+ #
1596
+ # post = Post.allocate
1597
+ # post.init_with('attributes' => { 'title' => 'hello world' })
1598
+ # post.title # => 'hello world'
1599
+ def init_with(coder)
1600
+ @attributes = coder['attributes']
1601
+ @relation = nil
1602
+
1603
+ set_serialized_attributes
1604
+
1605
+ @attributes_cache, @previously_changed, @changed_attributes = {}, {}, {}
1606
+ @association_cache = {}
1607
+ @aggregation_cache = {}
1608
+ @readonly = @destroyed = @marked_for_destruction = false
1609
+ @new_record = false
1610
+ run_callbacks :find
1611
+ run_callbacks :initialize
1612
+
1613
+ self
1614
+ end
1615
+
1616
+ # Returns a String, which Action Pack uses for constructing an URL to this
1617
+ # object. The default implementation returns this record's id as a String,
1618
+ # or nil if this record's unsaved.
1619
+ #
1620
+ # For example, suppose that you have a User model, and that you have a
1621
+ # <tt>resources :users</tt> route. Normally, +user_path+ will
1622
+ # construct a path with the user object's 'id' in it:
1623
+ #
1624
+ # user = User.find_by_name('Phusion')
1625
+ # user_path(user) # => "/users/1"
1626
+ #
1627
+ # You can override +to_param+ in your model to make +user_path+ construct
1628
+ # a path using the user's name instead of the user's id:
1629
+ #
1630
+ # class User < ActiveRecord::Base
1631
+ # def to_param # overridden
1632
+ # name
1633
+ # end
1634
+ # end
1635
+ #
1636
+ # user = User.find_by_name('Phusion')
1637
+ # user_path(user) # => "/users/Phusion"
1638
+ def to_param
1639
+ # We can't use alias_method here, because method 'id' optimizes itself on the fly.
1640
+ id && id.to_s # Be sure to stringify the id for routes
1641
+ end
1642
+
1643
+ # Returns a cache key that can be used to identify this record.
1644
+ #
1645
+ # ==== Examples
1646
+ #
1647
+ # Product.new.cache_key # => "products/new"
1648
+ # Product.find(5).cache_key # => "products/5" (updated_at not available)
1649
+ # Person.find(5).cache_key # => "people/5-20071224150000" (updated_at available)
1650
+ def cache_key
1651
+ case
1652
+ when new_record?
1653
+ "#{self.class.model_name.cache_key}/new"
1654
+ when timestamp = self[:updated_at]
1655
+ timestamp = timestamp.utc.to_s(:number)
1656
+ "#{self.class.model_name.cache_key}/#{id}-#{timestamp}"
1657
+ else
1658
+ "#{self.class.model_name.cache_key}/#{id}"
1659
+ end
1660
+ end
1661
+
1662
+ def quoted_id #:nodoc:
1663
+ quote_value(id, column_for_attribute(self.class.primary_key))
1664
+ end
1665
+
1666
+ # Returns true if the given attribute is in the attributes hash
1667
+ def has_attribute?(attr_name)
1668
+ @attributes.has_key?(attr_name.to_s)
1669
+ end
1670
+
1671
+ # Returns an array of names for the attributes available on this object.
1672
+ def attribute_names
1673
+ @attributes.keys
1674
+ end
1675
+
1676
+ # Allows you to set all the attributes at once by passing in a hash with keys
1677
+ # matching the attribute names (which again matches the column names).
1678
+ #
1679
+ # If any attributes are protected by either +attr_protected+ or
1680
+ # +attr_accessible+ then only settable attributes will be assigned.
1681
+ #
1682
+ # The +guard_protected_attributes+ argument is now deprecated, use
1683
+ # the +assign_attributes+ method if you want to bypass mass-assignment security.
1684
+ #
1685
+ # class User < ActiveRecord::Base
1686
+ # attr_protected :is_admin
1687
+ # end
1688
+ #
1689
+ # user = User.new
1690
+ # user.attributes = { :username => 'Phusion', :is_admin => true }
1691
+ # user.username # => "Phusion"
1692
+ # user.is_admin? # => false
1693
+ def attributes=(new_attributes, guard_protected_attributes = nil)
1694
+ unless guard_protected_attributes.nil?
1695
+ message = "the use of 'guard_protected_attributes' will be removed from the next minor release of rails, " +
1696
+ "if you want to bypass mass-assignment security then look into using assign_attributes"
1697
+ ActiveSupport::Deprecation.warn(message)
1698
+ end
1699
+
1700
+ return unless new_attributes.is_a?(Hash)
1701
+
1702
+ if guard_protected_attributes == false
1703
+ assign_attributes(new_attributes, :without_protection => true)
1704
+ else
1705
+ assign_attributes(new_attributes)
1706
+ end
1707
+ end
1708
+
1709
+ # Allows you to set all the attributes for a particular mass-assignment
1710
+ # security role by passing in a hash of attributes with keys matching
1711
+ # the attribute names (which again matches the column names) and the role
1712
+ # name using the :as option.
1713
+ #
1714
+ # To bypass mass-assignment security you can use the :without_protection => true
1715
+ # option.
1716
+ #
1717
+ # class User < ActiveRecord::Base
1718
+ # attr_accessible :name
1719
+ # attr_accessible :name, :is_admin, :as => :admin
1720
+ # end
1721
+ #
1722
+ # user = User.new
1723
+ # user.assign_attributes({ :name => 'Josh', :is_admin => true })
1724
+ # user.name # => "Josh"
1725
+ # user.is_admin? # => false
1726
+ #
1727
+ # user = User.new
1728
+ # user.assign_attributes({ :name => 'Josh', :is_admin => true }, :as => :admin)
1729
+ # user.name # => "Josh"
1730
+ # user.is_admin? # => true
1731
+ #
1732
+ # user = User.new
1733
+ # user.assign_attributes({ :name => 'Josh', :is_admin => true }, :without_protection => true)
1734
+ # user.name # => "Josh"
1735
+ # user.is_admin? # => true
1736
+ def assign_attributes(new_attributes, options = {})
1737
+ return unless new_attributes
1738
+
1739
+ attributes = new_attributes.stringify_keys
1740
+ multi_parameter_attributes = []
1741
+ @mass_assignment_options = options
1742
+
1743
+ unless options[:without_protection]
1744
+ attributes = sanitize_for_mass_assignment(attributes, mass_assignment_role)
1745
+ end
1746
+
1747
+ attributes.each do |k, v|
1748
+ if k.include?("(")
1749
+ multi_parameter_attributes << [ k, v ]
1750
+ elsif respond_to?("#{k}=")
1751
+ send("#{k}=", v)
1752
+ else
1753
+ raise(UnknownAttributeError, "unknown attribute: #{k}")
1754
+ end
1755
+ end
1756
+
1757
+ @mass_assignment_options = nil
1758
+ assign_multiparameter_attributes(multi_parameter_attributes)
1759
+ end
1760
+
1761
+ # Returns a hash of all the attributes with their names as keys and the values of the attributes as values.
1762
+ def attributes
1763
+ Hash[@attributes.map { |name, _| [name, read_attribute(name)] }]
1764
+ end
1765
+
1766
+ # Returns an <tt>#inspect</tt>-like string for the value of the
1767
+ # attribute +attr_name+. String attributes are truncated upto 50
1768
+ # characters, and Date and Time attributes are returned in the
1769
+ # <tt>:db</tt> format. Other attributes return the value of
1770
+ # <tt>#inspect</tt> without modification.
1771
+ #
1772
+ # person = Person.create!(:name => "David Heinemeier Hansson " * 3)
1773
+ #
1774
+ # person.attribute_for_inspect(:name)
1775
+ # # => '"David Heinemeier Hansson David Heinemeier Hansson D..."'
1776
+ #
1777
+ # person.attribute_for_inspect(:created_at)
1778
+ # # => '"2009-01-12 04:48:57"'
1779
+ def attribute_for_inspect(attr_name)
1780
+ value = read_attribute(attr_name)
1781
+
1782
+ if value.is_a?(String) && value.length > 50
1783
+ "#{value[0..50]}...".inspect
1784
+ elsif value.is_a?(Date) || value.is_a?(Time)
1785
+ %("#{value.to_s(:db)}")
1786
+ else
1787
+ value.inspect
1788
+ end
1789
+ end
1790
+
1791
+ # Returns true if the specified +attribute+ has been set by the user or by a database load and is neither
1792
+ # nil nor empty? (the latter only applies to objects that respond to empty?, most notably Strings).
1793
+ def attribute_present?(attribute)
1794
+ !_read_attribute(attribute).blank?
1795
+ end
1796
+
1797
+ # Returns the column object for the named attribute.
1798
+ def column_for_attribute(name)
1799
+ self.class.columns_hash[name.to_s]
1800
+ end
1801
+
1802
+ # Returns true if +comparison_object+ is the same exact object, or +comparison_object+
1803
+ # is of the same type and +self+ has an ID and it is equal to +comparison_object.id+.
1804
+ #
1805
+ # Note that new records are different from any other record by definition, unless the
1806
+ # other record is the receiver itself. Besides, if you fetch existing records with
1807
+ # +select+ and leave the ID out, you're on your own, this predicate will return false.
1808
+ #
1809
+ # Note also that destroying a record preserves its ID in the model instance, so deleted
1810
+ # models are still comparable.
1811
+ def ==(comparison_object)
1812
+ super ||
1813
+ comparison_object.instance_of?(self.class) &&
1814
+ id.present? &&
1815
+ comparison_object.id == id
1816
+ end
1817
+ alias :eql? :==
1818
+
1819
+ # Delegates to id in order to allow two records of the same type and id to work with something like:
1820
+ # [ Person.find(1), Person.find(2), Person.find(3) ] & [ Person.find(1), Person.find(4) ] # => [ Person.find(1) ]
1821
+ def hash
1822
+ id.hash
1823
+ end
1824
+
1825
+ # Freeze the attributes hash such that associations are still accessible, even on destroyed records.
1826
+ def freeze
1827
+ @attributes.freeze; self
1828
+ end
1829
+
1830
+ # Returns +true+ if the attributes hash has been frozen.
1831
+ def frozen?
1832
+ @attributes.frozen?
1833
+ end
1834
+
1835
+ # Allows sort on objects
1836
+ def <=>(other_object)
1837
+ if other_object.is_a?(self.class)
1838
+ self.to_key <=> other_object.to_key
1839
+ else
1840
+ nil
1841
+ end
1842
+ end
1843
+
1844
+ # Backport dup from 1.9 so that initialize_dup() gets called
1845
+ unless Object.respond_to?(:initialize_dup)
1846
+ def dup # :nodoc:
1847
+ copy = super
1848
+ copy.initialize_dup(self)
1849
+ copy
1850
+ end
1851
+ end
1852
+
1853
+ # Duped objects have no id assigned and are treated as new records. Note
1854
+ # that this is a "shallow" copy as it copies the object's attributes
1855
+ # only, not its associations. The extent of a "deep" copy is application
1856
+ # specific and is therefore left to the application to implement according
1857
+ # to its need.
1858
+ # The dup method does not preserve the timestamps (created|updated)_(at|on).
1859
+ def initialize_dup(other)
1860
+ cloned_attributes = other.clone_attributes(:read_attribute_before_type_cast)
1861
+ cloned_attributes.delete(self.class.primary_key)
1862
+
1863
+ @attributes = cloned_attributes
1864
+
1865
+ _run_after_initialize_callbacks if respond_to?(:_run_after_initialize_callbacks)
1866
+
1867
+ @changed_attributes = {}
1868
+ attributes_from_column_definition.each do |attr, orig_value|
1869
+ @changed_attributes[attr] = orig_value if field_changed?(attr, orig_value, @attributes[attr])
1870
+ end
1871
+
1872
+ @aggregation_cache = {}
1873
+ @association_cache = {}
1874
+ @attributes_cache = {}
1875
+ @new_record = true
1876
+
1877
+ ensure_proper_type
1878
+ populate_with_current_scope_attributes
1879
+ clear_timestamp_attributes
1880
+ end
1881
+
1882
+ # Returns +true+ if the record is read only. Records loaded through joins with piggy-back
1883
+ # attributes will be marked as read only since they cannot be saved.
1884
+ def readonly?
1885
+ @readonly
1886
+ end
1887
+
1888
+ # Marks this record as read only.
1889
+ def readonly!
1890
+ @readonly = true
1891
+ end
1892
+
1893
+ # Returns the contents of the record as a nicely formatted string.
1894
+ def inspect
1895
+ attributes_as_nice_string = self.class.column_names.collect { |name|
1896
+ if has_attribute?(name)
1897
+ "#{name}: #{attribute_for_inspect(name)}"
1898
+ end
1899
+ }.compact.join(", ")
1900
+ "#<#{self.class} #{attributes_as_nice_string}>"
1901
+ end
1902
+
1903
+ protected
1904
+ def clone_attributes(reader_method = :read_attribute, attributes = {})
1905
+ attribute_names.each do |name|
1906
+ attributes[name] = clone_attribute_value(reader_method, name)
1907
+ end
1908
+ attributes
1909
+ end
1910
+
1911
+ def clone_attribute_value(reader_method, attribute_name)
1912
+ value = send(reader_method, attribute_name)
1913
+ value.duplicable? ? value.clone : value
1914
+ rescue TypeError, NoMethodError
1915
+ value
1916
+ end
1917
+
1918
+ def mass_assignment_options
1919
+ @mass_assignment_options ||= {}
1920
+ end
1921
+
1922
+ def mass_assignment_role
1923
+ mass_assignment_options[:as] || :default
1924
+ end
1925
+
1926
+ private
1927
+
1928
+ # Under Ruby 1.9, Array#flatten will call #to_ary (recursively) on each of the elements
1929
+ # of the array, and then rescues from the possible NoMethodError. If those elements are
1930
+ # ActiveRecord::Base's, then this triggers the various method_missing's that we have,
1931
+ # which significantly impacts upon performance.
1932
+ #
1933
+ # So we can avoid the method_missing hit by explicitly defining #to_ary as nil here.
1934
+ #
1935
+ # See also http://tenderlovemaking.com/2011/06/28/til-its-ok-to-return-nil-from-to_ary/
1936
+ def to_ary # :nodoc:
1937
+ nil
1938
+ end
1939
+
1940
+ def set_serialized_attributes
1941
+ sattrs = self.class.serialized_attributes
1942
+
1943
+ sattrs.each do |key, coder|
1944
+ @attributes[key] = coder.load @attributes[key] if @attributes.key?(key)
1945
+ end
1946
+ end
1947
+
1948
+ # Sets the attribute used for single table inheritance to this class name if this is not the
1949
+ # ActiveRecord::Base descendant.
1950
+ # Considering the hierarchy Reply < Message < ActiveRecord::Base, this makes it possible to
1951
+ # do Reply.new without having to set <tt>Reply[Reply.inheritance_column] = "Reply"</tt> yourself.
1952
+ # No such attribute would be set for objects of the Message class in that example.
1953
+ def ensure_proper_type
1954
+ klass = self.class
1955
+ if klass.finder_needs_type_condition?
1956
+ write_attribute(klass.inheritance_column, klass.sti_name)
1957
+ end
1958
+ end
1959
+
1960
+ # The primary key and inheritance column can never be set by mass-assignment for security reasons.
1961
+ def self.attributes_protected_by_default
1962
+ default = [ primary_key, inheritance_column ]
1963
+ default << 'id' unless primary_key.eql? 'id'
1964
+ default
1965
+ end
1966
+
1967
+ # Returns a copy of the attributes hash where all the values have been safely quoted for use in
1968
+ # an Arel insert/update method.
1969
+ def arel_attributes_values(include_primary_key = true, include_readonly_attributes = true, attribute_names = @attributes.keys)
1970
+ attrs = {}
1971
+ klass = self.class
1972
+ arel_table = klass.arel_table
1973
+
1974
+ attribute_names.each do |name|
1975
+ if (column = column_for_attribute(name)) && (include_primary_key || !column.primary)
1976
+
1977
+ if include_readonly_attributes || (!include_readonly_attributes && !self.class.readonly_attributes.include?(name))
1978
+
1979
+ value = if coder = klass.serialized_attributes[name]
1980
+ coder.dump @attributes[name]
1981
+ else
1982
+ # FIXME: we need @attributes to be used consistently.
1983
+ # If the values stored in @attributes were already type
1984
+ # casted, this code could be simplified
1985
+ read_attribute(name)
1986
+ end
1987
+
1988
+ attrs[arel_table[name]] = value
1989
+ end
1990
+ end
1991
+ end
1992
+ attrs
1993
+ end
1994
+
1995
+ # Quote strings appropriately for SQL statements.
1996
+ def quote_value(value, column = nil)
1997
+ self.class.connection.quote(value, column)
1998
+ end
1999
+
2000
+ # Instantiates objects for all attribute classes that needs more than one constructor parameter. This is done
2001
+ # by calling new on the column type or aggregation type (through composed_of) object with these parameters.
2002
+ # So having the pairs written_on(1) = "2004", written_on(2) = "6", written_on(3) = "24", will instantiate
2003
+ # written_on (a date type) with Date.new("2004", "6", "24"). You can also specify a typecast character in the
2004
+ # parentheses to have the parameters typecasted before they're used in the constructor. Use i for Fixnum,
2005
+ # f for Float, s for String, and a for Array. If all the values for a given attribute are empty, the
2006
+ # attribute will be set to nil.
2007
+ def assign_multiparameter_attributes(pairs)
2008
+ execute_callstack_for_multiparameter_attributes(
2009
+ extract_callstack_for_multiparameter_attributes(pairs)
2010
+ )
2011
+ end
2012
+
2013
+ def instantiate_time_object(name, values)
2014
+ if self.class.send(:create_time_zone_conversion_attribute?, name, column_for_attribute(name))
2015
+ Time.zone.local(*values)
2016
+ else
2017
+ Time.time_with_datetime_fallback(@@default_timezone, *values)
2018
+ end
2019
+ end
2020
+
2021
+ def execute_callstack_for_multiparameter_attributes(callstack)
2022
+ errors = []
2023
+ callstack.each do |name, values_with_empty_parameters|
2024
+ begin
2025
+ send(name + "=", read_value_from_parameter(name, values_with_empty_parameters))
2026
+ rescue => ex
2027
+ errors << AttributeAssignmentError.new("error on assignment #{values_with_empty_parameters.values.inspect} to #{name}", ex, name)
2028
+ end
2029
+ end
2030
+ unless errors.empty?
2031
+ raise MultiparameterAssignmentErrors.new(errors), "#{errors.size} error(s) on assignment of multiparameter attributes"
2032
+ end
2033
+ end
2034
+
2035
+ def read_value_from_parameter(name, values_hash_from_param)
2036
+ klass = (self.class.reflect_on_aggregation(name.to_sym) || column_for_attribute(name)).klass
2037
+ if values_hash_from_param.values.all?{|v|v.nil?}
2038
+ nil
2039
+ elsif klass == Time
2040
+ read_time_parameter_value(name, values_hash_from_param)
2041
+ elsif klass == Date
2042
+ read_date_parameter_value(name, values_hash_from_param)
2043
+ else
2044
+ read_other_parameter_value(klass, name, values_hash_from_param)
2045
+ end
2046
+ end
2047
+
2048
+ def read_time_parameter_value(name, values_hash_from_param)
2049
+ # If Date bits were not provided, error
2050
+ raise "Missing Parameter" if [1,2,3].any?{|position| !values_hash_from_param.has_key?(position)}
2051
+ max_position = extract_max_param_for_multiparameter_attributes(values_hash_from_param, 6)
2052
+ set_values = (1..max_position).collect{|position| values_hash_from_param[position] }
2053
+ # If Date bits were provided but blank, then default to 1
2054
+ # If Time bits are not there, then default to 0
2055
+ [1,1,1,0,0,0].each_with_index{|v,i| set_values[i] = set_values[i].blank? ? v : set_values[i]}
2056
+ instantiate_time_object(name, set_values)
2057
+ end
2058
+
2059
+ def read_date_parameter_value(name, values_hash_from_param)
2060
+ set_values = (1..3).collect{|position| values_hash_from_param[position].blank? ? 1 : values_hash_from_param[position]}
2061
+ begin
2062
+ Date.new(*set_values)
2063
+ rescue ArgumentError => ex # if Date.new raises an exception on an invalid date
2064
+ instantiate_time_object(name, set_values).to_date # we instantiate Time object and convert it back to a date thus using Time's logic in handling invalid dates
2065
+ end
2066
+ end
2067
+
2068
+ def read_other_parameter_value(klass, name, values_hash_from_param)
2069
+ max_position = extract_max_param_for_multiparameter_attributes(values_hash_from_param)
2070
+ values = (1..max_position).collect do |position|
2071
+ raise "Missing Parameter" if !values_hash_from_param.has_key?(position)
2072
+ values_hash_from_param[position]
2073
+ end
2074
+ klass.new(*values)
2075
+ end
2076
+
2077
+ def extract_max_param_for_multiparameter_attributes(values_hash_from_param, upper_cap = 100)
2078
+ [values_hash_from_param.keys.max,upper_cap].min
2079
+ end
2080
+
2081
+ def extract_callstack_for_multiparameter_attributes(pairs)
2082
+ attributes = { }
2083
+
2084
+ pairs.each do |pair|
2085
+ multiparameter_name, value = pair
2086
+ attribute_name = multiparameter_name.split("(").first
2087
+ attributes[attribute_name] = {} unless attributes.include?(attribute_name)
2088
+
2089
+ parameter_value = value.empty? ? nil : type_cast_attribute_value(multiparameter_name, value)
2090
+ attributes[attribute_name][find_parameter_position(multiparameter_name)] ||= parameter_value
2091
+ end
2092
+
2093
+ attributes
2094
+ end
2095
+
2096
+ def type_cast_attribute_value(multiparameter_name, value)
2097
+ multiparameter_name =~ /\([0-9]*([if])\)/ ? value.send("to_" + $1) : value
2098
+ end
2099
+
2100
+ def find_parameter_position(multiparameter_name)
2101
+ multiparameter_name.scan(/\(([0-9]*).*\)/).first.first.to_i
2102
+ end
2103
+
2104
+ # Returns a comma-separated pair list, like "key1 = val1, key2 = val2".
2105
+ def comma_pair_list(hash)
2106
+ hash.map { |k,v| "#{k} = #{v}" }.join(", ")
2107
+ end
2108
+
2109
+ def quote_columns(quoter, hash)
2110
+ Hash[hash.map { |name, value| [quoter.quote_column_name(name), value] }]
2111
+ end
2112
+
2113
+ def quoted_comma_pair_list(quoter, hash)
2114
+ comma_pair_list(quote_columns(quoter, hash))
2115
+ end
2116
+
2117
+ def convert_number_column_value(value)
2118
+ if value == false
2119
+ 0
2120
+ elsif value == true
2121
+ 1
2122
+ elsif value.is_a?(String) && value.blank?
2123
+ nil
2124
+ else
2125
+ value
2126
+ end
2127
+ end
2128
+
2129
+ def populate_with_current_scope_attributes
2130
+ return unless self.class.scope_attributes?
2131
+
2132
+ self.class.scope_attributes.each do |att,value|
2133
+ send("#{att}=", value) if respond_to?("#{att}=")
2134
+ end
2135
+ end
2136
+
2137
+ # Clear attributes and changed_attributes
2138
+ def clear_timestamp_attributes
2139
+ all_timestamp_attributes_in_model.each do |attribute_name|
2140
+ self[attribute_name] = nil
2141
+ changed_attributes.delete(attribute_name)
2142
+ end
2143
+ end
2144
+ end
2145
+
2146
+ Base.class_eval do
2147
+ include ActiveRecord::Persistence
2148
+ extend ActiveModel::Naming
2149
+ extend QueryCache::ClassMethods
2150
+ extend ActiveSupport::Benchmarkable
2151
+ extend ActiveSupport::DescendantsTracker
2152
+
2153
+ include ActiveModel::Conversion
2154
+ include Validations
2155
+ extend CounterCache
2156
+ include Locking::Optimistic, Locking::Pessimistic
2157
+ include AttributeMethods
2158
+ include AttributeMethods::Read, AttributeMethods::Write, AttributeMethods::BeforeTypeCast, AttributeMethods::Query
2159
+ include AttributeMethods::PrimaryKey
2160
+ include AttributeMethods::TimeZoneConversion
2161
+ include AttributeMethods::Dirty
2162
+ include ActiveModel::MassAssignmentSecurity
2163
+ include Callbacks, ActiveModel::Observing, Timestamp
2164
+ include Associations, NamedScope
2165
+ include IdentityMap
2166
+ include ActiveModel::SecurePassword
2167
+
2168
+ # AutosaveAssociation needs to be included before Transactions, because we want
2169
+ # #save_with_autosave_associations to be wrapped inside a transaction.
2170
+ include AutosaveAssociation, NestedAttributes
2171
+ include Aggregations, Transactions, Reflection, Serialization
2172
+
2173
+ NilClass.add_whiner(self) if NilClass.respond_to?(:add_whiner)
2174
+
2175
+ # Returns the value of the attribute identified by <tt>attr_name</tt> after it has been typecast (for example,
2176
+ # "2004-12-12" in a data column is cast to a date object, like Date.new(2004, 12, 12)).
2177
+ # (Alias for the protected read_attribute method).
2178
+ alias [] read_attribute
2179
+
2180
+ # Updates the attribute identified by <tt>attr_name</tt> with the specified +value+.
2181
+ # (Alias for the protected write_attribute method).
2182
+ alias []= write_attribute
2183
+
2184
+ public :[], :[]=
2185
+ end
2186
+ end
2187
+
2188
+ # TODO: Remove this and make it work with LAZY flag
2189
+ require 'active_record/connection_adapters/abstract_adapter'
2190
+ ActiveSupport.run_load_hooks(:active_record, ActiveRecord::Base)