challah 0.9.0 → 0.9.1.beta
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.md +4 -0
- data/app/models/user.rb +5 -1
- data/lib/challah/authorization.rb +8 -7
- data/lib/challah/routes.rb +7 -7
- data/lib/challah/user.rb +5 -1
- data/lib/challah/version.rb +1 -1
- data/lib/tasks/crud.rake +6 -8
- data/test/user_test.rb +4 -1
- data/vendor/bundle/cache/actionmailer-3.2.11.gem +0 -0
- data/vendor/bundle/cache/actionpack-3.2.11.gem +0 -0
- data/vendor/bundle/cache/activemodel-3.2.11.gem +0 -0
- data/vendor/bundle/cache/activerecord-3.2.11.gem +0 -0
- data/vendor/bundle/cache/activeresource-3.2.11.gem +0 -0
- data/vendor/bundle/cache/activesupport-3.2.11.gem +0 -0
- data/vendor/bundle/cache/json-1.7.6.gem +0 -0
- data/vendor/bundle/cache/rack-1.4.3.gem +0 -0
- data/vendor/bundle/cache/rails-3.2.11.gem +0 -0
- data/vendor/bundle/cache/railties-3.2.11.gem +0 -0
- data/vendor/bundle/cache/rake-10.0.3.gem +0 -0
- data/vendor/bundle/gems/actionmailer-3.2.11/CHANGELOG.md +57 -0
- data/vendor/bundle/gems/actionmailer-3.2.11/lib/action_mailer/version.rb +10 -0
- data/vendor/bundle/gems/actionpack-3.2.11/CHANGELOG.md +447 -0
- data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch/http/request.rb +279 -0
- data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch/middleware/params_parser.rb +75 -0
- data/vendor/bundle/gems/actionpack-3.2.11/lib/action_dispatch/middleware/session/abstract_store.rb +88 -0
- data/vendor/bundle/gems/actionpack-3.2.11/lib/action_pack/version.rb +10 -0
- data/vendor/bundle/gems/activemodel-3.2.11/CHANGELOG.md +62 -0
- data/vendor/bundle/gems/activemodel-3.2.11/lib/active_model/version.rb +10 -0
- data/vendor/bundle/gems/activerecord-3.2.11/CHANGELOG.md +494 -0
- data/vendor/bundle/gems/activerecord-3.2.11/lib/active_record/dynamic_matchers.rb +84 -0
- data/vendor/bundle/gems/activerecord-3.2.11/lib/active_record/relation/predicate_builder.rb +63 -0
- data/vendor/bundle/gems/activerecord-3.2.11/lib/active_record/version.rb +10 -0
- data/vendor/bundle/gems/activeresource-3.2.11/CHANGELOG.md +377 -0
- data/vendor/bundle/gems/activeresource-3.2.11/lib/active_resource/version.rb +10 -0
- data/vendor/bundle/gems/activesupport-3.2.11/CHANGELOG.md +157 -0
- data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/core_ext/hash/conversions.rb +175 -0
- data/vendor/bundle/gems/activesupport-3.2.11/lib/active_support/version.rb +10 -0
- data/vendor/bundle/gems/bcrypt-ruby-3.0.1/ext/mri/Makefile +49 -23
- data/vendor/bundle/gems/bcrypt-ruby-3.0.1/ext/mri/bcrypt_ext.bundle +0 -0
- data/vendor/bundle/gems/bcrypt-ruby-3.0.1/ext/mri/bcrypt_ext.o +0 -0
- data/vendor/bundle/gems/bcrypt-ruby-3.0.1/ext/mri/crypt.o +0 -0
- data/vendor/bundle/gems/bcrypt-ruby-3.0.1/ext/mri/crypt_blowfish.o +0 -0
- data/vendor/bundle/gems/bcrypt-ruby-3.0.1/ext/mri/crypt_gensalt.o +0 -0
- data/vendor/bundle/gems/bcrypt-ruby-3.0.1/ext/mri/wrapper.o +0 -0
- data/vendor/bundle/gems/bcrypt-ruby-3.0.1/lib/bcrypt_ext.bundle +0 -0
- data/vendor/bundle/gems/json-1.7.6/CHANGES +258 -0
- data/vendor/bundle/gems/json-1.7.6/Gemfile +9 -0
- data/vendor/bundle/gems/json-1.7.6/VERSION +1 -0
- data/vendor/bundle/gems/json-1.7.6/ext/json/ext/generator/Makefile +214 -0
- data/vendor/bundle/gems/json-1.7.6/ext/json/ext/generator/generator.bundle +0 -0
- data/vendor/bundle/gems/json-1.7.6/ext/json/ext/generator/generator.c +1427 -0
- data/vendor/bundle/gems/json-1.7.6/ext/json/ext/generator/generator.h +149 -0
- data/vendor/bundle/gems/json-1.7.6/ext/json/ext/generator/generator.o +0 -0
- data/vendor/bundle/gems/json-1.7.6/ext/json/ext/parser/Makefile +214 -0
- data/vendor/bundle/gems/json-1.7.6/ext/json/ext/parser/parser.bundle +0 -0
- data/vendor/bundle/gems/json-1.7.6/ext/json/ext/parser/parser.c +2204 -0
- data/vendor/bundle/gems/json-1.7.6/ext/json/ext/parser/parser.o +0 -0
- data/vendor/bundle/gems/json-1.7.6/ext/json/ext/parser/parser.rl +927 -0
- data/vendor/bundle/gems/json-1.7.6/java/src/json/ext/GeneratorState.java +542 -0
- data/vendor/bundle/gems/json-1.7.6/java/src/json/ext/Parser.java +2644 -0
- data/vendor/bundle/gems/json-1.7.6/java/src/json/ext/Parser.rl +968 -0
- data/vendor/bundle/gems/json-1.7.6/json.gemspec +37 -0
- data/vendor/bundle/gems/json-1.7.6/json_pure.gemspec +39 -0
- data/vendor/bundle/gems/json-1.7.6/lib/json/add/bigdecimal.rb +28 -0
- data/vendor/bundle/gems/json-1.7.6/lib/json/common.rb +480 -0
- data/vendor/bundle/gems/json-1.7.6/lib/json/ext/generator.bundle +0 -0
- data/vendor/bundle/gems/json-1.7.6/lib/json/ext/parser.bundle +0 -0
- data/vendor/bundle/gems/json-1.7.6/lib/json/generic_object.rb +54 -0
- data/vendor/bundle/gems/json-1.7.6/lib/json/pure/generator.rb +492 -0
- data/vendor/bundle/gems/json-1.7.6/lib/json/pure/parser.rb +359 -0
- data/vendor/bundle/gems/json-1.7.6/lib/json/version.rb +8 -0
- data/vendor/bundle/gems/json-1.7.6/tests/fixtures/fail18.json +1 -0
- data/vendor/bundle/gems/json-1.7.6/tests/test_json.rb +539 -0
- data/vendor/bundle/gems/json-1.7.6/tests/test_json_encoding.rb +65 -0
- data/vendor/bundle/gems/json-1.7.6/tests/test_json_fixtures.rb +35 -0
- data/vendor/bundle/gems/json-1.7.6/tests/test_json_generate.rb +299 -0
- data/vendor/bundle/gems/json-1.7.6/tests/test_json_generic_object.rb +46 -0
- data/vendor/bundle/gems/json-1.7.6/tests/test_json_string_matching.rb +40 -0
- data/vendor/bundle/gems/json-1.7.6/tests/test_json_unicode.rb +72 -0
- data/vendor/bundle/gems/rack-1.4.3/COPYING +18 -0
- data/vendor/bundle/gems/rack-1.4.3/KNOWN-ISSUES +30 -0
- data/vendor/bundle/gems/rack-1.4.3/README.rdoc +569 -0
- data/vendor/bundle/gems/rack-1.4.3/Rakefile +122 -0
- data/vendor/bundle/gems/rack-1.4.3/SPEC +173 -0
- data/vendor/bundle/gems/rack-1.4.3/contrib/rack.png +0 -0
- data/vendor/bundle/gems/rack-1.4.3/contrib/rack.svg +150 -0
- data/vendor/bundle/gems/rack-1.4.3/contrib/rdoc.css +412 -0
- data/vendor/bundle/gems/rack-1.4.3/lib/rack/auth/basic.rb +58 -0
- data/vendor/bundle/gems/rack-1.4.3/lib/rack/auth/digest/nonce.rb +51 -0
- data/vendor/bundle/gems/rack-1.4.3/lib/rack/backports/uri/common_18.rb +56 -0
- data/vendor/bundle/gems/rack-1.4.3/lib/rack/backports/uri/common_192.rb +52 -0
- data/vendor/bundle/gems/rack-1.4.3/lib/rack/backports/uri/common_193.rb +29 -0
- data/vendor/bundle/gems/rack-1.4.3/lib/rack/body_proxy.rb +39 -0
- data/vendor/bundle/gems/rack-1.4.3/lib/rack/builder.rb +145 -0
- data/vendor/bundle/gems/rack-1.4.3/lib/rack/cascade.rb +52 -0
- data/vendor/bundle/gems/rack-1.4.3/lib/rack/commonlogger.rb +64 -0
- data/vendor/bundle/gems/rack-1.4.3/lib/rack/deflater.rb +103 -0
- data/vendor/bundle/gems/rack-1.4.3/lib/rack/directory.rb +161 -0
- data/vendor/bundle/gems/rack-1.4.3/lib/rack/etag.rb +64 -0
- data/vendor/bundle/gems/rack-1.4.3/lib/rack/file.rb +151 -0
- data/vendor/bundle/gems/rack-1.4.3/lib/rack/head.rb +20 -0
- data/vendor/bundle/gems/rack-1.4.3/lib/rack/lint.rb +569 -0
- data/vendor/bundle/gems/rack-1.4.3/lib/rack/lock.rb +24 -0
- data/vendor/bundle/gems/rack-1.4.3/lib/rack/mime.rb +648 -0
- data/vendor/bundle/gems/rack-1.4.3/lib/rack/mock.rb +190 -0
- data/vendor/bundle/gems/rack-1.4.3/lib/rack/multipart/parser.rb +176 -0
- data/vendor/bundle/gems/rack-1.4.3/lib/rack/multipart.rb +34 -0
- data/vendor/bundle/gems/rack-1.4.3/lib/rack/reloader.rb +109 -0
- data/vendor/bundle/gems/rack-1.4.3/lib/rack/request.rb +339 -0
- data/vendor/bundle/gems/rack-1.4.3/lib/rack/response.rb +156 -0
- data/vendor/bundle/gems/rack-1.4.3/lib/rack/server.rb +349 -0
- data/vendor/bundle/gems/rack-1.4.3/lib/rack/session/abstract/id.rb +377 -0
- data/vendor/bundle/gems/rack-1.4.3/lib/rack/session/cookie.rb +170 -0
- data/vendor/bundle/gems/rack-1.4.3/lib/rack/static.rb +153 -0
- data/vendor/bundle/gems/rack-1.4.3/lib/rack/utils.rb +554 -0
- data/vendor/bundle/gems/rack-1.4.3/rack.gemspec +37 -0
- data/vendor/bundle/gems/rack-1.4.3/test/builder/line.ru +1 -0
- data/vendor/bundle/gems/rack-1.4.3/test/cgi/assets/folder/test.js +1 -0
- data/vendor/bundle/gems/rack-1.4.3/test/cgi/assets/fonts/font.eot +1 -0
- data/vendor/bundle/gems/rack-1.4.3/test/cgi/assets/images/image.png +1 -0
- data/vendor/bundle/gems/rack-1.4.3/test/cgi/assets/index.html +1 -0
- data/vendor/bundle/gems/rack-1.4.3/test/cgi/assets/javascripts/app.js +1 -0
- data/vendor/bundle/gems/rack-1.4.3/test/cgi/assets/stylesheets/app.css +1 -0
- data/vendor/bundle/gems/rack-1.4.3/test/spec_auth_basic.rb +81 -0
- data/vendor/bundle/gems/rack-1.4.3/test/spec_auth_digest.rb +259 -0
- data/vendor/bundle/gems/rack-1.4.3/test/spec_body_proxy.rb +69 -0
- data/vendor/bundle/gems/rack-1.4.3/test/spec_builder.rb +207 -0
- data/vendor/bundle/gems/rack-1.4.3/test/spec_cascade.rb +61 -0
- data/vendor/bundle/gems/rack-1.4.3/test/spec_chunked.rb +87 -0
- data/vendor/bundle/gems/rack-1.4.3/test/spec_config.rb +22 -0
- data/vendor/bundle/gems/rack-1.4.3/test/spec_content_length.rb +86 -0
- data/vendor/bundle/gems/rack-1.4.3/test/spec_content_type.rb +45 -0
- data/vendor/bundle/gems/rack-1.4.3/test/spec_deflater.rb +187 -0
- data/vendor/bundle/gems/rack-1.4.3/test/spec_directory.rb +88 -0
- data/vendor/bundle/gems/rack-1.4.3/test/spec_etag.rb +98 -0
- data/vendor/bundle/gems/rack-1.4.3/test/spec_file.rb +200 -0
- data/vendor/bundle/gems/rack-1.4.3/test/spec_head.rb +48 -0
- data/vendor/bundle/gems/rack-1.4.3/test/spec_lobster.rb +58 -0
- data/vendor/bundle/gems/rack-1.4.3/test/spec_lock.rb +167 -0
- data/vendor/bundle/gems/rack-1.4.3/test/spec_logger.rb +23 -0
- data/vendor/bundle/gems/rack-1.4.3/test/spec_methodoverride.rb +72 -0
- data/vendor/bundle/gems/rack-1.4.3/test/spec_mock.rb +269 -0
- data/vendor/bundle/gems/rack-1.4.3/test/spec_multipart.rb +445 -0
- data/vendor/bundle/gems/rack-1.4.3/test/spec_nulllogger.rb +23 -0
- data/vendor/bundle/gems/rack-1.4.3/test/spec_recursive.rb +72 -0
- data/vendor/bundle/gems/rack-1.4.3/test/spec_request.rb +938 -0
- data/vendor/bundle/gems/rack-1.4.3/test/spec_response.rb +313 -0
- data/vendor/bundle/gems/rack-1.4.3/test/spec_runtime.rb +49 -0
- data/vendor/bundle/gems/rack-1.4.3/test/spec_sendfile.rb +89 -0
- data/vendor/bundle/gems/rack-1.4.3/test/spec_server.rb +121 -0
- data/vendor/bundle/gems/rack-1.4.3/test/spec_session_cookie.rb +361 -0
- data/vendor/bundle/gems/rack-1.4.3/test/spec_session_memcache.rb +321 -0
- data/vendor/bundle/gems/rack-1.4.3/test/spec_session_pool.rb +209 -0
- data/vendor/bundle/gems/rack-1.4.3/test/spec_showexceptions.rb +92 -0
- data/vendor/bundle/gems/rack-1.4.3/test/spec_showstatus.rb +84 -0
- data/vendor/bundle/gems/rack-1.4.3/test/spec_static.rb +145 -0
- data/vendor/bundle/gems/rack-1.4.3/test/spec_urlmap.rb +213 -0
- data/vendor/bundle/gems/rack-1.4.3/test/spec_utils.rb +537 -0
- data/vendor/bundle/gems/rack-1.4.3/test/static/another/index.html +1 -0
- data/vendor/bundle/gems/railties-3.2.11/CHANGELOG.md +87 -0
- data/vendor/bundle/gems/railties-3.2.11/lib/rails/version.rb +10 -0
- data/vendor/bundle/gems/rake-10.0.3/Rakefile +374 -0
- data/vendor/bundle/gems/rake-10.0.3/bin/rake +33 -0
- data/vendor/bundle/gems/rake-10.0.3/doc/release_notes/rake-0.9.6.rdoc +127 -0
- data/vendor/bundle/gems/rake-10.0.3/doc/release_notes/rake-10.0.3.rdoc +191 -0
- data/vendor/bundle/gems/rake-10.0.3/lib/rake/application.rb +669 -0
- data/vendor/bundle/gems/rake-10.0.3/lib/rake/backtrace.rb +18 -0
- data/vendor/bundle/gems/rake-10.0.3/lib/rake/contrib/sys.rb +1 -0
- data/vendor/bundle/gems/rake-10.0.3/lib/rake/file_utils.rb +114 -0
- data/vendor/bundle/gems/rake-10.0.3/lib/rake/gempackagetask.rb +1 -0
- data/vendor/bundle/gems/rake-10.0.3/lib/rake/rdoctask.rb +1 -0
- data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/lib/rake/ruby182_test_unit_fix.rb +0 -0
- data/vendor/bundle/gems/rake-10.0.3/lib/rake/task.rb +350 -0
- data/vendor/bundle/gems/rake-10.0.3/lib/rake/trace_output.rb +19 -0
- data/vendor/bundle/gems/rake-10.0.3/lib/rake/version.rb +13 -0
- data/vendor/bundle/gems/rake-10.0.3/lib/rake.rb +71 -0
- data/vendor/bundle/gems/rake-10.0.3/test/helper.rb +562 -0
- data/vendor/bundle/gems/rake-10.0.3/test/test_rake_backtrace.rb +89 -0
- data/vendor/bundle/gems/rake-10.0.3/test/test_rake_file_task.rb +122 -0
- data/vendor/bundle/gems/rake-10.0.3/test/test_rake_functional.rb +496 -0
- data/vendor/bundle/gems/rake-10.0.3/test/test_rake_rake_test_loader.rb +21 -0
- data/vendor/bundle/gems/rake-10.0.3/test/test_rake_reduce_compat.rb +30 -0
- data/vendor/bundle/gems/rake-10.0.3/test/test_rake_task_with_arguments.rb +171 -0
- data/vendor/bundle/gems/rake-10.0.3/test/test_trace_output.rb +43 -0
- data/vendor/bundle/gems/rdiscount-1.6.8/ext/Csio.o +0 -0
- data/vendor/bundle/gems/rdiscount-1.6.8/ext/Makefile +49 -23
- data/vendor/bundle/gems/rdiscount-1.6.8/ext/basename.o +0 -0
- data/vendor/bundle/gems/rdiscount-1.6.8/ext/css.o +0 -0
- data/vendor/bundle/gems/rdiscount-1.6.8/ext/docheader.o +0 -0
- data/vendor/bundle/gems/rdiscount-1.6.8/ext/dumptree.o +0 -0
- data/vendor/bundle/gems/rdiscount-1.6.8/ext/emmatch.o +0 -0
- data/vendor/bundle/gems/rdiscount-1.6.8/ext/generate.o +0 -0
- data/vendor/bundle/gems/rdiscount-1.6.8/ext/html5.o +0 -0
- data/vendor/bundle/gems/rdiscount-1.6.8/ext/markdown.o +0 -0
- data/vendor/bundle/gems/rdiscount-1.6.8/ext/mkdio.o +0 -0
- data/vendor/bundle/gems/rdiscount-1.6.8/ext/mkmf.log +5 -5
- data/vendor/bundle/gems/rdiscount-1.6.8/ext/rdiscount.bundle +0 -0
- data/vendor/bundle/gems/rdiscount-1.6.8/ext/rdiscount.o +0 -0
- data/vendor/bundle/gems/rdiscount-1.6.8/ext/resource.o +0 -0
- data/vendor/bundle/gems/rdiscount-1.6.8/ext/tags.o +0 -0
- data/vendor/bundle/gems/rdiscount-1.6.8/ext/toc.o +0 -0
- data/vendor/bundle/gems/rdiscount-1.6.8/ext/xml.o +0 -0
- data/vendor/bundle/gems/rdiscount-1.6.8/lib/rdiscount.bundle +0 -0
- data/vendor/bundle/gems/sqlite3-1.3.6/ext/sqlite3/Makefile +49 -23
- data/vendor/bundle/gems/sqlite3-1.3.6/ext/sqlite3/backup.o +0 -0
- data/vendor/bundle/gems/sqlite3-1.3.6/ext/sqlite3/database.o +0 -0
- data/vendor/bundle/gems/sqlite3-1.3.6/ext/sqlite3/exception.o +0 -0
- data/vendor/bundle/gems/sqlite3-1.3.6/ext/sqlite3/mkmf.log +91 -59
- data/vendor/bundle/gems/sqlite3-1.3.6/ext/sqlite3/sqlite3.o +0 -0
- data/vendor/bundle/gems/sqlite3-1.3.6/ext/sqlite3/sqlite3_native.bundle +0 -0
- data/vendor/bundle/gems/sqlite3-1.3.6/ext/sqlite3/statement.o +0 -0
- data/vendor/bundle/gems/sqlite3-1.3.6/lib/sqlite3/sqlite3_native.bundle +0 -0
- data/vendor/bundle/specifications/actionmailer-3.2.11.gemspec +33 -0
- data/vendor/bundle/specifications/actionpack-3.2.11.gemspec +57 -0
- data/vendor/bundle/specifications/activemodel-3.2.11.gemspec +32 -0
- data/vendor/bundle/specifications/activerecord-3.2.11.gemspec +41 -0
- data/vendor/bundle/specifications/activeresource-3.2.11.gemspec +35 -0
- data/vendor/bundle/specifications/activesupport-3.2.11.gemspec +33 -0
- data/vendor/bundle/specifications/json-1.7.6.gemspec +36 -0
- data/vendor/bundle/specifications/rack-1.4.3.gemspec +47 -0
- data/vendor/bundle/specifications/rails-3.2.11.gemspec +47 -0
- data/vendor/bundle/specifications/railties-3.2.11.gemspec +47 -0
- data/vendor/bundle/specifications/rake-10.0.3.gemspec +34 -0
- metadata +1565 -1546
- data/vendor/bundle/cache/actionmailer-3.2.9.gem +0 -0
- data/vendor/bundle/cache/actionpack-3.2.9.gem +0 -0
- data/vendor/bundle/cache/activemodel-3.2.9.gem +0 -0
- data/vendor/bundle/cache/activerecord-3.2.9.gem +0 -0
- data/vendor/bundle/cache/activeresource-3.2.9.gem +0 -0
- data/vendor/bundle/cache/activesupport-3.2.9.gem +0 -0
- data/vendor/bundle/cache/json-1.7.5.gem +0 -0
- data/vendor/bundle/cache/rack-1.4.1.gem +0 -0
- data/vendor/bundle/cache/rails-3.2.9.gem +0 -0
- data/vendor/bundle/cache/railties-3.2.9.gem +0 -0
- data/vendor/bundle/cache/rake-10.0.2.gem +0 -0
- data/vendor/bundle/gems/actionmailer-3.2.9/CHANGELOG.md +0 -55
- data/vendor/bundle/gems/actionmailer-3.2.9/lib/action_mailer/version.rb +0 -10
- data/vendor/bundle/gems/actionpack-3.2.9/CHANGELOG.md +0 -441
- data/vendor/bundle/gems/actionpack-3.2.9/lib/action_dispatch/http/request.rb +0 -281
- data/vendor/bundle/gems/actionpack-3.2.9/lib/action_dispatch/middleware/params_parser.rb +0 -75
- data/vendor/bundle/gems/actionpack-3.2.9/lib/action_dispatch/middleware/session/abstract_store.rb +0 -86
- data/vendor/bundle/gems/actionpack-3.2.9/lib/action_pack/version.rb +0 -10
- data/vendor/bundle/gems/activemodel-3.2.9/CHANGELOG.md +0 -60
- data/vendor/bundle/gems/activemodel-3.2.9/lib/active_model/version.rb +0 -10
- data/vendor/bundle/gems/activerecord-3.2.9/CHANGELOG.md +0 -485
- data/vendor/bundle/gems/activerecord-3.2.9/lib/active_record/dynamic_matchers.rb +0 -79
- data/vendor/bundle/gems/activerecord-3.2.9/lib/active_record/relation/predicate_builder.rb +0 -58
- data/vendor/bundle/gems/activerecord-3.2.9/lib/active_record/version.rb +0 -10
- data/vendor/bundle/gems/activeresource-3.2.9/CHANGELOG.md +0 -375
- data/vendor/bundle/gems/activeresource-3.2.9/lib/active_resource/version.rb +0 -10
- data/vendor/bundle/gems/activesupport-3.2.9/CHANGELOG.md +0 -148
- data/vendor/bundle/gems/activesupport-3.2.9/lib/active_support/core_ext/hash/conversions.rb +0 -157
- data/vendor/bundle/gems/activesupport-3.2.9/lib/active_support/version.rb +0 -10
- data/vendor/bundle/gems/json-1.7.5/CHANGES +0 -254
- data/vendor/bundle/gems/json-1.7.5/Gemfile +0 -16
- data/vendor/bundle/gems/json-1.7.5/VERSION +0 -1
- data/vendor/bundle/gems/json-1.7.5/ext/json/ext/generator/Makefile +0 -188
- data/vendor/bundle/gems/json-1.7.5/ext/json/ext/generator/generator.bundle +0 -0
- data/vendor/bundle/gems/json-1.7.5/ext/json/ext/generator/generator.c +0 -1393
- data/vendor/bundle/gems/json-1.7.5/ext/json/ext/generator/generator.h +0 -141
- data/vendor/bundle/gems/json-1.7.5/ext/json/ext/generator/generator.o +0 -0
- data/vendor/bundle/gems/json-1.7.5/ext/json/ext/parser/Makefile +0 -188
- data/vendor/bundle/gems/json-1.7.5/ext/json/ext/parser/parser.bundle +0 -0
- data/vendor/bundle/gems/json-1.7.5/ext/json/ext/parser/parser.c +0 -2204
- data/vendor/bundle/gems/json-1.7.5/ext/json/ext/parser/parser.o +0 -0
- data/vendor/bundle/gems/json-1.7.5/ext/json/ext/parser/parser.rl +0 -927
- data/vendor/bundle/gems/json-1.7.5/java/src/json/ext/GeneratorState.java +0 -526
- data/vendor/bundle/gems/json-1.7.5/java/src/json/ext/Parser.java +0 -2644
- data/vendor/bundle/gems/json-1.7.5/java/src/json/ext/Parser.rl +0 -968
- data/vendor/bundle/gems/json-1.7.5/json.gemspec +0 -37
- data/vendor/bundle/gems/json-1.7.5/json_pure.gemspec +0 -39
- data/vendor/bundle/gems/json-1.7.5/lib/json/add/bigdecimal.rb +0 -21
- data/vendor/bundle/gems/json-1.7.5/lib/json/common.rb +0 -480
- data/vendor/bundle/gems/json-1.7.5/lib/json/ext/generator.bundle +0 -0
- data/vendor/bundle/gems/json-1.7.5/lib/json/ext/parser.bundle +0 -0
- data/vendor/bundle/gems/json-1.7.5/lib/json/generic_object.rb +0 -39
- data/vendor/bundle/gems/json-1.7.5/lib/json/pure/generator.rb +0 -472
- data/vendor/bundle/gems/json-1.7.5/lib/json/pure/parser.rb +0 -359
- data/vendor/bundle/gems/json-1.7.5/lib/json/version.rb +0 -8
- data/vendor/bundle/gems/json-1.7.5/tests/fixtures/fail18.json +0 -1
- data/vendor/bundle/gems/json-1.7.5/tests/test_json.rb +0 -539
- data/vendor/bundle/gems/json-1.7.5/tests/test_json_encoding.rb +0 -65
- data/vendor/bundle/gems/json-1.7.5/tests/test_json_fixtures.rb +0 -35
- data/vendor/bundle/gems/json-1.7.5/tests/test_json_generate.rb +0 -251
- data/vendor/bundle/gems/json-1.7.5/tests/test_json_generic_object.rb +0 -35
- data/vendor/bundle/gems/json-1.7.5/tests/test_json_string_matching.rb +0 -40
- data/vendor/bundle/gems/json-1.7.5/tests/test_json_unicode.rb +0 -72
- data/vendor/bundle/gems/rack-1.4.1/COPYING +0 -18
- data/vendor/bundle/gems/rack-1.4.1/KNOWN-ISSUES +0 -21
- data/vendor/bundle/gems/rack-1.4.1/README.rdoc +0 -498
- data/vendor/bundle/gems/rack-1.4.1/Rakefile +0 -115
- data/vendor/bundle/gems/rack-1.4.1/SPEC +0 -171
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/auth/basic.rb +0 -58
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/auth/digest/nonce.rb +0 -51
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/backports/uri/common_18.rb +0 -70
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/backports/uri/common_192.rb +0 -55
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/body_proxy.rb +0 -29
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/builder.rb +0 -145
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/cascade.rb +0 -41
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/commonlogger.rb +0 -51
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/deflater.rb +0 -99
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/directory.rb +0 -161
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/etag.rb +0 -61
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/file.rb +0 -142
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/head.rb +0 -19
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/lint.rb +0 -567
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/lock.rb +0 -25
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/mime.rb +0 -648
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/mock.rb +0 -189
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/multipart/parser.rb +0 -167
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/multipart.rb +0 -34
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/reloader.rb +0 -109
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/request.rb +0 -341
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/response.rb +0 -155
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/server.rb +0 -323
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/session/abstract/id.rb +0 -372
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/session/cookie.rb +0 -161
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/static.rb +0 -71
- data/vendor/bundle/gems/rack-1.4.1/lib/rack/utils.rb +0 -547
- data/vendor/bundle/gems/rack-1.4.1/rack.gemspec +0 -37
- data/vendor/bundle/gems/rack-1.4.1/test/spec_auth_basic.rb +0 -73
- data/vendor/bundle/gems/rack-1.4.1/test/spec_auth_digest.rb +0 -245
- data/vendor/bundle/gems/rack-1.4.1/test/spec_body_proxy.rb +0 -65
- data/vendor/bundle/gems/rack-1.4.1/test/spec_builder.rb +0 -201
- data/vendor/bundle/gems/rack-1.4.1/test/spec_cascade.rb +0 -53
- data/vendor/bundle/gems/rack-1.4.1/test/spec_chunked.rb +0 -87
- data/vendor/bundle/gems/rack-1.4.1/test/spec_config.rb +0 -23
- data/vendor/bundle/gems/rack-1.4.1/test/spec_content_length.rb +0 -73
- data/vendor/bundle/gems/rack-1.4.1/test/spec_content_type.rb +0 -35
- data/vendor/bundle/gems/rack-1.4.1/test/spec_deflater.rb +0 -169
- data/vendor/bundle/gems/rack-1.4.1/test/spec_directory.rb +0 -69
- data/vendor/bundle/gems/rack-1.4.1/test/spec_etag.rb +0 -82
- data/vendor/bundle/gems/rack-1.4.1/test/spec_file.rb +0 -183
- data/vendor/bundle/gems/rack-1.4.1/test/spec_head.rb +0 -30
- data/vendor/bundle/gems/rack-1.4.1/test/spec_lobster.rb +0 -43
- data/vendor/bundle/gems/rack-1.4.1/test/spec_lock.rb +0 -142
- data/vendor/bundle/gems/rack-1.4.1/test/spec_logger.rb +0 -28
- data/vendor/bundle/gems/rack-1.4.1/test/spec_methodoverride.rb +0 -73
- data/vendor/bundle/gems/rack-1.4.1/test/spec_mock.rb +0 -264
- data/vendor/bundle/gems/rack-1.4.1/test/spec_multipart.rb +0 -363
- data/vendor/bundle/gems/rack-1.4.1/test/spec_nulllogger.rb +0 -12
- data/vendor/bundle/gems/rack-1.4.1/test/spec_recursive.rb +0 -69
- data/vendor/bundle/gems/rack-1.4.1/test/spec_request.rb +0 -938
- data/vendor/bundle/gems/rack-1.4.1/test/spec_response.rb +0 -283
- data/vendor/bundle/gems/rack-1.4.1/test/spec_runtime.rb +0 -39
- data/vendor/bundle/gems/rack-1.4.1/test/spec_sendfile.rb +0 -86
- data/vendor/bundle/gems/rack-1.4.1/test/spec_server.rb +0 -74
- data/vendor/bundle/gems/rack-1.4.1/test/spec_session_cookie.rb +0 -294
- data/vendor/bundle/gems/rack-1.4.1/test/spec_session_memcache.rb +0 -319
- data/vendor/bundle/gems/rack-1.4.1/test/spec_session_pool.rb +0 -206
- data/vendor/bundle/gems/rack-1.4.1/test/spec_showexceptions.rb +0 -87
- data/vendor/bundle/gems/rack-1.4.1/test/spec_showstatus.rb +0 -79
- data/vendor/bundle/gems/rack-1.4.1/test/spec_static.rb +0 -69
- data/vendor/bundle/gems/rack-1.4.1/test/spec_urlmap.rb +0 -213
- data/vendor/bundle/gems/rack-1.4.1/test/spec_utils.rb +0 -524
- data/vendor/bundle/gems/railties-3.2.9/CHANGELOG.md +0 -85
- data/vendor/bundle/gems/railties-3.2.9/lib/rails/version.rb +0 -10
- data/vendor/bundle/gems/rake-10.0.2/Rakefile +0 -374
- data/vendor/bundle/gems/rake-10.0.2/bin/rake +0 -37
- data/vendor/bundle/gems/rake-10.0.2/lib/rake/application.rb +0 -667
- data/vendor/bundle/gems/rake-10.0.2/lib/rake/backtrace.rb +0 -18
- data/vendor/bundle/gems/rake-10.0.2/lib/rake/file_utils.rb +0 -114
- data/vendor/bundle/gems/rake-10.0.2/lib/rake/task.rb +0 -349
- data/vendor/bundle/gems/rake-10.0.2/lib/rake/version.rb +0 -10
- data/vendor/bundle/gems/rake-10.0.2/lib/rake.rb +0 -70
- data/vendor/bundle/gems/rake-10.0.2/test/helper.rb +0 -549
- data/vendor/bundle/gems/rake-10.0.2/test/test_rake_backtrace.rb +0 -81
- data/vendor/bundle/gems/rake-10.0.2/test/test_rake_file_task.rb +0 -122
- data/vendor/bundle/gems/rake-10.0.2/test/test_rake_functional.rb +0 -489
- data/vendor/bundle/gems/rake-10.0.2/test/test_rake_rake_test_loader.rb +0 -21
- data/vendor/bundle/gems/rake-10.0.2/test/test_rake_reduce_compat.rb +0 -30
- data/vendor/bundle/gems/rake-10.0.2/test/test_rake_task_with_arguments.rb +0 -162
- data/vendor/bundle/specifications/actionmailer-3.2.9.gemspec +0 -33
- data/vendor/bundle/specifications/actionpack-3.2.9.gemspec +0 -57
- data/vendor/bundle/specifications/activemodel-3.2.9.gemspec +0 -32
- data/vendor/bundle/specifications/activerecord-3.2.9.gemspec +0 -41
- data/vendor/bundle/specifications/activeresource-3.2.9.gemspec +0 -35
- data/vendor/bundle/specifications/activesupport-3.2.9.gemspec +0 -33
- data/vendor/bundle/specifications/json-1.7.5.gemspec +0 -36
- data/vendor/bundle/specifications/rack-1.4.1.gemspec +0 -47
- data/vendor/bundle/specifications/rails-3.2.9.gemspec +0 -47
- data/vendor/bundle/specifications/railties-3.2.9.gemspec +0 -47
- data/vendor/bundle/specifications/rake-10.0.2.gemspec +0 -34
- /data/vendor/bundle/gems/{actionmailer-3.2.9 → actionmailer-3.2.11}/MIT-LICENSE +0 -0
- /data/vendor/bundle/gems/{actionmailer-3.2.9 → actionmailer-3.2.11}/README.rdoc +0 -0
- /data/vendor/bundle/gems/{actionmailer-3.2.9 → actionmailer-3.2.11}/lib/action_mailer/base.rb +0 -0
- /data/vendor/bundle/gems/{actionmailer-3.2.9 → actionmailer-3.2.11}/lib/action_mailer/collector.rb +0 -0
- /data/vendor/bundle/gems/{actionmailer-3.2.9 → actionmailer-3.2.11}/lib/action_mailer/delivery_methods.rb +0 -0
- /data/vendor/bundle/gems/{actionmailer-3.2.9 → actionmailer-3.2.11}/lib/action_mailer/log_subscriber.rb +0 -0
- /data/vendor/bundle/gems/{actionmailer-3.2.9 → actionmailer-3.2.11}/lib/action_mailer/mail_helper.rb +0 -0
- /data/vendor/bundle/gems/{actionmailer-3.2.9 → actionmailer-3.2.11}/lib/action_mailer/railtie.rb +0 -0
- /data/vendor/bundle/gems/{actionmailer-3.2.9 → actionmailer-3.2.11}/lib/action_mailer/test_case.rb +0 -0
- /data/vendor/bundle/gems/{actionmailer-3.2.9 → actionmailer-3.2.11}/lib/action_mailer/test_helper.rb +0 -0
- /data/vendor/bundle/gems/{actionmailer-3.2.9 → actionmailer-3.2.11}/lib/action_mailer.rb +0 -0
- /data/vendor/bundle/gems/{actionmailer-3.2.9 → actionmailer-3.2.11}/lib/rails/generators/mailer/USAGE +0 -0
- /data/vendor/bundle/gems/{actionmailer-3.2.9 → actionmailer-3.2.11}/lib/rails/generators/mailer/mailer_generator.rb +0 -0
- /data/vendor/bundle/gems/{actionmailer-3.2.9 → actionmailer-3.2.11}/lib/rails/generators/mailer/templates/mailer.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/MIT-LICENSE +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/README.rdoc +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/abstract_controller/asset_paths.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/abstract_controller/base.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/abstract_controller/callbacks.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/abstract_controller/collector.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/abstract_controller/helpers.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/abstract_controller/layouts.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/abstract_controller/logger.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/abstract_controller/railties/routes_helpers.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/abstract_controller/rendering.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/abstract_controller/translation.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/abstract_controller/url_for.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/abstract_controller/view_paths.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/abstract_controller.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_controller/base.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_controller/caching/actions.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_controller/caching/fragments.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_controller/caching/pages.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_controller/caching/sweeping.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_controller/caching.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_controller/deprecated/integration_test.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_controller/deprecated/performance_test.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_controller/deprecated.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_controller/log_subscriber.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_controller/metal/compatibility.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_controller/metal/conditional_get.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_controller/metal/cookies.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_controller/metal/data_streaming.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_controller/metal/exceptions.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_controller/metal/flash.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_controller/metal/force_ssl.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_controller/metal/head.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_controller/metal/helpers.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_controller/metal/hide_actions.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_controller/metal/http_authentication.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_controller/metal/implicit_render.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_controller/metal/instrumentation.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_controller/metal/mime_responds.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_controller/metal/params_wrapper.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_controller/metal/rack_delegation.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_controller/metal/redirecting.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_controller/metal/renderers.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_controller/metal/rendering.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_controller/metal/request_forgery_protection.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_controller/metal/rescue.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_controller/metal/responder.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_controller/metal/session_management.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_controller/metal/streaming.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_controller/metal/testing.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_controller/metal/url_for.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_controller/metal.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_controller/middleware.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_controller/railtie.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_controller/railties/paths.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_controller/record_identifier.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_controller/test_case.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_controller/vendor/html-scanner/html/document.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_controller/vendor/html-scanner/html/node.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_controller/vendor/html-scanner/html/sanitizer.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_controller/vendor/html-scanner/html/selector.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_controller/vendor/html-scanner/html/tokenizer.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_controller/vendor/html-scanner/html/version.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_controller/vendor/html-scanner.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_controller.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_dispatch/http/cache.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_dispatch/http/filter_parameters.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_dispatch/http/headers.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_dispatch/http/mime_negotiation.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_dispatch/http/mime_type.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_dispatch/http/mime_types.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_dispatch/http/parameter_filter.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_dispatch/http/parameters.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_dispatch/http/rack_cache.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_dispatch/http/response.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_dispatch/http/upload.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_dispatch/http/url.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_dispatch/middleware/best_standards_support.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_dispatch/middleware/body_proxy.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_dispatch/middleware/callbacks.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_dispatch/middleware/cookies.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_dispatch/middleware/debug_exceptions.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_dispatch/middleware/exception_wrapper.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_dispatch/middleware/flash.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_dispatch/middleware/head.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_dispatch/middleware/public_exceptions.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_dispatch/middleware/reloader.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_dispatch/middleware/remote_ip.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_dispatch/middleware/request_id.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_dispatch/middleware/rescue.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_dispatch/middleware/session/cache_store.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_dispatch/middleware/session/cookie_store.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_dispatch/middleware/session/mem_cache_store.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_dispatch/middleware/show_exceptions.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_dispatch/middleware/stack.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_dispatch/middleware/static.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_dispatch/middleware/templates/rescues/_trace.erb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_dispatch/middleware/templates/rescues/layout.erb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_dispatch/middleware/templates/rescues/missing_template.erb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_dispatch/middleware/templates/rescues/routing_error.erb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_dispatch/middleware/templates/rescues/template_error.erb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_dispatch/railtie.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_dispatch/routing/mapper.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_dispatch/routing/polymorphic_routes.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_dispatch/routing/redirection.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_dispatch/routing/route_set.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_dispatch/routing/routes_proxy.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_dispatch/routing/url_for.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_dispatch/routing.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_dispatch/testing/assertions/dom.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_dispatch/testing/assertions/response.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_dispatch/testing/assertions/routing.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_dispatch/testing/assertions/selector.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_dispatch/testing/assertions/tag.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_dispatch/testing/assertions.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_dispatch/testing/integration.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_dispatch/testing/performance_test.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_dispatch/testing/test_process.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_dispatch/testing/test_request.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_dispatch/testing/test_response.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_dispatch.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_pack.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_view/asset_paths.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_view/base.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_view/buffers.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_view/context.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_view/flows.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_view/helpers/active_model_helper.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_view/helpers/asset_paths.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_view/helpers/asset_tag_helper.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_view/helpers/asset_tag_helpers/asset_include_tag.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_view/helpers/asset_tag_helpers/asset_paths.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_view/helpers/asset_tag_helpers/javascript_tag_helpers.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_view/helpers/asset_tag_helpers/stylesheet_tag_helpers.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_view/helpers/atom_feed_helper.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_view/helpers/cache_helper.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_view/helpers/capture_helper.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_view/helpers/controller_helper.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_view/helpers/csrf_helper.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_view/helpers/date_helper.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_view/helpers/debug_helper.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_view/helpers/form_helper.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_view/helpers/form_options_helper.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_view/helpers/form_tag_helper.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_view/helpers/javascript_helper.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_view/helpers/number_helper.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_view/helpers/output_safety_helper.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_view/helpers/record_tag_helper.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_view/helpers/rendering_helper.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_view/helpers/sanitize_helper.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_view/helpers/tag_helper.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_view/helpers/text_helper.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_view/helpers/translation_helper.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_view/helpers/url_helper.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_view/helpers.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_view/locale/en.yml +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_view/log_subscriber.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_view/lookup_context.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_view/path_set.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_view/railtie.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_view/renderer/abstract_renderer.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_view/renderer/partial_renderer.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_view/renderer/renderer.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_view/renderer/streaming_template_renderer.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_view/renderer/template_renderer.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_view/template/error.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_view/template/handlers/builder.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_view/template/handlers/erb.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_view/template/handlers.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_view/template/resolver.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_view/template/text.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_view/template.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_view/test_case.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_view/testing/resolvers.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/action_view.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/sprockets/assets.rake +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/sprockets/bootstrap.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/sprockets/compressors.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/sprockets/helpers/isolated_helper.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/sprockets/helpers/rails_helper.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/sprockets/helpers.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/sprockets/railtie.rb +0 -0
- /data/vendor/bundle/gems/{actionpack-3.2.9 → actionpack-3.2.11}/lib/sprockets/static_compiler.rb +0 -0
- /data/vendor/bundle/gems/{activemodel-3.2.9 → activemodel-3.2.11}/MIT-LICENSE +0 -0
- /data/vendor/bundle/gems/{activemodel-3.2.9 → activemodel-3.2.11}/README.rdoc +0 -0
- /data/vendor/bundle/gems/{activemodel-3.2.9 → activemodel-3.2.11}/lib/active_model/attribute_methods.rb +0 -0
- /data/vendor/bundle/gems/{activemodel-3.2.9 → activemodel-3.2.11}/lib/active_model/callbacks.rb +0 -0
- /data/vendor/bundle/gems/{activemodel-3.2.9 → activemodel-3.2.11}/lib/active_model/conversion.rb +0 -0
- /data/vendor/bundle/gems/{activemodel-3.2.9 → activemodel-3.2.11}/lib/active_model/dirty.rb +0 -0
- /data/vendor/bundle/gems/{activemodel-3.2.9 → activemodel-3.2.11}/lib/active_model/errors.rb +0 -0
- /data/vendor/bundle/gems/{activemodel-3.2.9 → activemodel-3.2.11}/lib/active_model/lint.rb +0 -0
- /data/vendor/bundle/gems/{activemodel-3.2.9 → activemodel-3.2.11}/lib/active_model/locale/en.yml +0 -0
- /data/vendor/bundle/gems/{activemodel-3.2.9 → activemodel-3.2.11}/lib/active_model/mass_assignment_security/permission_set.rb +0 -0
- /data/vendor/bundle/gems/{activemodel-3.2.9 → activemodel-3.2.11}/lib/active_model/mass_assignment_security/sanitizer.rb +0 -0
- /data/vendor/bundle/gems/{activemodel-3.2.9 → activemodel-3.2.11}/lib/active_model/mass_assignment_security.rb +0 -0
- /data/vendor/bundle/gems/{activemodel-3.2.9 → activemodel-3.2.11}/lib/active_model/naming.rb +0 -0
- /data/vendor/bundle/gems/{activemodel-3.2.9 → activemodel-3.2.11}/lib/active_model/observer_array.rb +0 -0
- /data/vendor/bundle/gems/{activemodel-3.2.9 → activemodel-3.2.11}/lib/active_model/observing.rb +0 -0
- /data/vendor/bundle/gems/{activemodel-3.2.9 → activemodel-3.2.11}/lib/active_model/railtie.rb +0 -0
- /data/vendor/bundle/gems/{activemodel-3.2.9 → activemodel-3.2.11}/lib/active_model/secure_password.rb +0 -0
- /data/vendor/bundle/gems/{activemodel-3.2.9 → activemodel-3.2.11}/lib/active_model/serialization.rb +0 -0
- /data/vendor/bundle/gems/{activemodel-3.2.9 → activemodel-3.2.11}/lib/active_model/serializers/json.rb +0 -0
- /data/vendor/bundle/gems/{activemodel-3.2.9 → activemodel-3.2.11}/lib/active_model/serializers/xml.rb +0 -0
- /data/vendor/bundle/gems/{activemodel-3.2.9 → activemodel-3.2.11}/lib/active_model/test_case.rb +0 -0
- /data/vendor/bundle/gems/{activemodel-3.2.9 → activemodel-3.2.11}/lib/active_model/translation.rb +0 -0
- /data/vendor/bundle/gems/{activemodel-3.2.9 → activemodel-3.2.11}/lib/active_model/validations/acceptance.rb +0 -0
- /data/vendor/bundle/gems/{activemodel-3.2.9 → activemodel-3.2.11}/lib/active_model/validations/callbacks.rb +0 -0
- /data/vendor/bundle/gems/{activemodel-3.2.9 → activemodel-3.2.11}/lib/active_model/validations/confirmation.rb +0 -0
- /data/vendor/bundle/gems/{activemodel-3.2.9 → activemodel-3.2.11}/lib/active_model/validations/exclusion.rb +0 -0
- /data/vendor/bundle/gems/{activemodel-3.2.9 → activemodel-3.2.11}/lib/active_model/validations/format.rb +0 -0
- /data/vendor/bundle/gems/{activemodel-3.2.9 → activemodel-3.2.11}/lib/active_model/validations/inclusion.rb +0 -0
- /data/vendor/bundle/gems/{activemodel-3.2.9 → activemodel-3.2.11}/lib/active_model/validations/length.rb +0 -0
- /data/vendor/bundle/gems/{activemodel-3.2.9 → activemodel-3.2.11}/lib/active_model/validations/numericality.rb +0 -0
- /data/vendor/bundle/gems/{activemodel-3.2.9 → activemodel-3.2.11}/lib/active_model/validations/presence.rb +0 -0
- /data/vendor/bundle/gems/{activemodel-3.2.9 → activemodel-3.2.11}/lib/active_model/validations/validates.rb +0 -0
- /data/vendor/bundle/gems/{activemodel-3.2.9 → activemodel-3.2.11}/lib/active_model/validations/with.rb +0 -0
- /data/vendor/bundle/gems/{activemodel-3.2.9 → activemodel-3.2.11}/lib/active_model/validations.rb +0 -0
- /data/vendor/bundle/gems/{activemodel-3.2.9 → activemodel-3.2.11}/lib/active_model/validator.rb +0 -0
- /data/vendor/bundle/gems/{activemodel-3.2.9 → activemodel-3.2.11}/lib/active_model.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/MIT-LICENSE +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/README.rdoc +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/examples/associations.png +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/examples/performance.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/examples/simple.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/aggregations.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/associations/alias_tracker.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/associations/association.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/associations/association_scope.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/associations/belongs_to_association.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/associations/belongs_to_polymorphic_association.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/associations/builder/association.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/associations/builder/belongs_to.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/associations/builder/collection_association.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/associations/builder/has_and_belongs_to_many.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/associations/builder/has_many.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/associations/builder/has_one.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/associations/builder/singular_association.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/associations/collection_association.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/associations/collection_proxy.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/associations/has_and_belongs_to_many_association.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/associations/has_many_association.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/associations/has_many_through_association.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/associations/has_one_association.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/associations/has_one_through_association.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/associations/join_dependency/join_association.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/associations/join_dependency/join_base.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/associations/join_dependency/join_part.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/associations/join_dependency.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/associations/join_helper.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/associations/preloader/association.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/associations/preloader/belongs_to.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/associations/preloader/collection_association.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/associations/preloader/has_and_belongs_to_many.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/associations/preloader/has_many.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/associations/preloader/has_many_through.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/associations/preloader/has_one.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/associations/preloader/has_one_through.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/associations/preloader/singular_association.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/associations/preloader/through_association.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/associations/preloader.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/associations/singular_association.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/associations/through_association.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/associations.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/attribute_assignment.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/attribute_methods/before_type_cast.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/attribute_methods/deprecated_underscore_read.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/attribute_methods/dirty.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/attribute_methods/primary_key.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/attribute_methods/query.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/attribute_methods/read.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/attribute_methods/serialization.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/attribute_methods/time_zone_conversion.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/attribute_methods/write.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/attribute_methods.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/autosave_association.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/base.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/callbacks.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/coders/yaml_column.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/connection_adapters/abstract/connection_pool.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/connection_adapters/abstract/connection_specification.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/connection_adapters/abstract/database_limits.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/connection_adapters/abstract/database_statements.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/connection_adapters/abstract/query_cache.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/connection_adapters/abstract/quoting.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/connection_adapters/abstract/schema_definitions.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/connection_adapters/abstract/schema_statements.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/connection_adapters/abstract_adapter.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/connection_adapters/abstract_mysql_adapter.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/connection_adapters/column.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/connection_adapters/mysql2_adapter.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/connection_adapters/mysql_adapter.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/connection_adapters/postgresql_adapter.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/connection_adapters/schema_cache.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/connection_adapters/sqlite3_adapter.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/connection_adapters/sqlite_adapter.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/connection_adapters/statement_pool.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/counter_cache.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/dynamic_finder_match.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/dynamic_scope_match.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/errors.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/explain.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/explain_subscriber.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/fixtures/file.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/fixtures.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/identity_map.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/inheritance.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/integration.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/locale/en.yml +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/locking/optimistic.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/locking/pessimistic.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/log_subscriber.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/migration/command_recorder.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/migration.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/model_schema.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/nested_attributes.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/observer.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/persistence.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/query_cache.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/querying.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/railtie.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/railties/console_sandbox.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/railties/controller_runtime.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/railties/databases.rake +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/railties/jdbcmysql_error.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/readonly_attributes.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/reflection.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/relation/batches.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/relation/calculations.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/relation/delegation.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/relation/finder_methods.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/relation/query_methods.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/relation/spawn_methods.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/relation.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/result.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/sanitization.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/schema.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/schema_dumper.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/scoping/default.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/scoping/named.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/scoping.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/serialization.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/serializers/xml_serializer.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/session_store.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/store.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/test_case.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/timestamp.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/transactions.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/translation.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/validations/associated.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/validations/uniqueness.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record/validations.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/active_record.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/rails/generators/active_record/migration/migration_generator.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/rails/generators/active_record/migration/templates/migration.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/rails/generators/active_record/migration.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/rails/generators/active_record/model/model_generator.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/rails/generators/active_record/model/templates/migration.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/rails/generators/active_record/model/templates/model.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/rails/generators/active_record/model/templates/module.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/rails/generators/active_record/observer/observer_generator.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/rails/generators/active_record/observer/templates/observer.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/rails/generators/active_record/session_migration/session_migration_generator.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/rails/generators/active_record/session_migration/templates/migration.rb +0 -0
- /data/vendor/bundle/gems/{activerecord-3.2.9 → activerecord-3.2.11}/lib/rails/generators/active_record.rb +0 -0
- /data/vendor/bundle/gems/{activeresource-3.2.9 → activeresource-3.2.11}/MIT-LICENSE +0 -0
- /data/vendor/bundle/gems/{activeresource-3.2.9 → activeresource-3.2.11}/README.rdoc +0 -0
- /data/vendor/bundle/gems/{activeresource-3.2.9 → activeresource-3.2.11}/examples/performance.rb +0 -0
- /data/vendor/bundle/gems/{activeresource-3.2.9 → activeresource-3.2.11}/lib/active_resource/base.rb +0 -0
- /data/vendor/bundle/gems/{activeresource-3.2.9 → activeresource-3.2.11}/lib/active_resource/connection.rb +0 -0
- /data/vendor/bundle/gems/{activeresource-3.2.9 → activeresource-3.2.11}/lib/active_resource/custom_methods.rb +0 -0
- /data/vendor/bundle/gems/{activeresource-3.2.9 → activeresource-3.2.11}/lib/active_resource/exceptions.rb +0 -0
- /data/vendor/bundle/gems/{activeresource-3.2.9 → activeresource-3.2.11}/lib/active_resource/formats/json_format.rb +0 -0
- /data/vendor/bundle/gems/{activeresource-3.2.9 → activeresource-3.2.11}/lib/active_resource/formats/xml_format.rb +0 -0
- /data/vendor/bundle/gems/{activeresource-3.2.9 → activeresource-3.2.11}/lib/active_resource/formats.rb +0 -0
- /data/vendor/bundle/gems/{activeresource-3.2.9 → activeresource-3.2.11}/lib/active_resource/http_mock.rb +0 -0
- /data/vendor/bundle/gems/{activeresource-3.2.9 → activeresource-3.2.11}/lib/active_resource/log_subscriber.rb +0 -0
- /data/vendor/bundle/gems/{activeresource-3.2.9 → activeresource-3.2.11}/lib/active_resource/observing.rb +0 -0
- /data/vendor/bundle/gems/{activeresource-3.2.9 → activeresource-3.2.11}/lib/active_resource/railtie.rb +0 -0
- /data/vendor/bundle/gems/{activeresource-3.2.9 → activeresource-3.2.11}/lib/active_resource/schema.rb +0 -0
- /data/vendor/bundle/gems/{activeresource-3.2.9 → activeresource-3.2.11}/lib/active_resource/validations.rb +0 -0
- /data/vendor/bundle/gems/{activeresource-3.2.9 → activeresource-3.2.11}/lib/active_resource.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/MIT-LICENSE +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/README.rdoc +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/all.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/backtrace_cleaner.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/base64.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/basic_object.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/benchmarkable.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/buffered_logger.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/builder.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/cache/file_store.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/cache/mem_cache_store.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/cache/memory_store.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/cache/null_store.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/cache/strategy/local_cache.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/cache.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/callbacks.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/concern.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/configurable.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/array/access.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/array/conversions.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/array/extract_options.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/array/grouping.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/array/prepend_and_append.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/array/random_access.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/array/uniq_by.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/array/wrap.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/array.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/benchmark.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/big_decimal/conversions.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/big_decimal.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/class/attribute.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/class/attribute_accessors.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/class/delegating_attributes.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/class/subclasses.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/class.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/date/acts_like.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/date/calculations.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/date/conversions.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/date/freeze.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/date/zones.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/date_time/acts_like.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/date_time/calculations.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/date_time/conversions.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/date_time/zones.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/enumerable.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/exception.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/file/atomic.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/file/path.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/file.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/float/rounding.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/float.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/hash/deep_dup.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/hash/deep_merge.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/hash/diff.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/hash/except.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/hash/indifferent_access.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/hash/keys.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/hash/reverse_merge.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/hash/slice.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/hash.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/integer/inflections.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/integer/multiple.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/integer/time.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/integer.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/io.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/kernel/agnostics.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/kernel/debugger.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/kernel/reporting.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/kernel/singleton_class.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/kernel.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/load_error.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/logger.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/module/aliasing.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/module/anonymous.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/module/attr_internal.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/module/attribute_accessors.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/module/delegation.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/module/deprecation.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/module/introspection.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/module/method_names.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/module/qualified_const.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/module/reachable.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/module/remove_method.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/module/synchronization.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/module.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/name_error.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/numeric/bytes.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/numeric/time.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/numeric.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/object/acts_like.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/object/blank.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/object/conversions.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/object/duplicable.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/object/inclusion.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/object/instance_variables.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/object/to_json.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/object/to_param.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/object/to_query.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/object/try.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/object/with_options.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/object.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/proc.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/process/daemon.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/process.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/range/blockless_step.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/range/conversions.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/range/cover.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/range/include_range.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/range/overlaps.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/range.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/regexp.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/rexml.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/string/access.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/string/behavior.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/string/conversions.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/string/encoding.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/string/exclude.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/string/filters.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/string/inflections.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/string/inquiry.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/string/interpolation.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/string/multibyte.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/string/output_safety.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/string/starts_ends_with.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/string/strip.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/string/xchar.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/string.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/time/acts_like.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/time/calculations.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/time/conversions.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/time/marshal.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/time/publicize_conversion_methods.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/time/zones.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext/uri.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/core_ext.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/dependencies/autoload.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/dependencies.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/deprecation/behaviors.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/deprecation/method_wrappers.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/deprecation/proxy_wrappers.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/deprecation/reporting.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/deprecation.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/descendants_tracker.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/duration.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/file_update_checker.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/file_watcher.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/gzip.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/hash_with_indifferent_access.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/i18n.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/i18n_railtie.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/inflections.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/inflector/inflections.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/inflector/methods.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/inflector/transliterate.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/inflector.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/json/decoding.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/json/encoding.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/json/variable.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/json.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/lazy_load_hooks.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/locale/en.yml +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/log_subscriber/test_helper.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/log_subscriber.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/memoizable.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/message_encryptor.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/message_verifier.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/multibyte/chars.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/multibyte/exceptions.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/multibyte/unicode.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/multibyte/utils.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/multibyte.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/notifications/fanout.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/notifications/instrumenter.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/notifications.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/option_merger.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/ordered_hash.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/ordered_options.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/railtie.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/rescuable.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/ruby/shim.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/string_inquirer.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/tagged_logging.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/test_case.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/testing/assertions.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/testing/declarative.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/testing/deprecation.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/testing/isolation.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/testing/mochaing.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/testing/pending.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/testing/performance/jruby.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/testing/performance/rubinius.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/testing/performance/ruby/mri.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/testing/performance/ruby/yarv.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/testing/performance/ruby.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/testing/performance.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/testing/setup_and_teardown.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/time/autoload.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/time.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/time_with_zone.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/values/time_zone.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/values/unicode_tables.dat +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/whiny_nil.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/xml_mini/jdom.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/xml_mini/libxml.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/xml_mini/libxmlsax.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/xml_mini/nokogiri.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/xml_mini/nokogirisax.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/xml_mini/rexml.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support/xml_mini.rb +0 -0
- /data/vendor/bundle/gems/{activesupport-3.2.9 → activesupport-3.2.11}/lib/active_support.rb +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/COPYING +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/COPYING-json-jruby +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/GPL +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/README-json-jruby.markdown +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/README.rdoc +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/Rakefile +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/TODO +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/data/example.json +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/data/index.html +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/data/prototype.js +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/ext/json/ext/fbuffer/fbuffer.h +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/ext/json/ext/generator/depend +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/ext/json/ext/generator/extconf.rb +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/ext/json/ext/parser/depend +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/ext/json/ext/parser/extconf.rb +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/ext/json/ext/parser/parser.h +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/install.rb +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/java/src/json/ext/ByteListTranscoder.java +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/java/src/json/ext/Generator.java +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/java/src/json/ext/GeneratorMethods.java +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/java/src/json/ext/GeneratorService.java +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/java/src/json/ext/OptionsReader.java +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/java/src/json/ext/ParserService.java +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/java/src/json/ext/RuntimeInfo.java +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/java/src/json/ext/StringDecoder.java +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/java/src/json/ext/StringEncoder.java +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/java/src/json/ext/Utils.java +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/json-java.gemspec +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/lib/json/add/complex.rb +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/lib/json/add/core.rb +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/lib/json/add/date.rb +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/lib/json/add/date_time.rb +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/lib/json/add/exception.rb +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/lib/json/add/ostruct.rb +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/lib/json/add/range.rb +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/lib/json/add/rational.rb +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/lib/json/add/regexp.rb +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/lib/json/add/struct.rb +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/lib/json/add/symbol.rb +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/lib/json/add/time.rb +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/lib/json/ext.rb +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/lib/json/pure.rb +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/lib/json.rb +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/tests/fixtures/fail1.json +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/tests/fixtures/fail10.json +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/tests/fixtures/fail11.json +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/tests/fixtures/fail12.json +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/tests/fixtures/fail13.json +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/tests/fixtures/fail14.json +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/tests/fixtures/fail19.json +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/tests/fixtures/fail2.json +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/tests/fixtures/fail20.json +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/tests/fixtures/fail21.json +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/tests/fixtures/fail22.json +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/tests/fixtures/fail23.json +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/tests/fixtures/fail24.json +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/tests/fixtures/fail25.json +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/tests/fixtures/fail27.json +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/tests/fixtures/fail28.json +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/tests/fixtures/fail3.json +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/tests/fixtures/fail4.json +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/tests/fixtures/fail5.json +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/tests/fixtures/fail6.json +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/tests/fixtures/fail7.json +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/tests/fixtures/fail8.json +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/tests/fixtures/fail9.json +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/tests/fixtures/pass1.json +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/tests/fixtures/pass15.json +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/tests/fixtures/pass16.json +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/tests/fixtures/pass17.json +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/tests/fixtures/pass2.json +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/tests/fixtures/pass26.json +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/tests/fixtures/pass3.json +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/tests/setup_variant.rb +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/tests/test_json_addition.rb +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/tools/fuzz.rb +0 -0
- /data/vendor/bundle/gems/{json-1.7.5 → json-1.7.6}/tools/server.rb +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/bin/rackup +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/contrib/rack_logo.svg +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/example/lobster.ru +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/example/protectedlobster.rb +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/example/protectedlobster.ru +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/lib/rack/auth/abstract/handler.rb +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/lib/rack/auth/abstract/request.rb +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/lib/rack/auth/digest/md5.rb +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/lib/rack/auth/digest/params.rb +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/lib/rack/auth/digest/request.rb +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/lib/rack/chunked.rb +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/lib/rack/conditionalget.rb +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/lib/rack/config.rb +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/lib/rack/content_length.rb +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/lib/rack/content_type.rb +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/lib/rack/handler/cgi.rb +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/lib/rack/handler/evented_mongrel.rb +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/lib/rack/handler/fastcgi.rb +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/lib/rack/handler/lsws.rb +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/lib/rack/handler/mongrel.rb +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/lib/rack/handler/scgi.rb +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/lib/rack/handler/swiftiplied_mongrel.rb +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/lib/rack/handler/thin.rb +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/lib/rack/handler/webrick.rb +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/lib/rack/handler.rb +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/lib/rack/lobster.rb +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/lib/rack/logger.rb +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/lib/rack/methodoverride.rb +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/lib/rack/multipart/generator.rb +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/lib/rack/multipart/uploaded_file.rb +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/lib/rack/nulllogger.rb +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/lib/rack/recursive.rb +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/lib/rack/rewindable_input.rb +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/lib/rack/runtime.rb +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/lib/rack/sendfile.rb +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/lib/rack/session/memcache.rb +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/lib/rack/session/pool.rb +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/lib/rack/showexceptions.rb +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/lib/rack/showstatus.rb +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/lib/rack/urlmap.rb +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/lib/rack.rb +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/test/builder/anything.rb +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/test/builder/comment.ru +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/test/builder/end.ru +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/test/builder/options.ru +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/test/cgi/lighttpd.conf +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/test/cgi/rackup_stub.rb +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/test/cgi/sample_rackup.ru +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/test/cgi/test +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/test/cgi/test+directory/test+file +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/test/cgi/test.fcgi +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/test/cgi/test.ru +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/test/gemloader.rb +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/test/multipart/bad_robots +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/test/multipart/binary +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/test/multipart/content_type_and_no_filename +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/test/multipart/empty +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/test/multipart/fail_16384_nofile +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/test/multipart/file1.txt +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/test/multipart/filename_and_modification_param +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/test/multipart/filename_with_escaped_quotes +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/test/multipart/filename_with_escaped_quotes_and_modification_param +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/test/multipart/filename_with_percent_escaped_quotes +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/test/multipart/filename_with_unescaped_percentages +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/test/multipart/filename_with_unescaped_percentages2 +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/test/multipart/filename_with_unescaped_percentages3 +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/test/multipart/filename_with_unescaped_quotes +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/test/multipart/ie +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/test/multipart/mixed_files +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/test/multipart/nested +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/test/multipart/none +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/test/multipart/semicolon +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/test/multipart/text +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/test/multipart/webkit +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/test/rackup/config.ru +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/test/registering_handler/rack/handler/registering_myself.rb +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/test/spec_cgi.rb +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/test/spec_commonlogger.rb +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/test/spec_conditionalget.rb +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/test/spec_fastcgi.rb +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/test/spec_handler.rb +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/test/spec_lint.rb +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/test/spec_mongrel.rb +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/test/spec_rewindable_input.rb +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/test/spec_session_abstract_id.rb +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/test/spec_thin.rb +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/test/spec_webrick.rb +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/test/static/index.html +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/test/testrequest.rb +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/test/unregistered_handler/rack/handler/unregistered.rb +0 -0
- /data/vendor/bundle/gems/{rack-1.4.1 → rack-1.4.3}/test/unregistered_handler/rack/handler/unregistered_long_one.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/README.rdoc +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/bin/rails +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/belongs_to.png +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/book_icon.gif +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/bullet.gif +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/challenge.png +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/chapters_icon.gif +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/check_bullet.gif +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/credits_pic_blank.gif +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/csrf.png +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/customized_error_messages.png +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/edge_badge.png +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/error_messages.png +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/feature_tile.gif +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/footer_tile.gif +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/fxn.png +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/grey_bullet.gif +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/habtm.png +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/has_many.png +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/has_many_through.png +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/has_one.png +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/has_one_through.png +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/header_backdrop.png +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/header_tile.gif +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/i18n/demo_html_safe.png +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/i18n/demo_localized_pirate.png +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/i18n/demo_translated_en.png +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/i18n/demo_translated_pirate.png +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/i18n/demo_translation_missing.png +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/i18n/demo_untranslated.png +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/icons/README +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/icons/callouts/1.png +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/icons/callouts/10.png +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/icons/callouts/11.png +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/icons/callouts/12.png +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/icons/callouts/13.png +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/icons/callouts/14.png +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/icons/callouts/15.png +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/icons/callouts/2.png +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/icons/callouts/3.png +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/icons/callouts/4.png +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/icons/callouts/5.png +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/icons/callouts/6.png +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/icons/callouts/7.png +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/icons/callouts/8.png +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/icons/callouts/9.png +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/icons/caution.png +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/icons/example.png +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/icons/home.png +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/icons/important.png +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/icons/next.png +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/icons/note.png +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/icons/prev.png +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/icons/tip.png +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/icons/up.png +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/icons/warning.png +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/jaimeiniesta.jpg +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/nav_arrow.gif +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/polymorphic.png +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/posts_index.png +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/radar.png +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/rails_guides_kindle_cover.jpg +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/rails_guides_logo.gif +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/rails_logo_remix.gif +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/rails_welcome.png +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/session_fixation.png +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/tab_grey.gif +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/tab_info.gif +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/tab_note.gif +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/tab_red.gif +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/tab_yellow.gif +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/tab_yellow.png +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/validation_error_messages.png +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/images/vijaydev.jpg +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/javascripts/guides.js +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/javascripts/syntaxhighlighter/shBrushAS3.js +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/javascripts/syntaxhighlighter/shBrushAppleScript.js +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/javascripts/syntaxhighlighter/shBrushBash.js +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/javascripts/syntaxhighlighter/shBrushCSharp.js +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/javascripts/syntaxhighlighter/shBrushColdFusion.js +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/javascripts/syntaxhighlighter/shBrushCpp.js +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/javascripts/syntaxhighlighter/shBrushCss.js +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/javascripts/syntaxhighlighter/shBrushDelphi.js +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/javascripts/syntaxhighlighter/shBrushDiff.js +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/javascripts/syntaxhighlighter/shBrushErlang.js +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/javascripts/syntaxhighlighter/shBrushGroovy.js +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/javascripts/syntaxhighlighter/shBrushJScript.js +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/javascripts/syntaxhighlighter/shBrushJava.js +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/javascripts/syntaxhighlighter/shBrushJavaFX.js +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/javascripts/syntaxhighlighter/shBrushPerl.js +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/javascripts/syntaxhighlighter/shBrushPhp.js +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/javascripts/syntaxhighlighter/shBrushPlain.js +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/javascripts/syntaxhighlighter/shBrushPowerShell.js +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/javascripts/syntaxhighlighter/shBrushPython.js +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/javascripts/syntaxhighlighter/shBrushRuby.js +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/javascripts/syntaxhighlighter/shBrushSass.js +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/javascripts/syntaxhighlighter/shBrushScala.js +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/javascripts/syntaxhighlighter/shBrushSql.js +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/javascripts/syntaxhighlighter/shBrushVb.js +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/javascripts/syntaxhighlighter/shBrushXml.js +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/javascripts/syntaxhighlighter/shCore.js +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/stylesheets/fixes.css +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/stylesheets/kindle.css +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/stylesheets/main.css +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/stylesheets/print.css +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/stylesheets/reset.css +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/stylesheets/style.css +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/stylesheets/syntaxhighlighter/shCore.css +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/stylesheets/syntaxhighlighter/shCoreDefault.css +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/stylesheets/syntaxhighlighter/shCoreDjango.css +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/stylesheets/syntaxhighlighter/shCoreEclipse.css +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/stylesheets/syntaxhighlighter/shCoreEmacs.css +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/stylesheets/syntaxhighlighter/shCoreFadeToGrey.css +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/stylesheets/syntaxhighlighter/shCoreMDUltra.css +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/stylesheets/syntaxhighlighter/shCoreMidnight.css +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/stylesheets/syntaxhighlighter/shCoreRDark.css +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/stylesheets/syntaxhighlighter/shThemeDefault.css +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/stylesheets/syntaxhighlighter/shThemeDjango.css +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/stylesheets/syntaxhighlighter/shThemeEclipse.css +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/stylesheets/syntaxhighlighter/shThemeEmacs.css +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/stylesheets/syntaxhighlighter/shThemeFadeToGrey.css +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/stylesheets/syntaxhighlighter/shThemeMDUltra.css +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/stylesheets/syntaxhighlighter/shThemeMidnight.css +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/stylesheets/syntaxhighlighter/shThemeRDark.css +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/assets/stylesheets/syntaxhighlighter/shThemeRailsGuides.css +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/Gemfile +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/README.rdoc +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/Rakefile +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/app/assets/images/rails.png +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/app/assets/javascripts/application.js +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/app/assets/javascripts/comments.js.coffee +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/app/assets/javascripts/home.js.coffee +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/app/assets/javascripts/posts.js.coffee +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/app/assets/stylesheets/application.css +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/app/assets/stylesheets/comments.css.scss +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/app/assets/stylesheets/home.css.scss +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/app/assets/stylesheets/posts.css.scss +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/app/assets/stylesheets/scaffolds.css.scss +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/app/controllers/application_controller.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/app/controllers/comments_controller.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/app/controllers/home_controller.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/app/controllers/posts_controller.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/app/helpers/application_helper.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/app/helpers/comments_helper.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/app/helpers/home_helper.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/app/helpers/posts_helper.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/app/models/comment.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/app/models/post.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/app/models/tag.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/app/views/comments/_comment.html.erb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/app/views/comments/_form.html.erb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/app/views/home/index.html.erb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/app/views/layouts/application.html.erb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/app/views/posts/_form.html.erb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/app/views/posts/edit.html.erb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/app/views/posts/index.html.erb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/app/views/posts/new.html.erb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/app/views/posts/show.html.erb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/app/views/tags/_form.html.erb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/config/application.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/config/boot.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/config/database.yml +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/config/environment.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/config/environments/development.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/config/environments/production.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/config/environments/test.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/config/initializers/backtrace_silencers.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/config/initializers/inflections.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/config/initializers/mime_types.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/config/initializers/secret_token.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/config/initializers/session_store.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/config/initializers/wrap_parameters.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/config/locales/en.yml +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/config/routes.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/config.ru +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/db/migrate/20110901012504_create_posts.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/db/migrate/20110901012815_create_comments.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/db/migrate/20110901013701_create_tags.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/db/schema.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/db/seeds.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/doc/README_FOR_APP +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/public/404.html +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/public/422.html +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/public/500.html +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/public/favicon.ico +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/public/robots.txt +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/script/rails +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/test/fixtures/comments.yml +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/test/fixtures/posts.yml +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/test/fixtures/tags.yml +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/test/functional/comments_controller_test.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/test/functional/home_controller_test.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/test/functional/posts_controller_test.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/test/performance/browsing_test.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/test/test_helper.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/test/unit/comment_test.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/test/unit/helpers/comments_helper_test.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/test/unit/helpers/home_helper_test.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/test/unit/helpers/posts_helper_test.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/test/unit/post_test.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/code/getting_started/test/unit/tag_test.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/rails_guides/generator.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/rails_guides/helpers.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/rails_guides/indexer.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/rails_guides/levenshtein.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/rails_guides/textile_extensions.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/rails_guides.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/source/2_2_release_notes.textile +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/source/2_3_release_notes.textile +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/source/3_0_release_notes.textile +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/source/3_1_release_notes.textile +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/source/3_2_release_notes.textile +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/source/_license.html.erb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/source/_welcome.html.erb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/source/action_controller_overview.textile +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/source/action_mailer_basics.textile +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/source/action_view_overview.textile +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/source/active_model_basics.textile +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/source/active_record_basics.textile +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/source/active_record_querying.textile +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/source/active_record_validations_callbacks.textile +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/source/active_resource_basics.textile +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/source/active_support_core_extensions.textile +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/source/ajax_on_rails.textile +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/source/api_documentation_guidelines.textile +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/source/asset_pipeline.textile +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/source/association_basics.textile +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/source/caching_with_rails.textile +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/source/command_line.textile +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/source/configuring.textile +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/source/contributing_to_ruby_on_rails.textile +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/source/credits.html.erb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/source/debugging_rails_applications.textile +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/source/documents.yaml +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/source/engines.textile +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/source/form_helpers.textile +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/source/generators.textile +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/source/getting_started.textile +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/source/i18n.textile +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/source/index.html.erb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/source/initialization.textile +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/source/kindle/KINDLE.md +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/source/kindle/copyright.html.erb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/source/kindle/layout.html.erb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/source/kindle/rails_guides.opf.erb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/source/kindle/toc.html.erb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/source/kindle/toc.ncx.erb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/source/kindle/welcome.html.erb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/source/layout.html.erb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/source/layouts_and_rendering.textile +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/source/migrations.textile +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/source/nested_model_forms.textile +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/source/performance_testing.textile +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/source/plugins.textile +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/source/rails_application_templates.textile +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/source/rails_on_rack.textile +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/source/routing.textile +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/source/ruby_on_rails_guides_guidelines.textile +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/source/security.textile +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/source/testing.textile +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/guides/w3c_validator.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/all.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/application/bootstrap.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/application/configuration.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/application/finisher.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/application/railties.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/application/route_inspector.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/application/routes_reloader.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/application.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/backtrace_cleaner.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/cli.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/code_statistics.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/commands/application.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/commands/benchmarker.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/commands/console.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/commands/dbconsole.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/commands/destroy.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/commands/generate.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/commands/plugin.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/commands/plugin_new.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/commands/profiler.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/commands/runner.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/commands/server.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/commands/update.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/commands.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/configuration.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/console/app.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/console/helpers.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/engine/commands.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/engine/configuration.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/engine/railties.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/engine.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/actions.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/active_model.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/app_base.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/base.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/css/assets/assets_generator.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/css/assets/templates/stylesheet.css +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/css/scaffold/scaffold_generator.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/erb/controller/controller_generator.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/erb/controller/templates/view.html.erb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/erb/mailer/mailer_generator.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/erb/mailer/templates/view.text.erb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/erb/scaffold/scaffold_generator.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/erb/scaffold/templates/_form.html.erb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/erb/scaffold/templates/edit.html.erb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/erb/scaffold/templates/index.html.erb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/erb/scaffold/templates/new.html.erb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/erb/scaffold/templates/show.html.erb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/erb.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/generated_attribute.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/js/assets/assets_generator.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/js/assets/templates/javascript.js +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/migration.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/named_base.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/app/USAGE +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/app/app_generator.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/app/templates/Gemfile +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/app/templates/README +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/app/templates/Rakefile +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/app/templates/app/assets/images/rails.png +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/app/templates/app/assets/javascripts/application.js.tt +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/app/templates/app/assets/stylesheets/application.css +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/app/templates/app/controllers/application_controller.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/app/templates/app/helpers/application_helper.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/app/templates/app/views/layouts/application.html.erb.tt +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/app/templates/config/application.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/app/templates/config/boot.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/app/templates/config/databases/frontbase.yml +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/app/templates/config/databases/ibm_db.yml +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/app/templates/config/databases/jdbc.yml +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/app/templates/config/databases/jdbcmysql.yml +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/app/templates/config/databases/jdbcpostgresql.yml +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/app/templates/config/databases/jdbcsqlite3.yml +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/app/templates/config/databases/mysql.yml +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/app/templates/config/databases/oracle.yml +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/app/templates/config/databases/postgresql.yml +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/app/templates/config/databases/sqlite3.yml +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/app/templates/config/environment.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/app/templates/config/environments/development.rb.tt +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/app/templates/config/environments/production.rb.tt +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/app/templates/config/environments/test.rb.tt +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/app/templates/config/initializers/backtrace_silencers.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/app/templates/config/initializers/inflections.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/app/templates/config/initializers/mime_types.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/app/templates/config/initializers/secret_token.rb.tt +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/app/templates/config/initializers/session_store.rb.tt +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/app/templates/config/initializers/wrap_parameters.rb.tt +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/app/templates/config/locales/en.yml +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/app/templates/config/routes.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/app/templates/config.ru +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/app/templates/db/seeds.rb.tt +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/app/templates/doc/README_FOR_APP +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/app/templates/gitignore +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/app/templates/public/404.html +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/app/templates/public/422.html +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/app/templates/public/500.html +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/app/templates/public/favicon.ico +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/app/templates/public/index.html +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/app/templates/public/robots.txt +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/app/templates/script/rails +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/app/templates/test/performance/browsing_test.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/app/templates/test/test_helper.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/assets/USAGE +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/assets/assets_generator.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/assets/templates/javascript.js +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/assets/templates/stylesheet.css +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/controller/USAGE +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/controller/controller_generator.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/controller/templates/controller.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/generator/USAGE +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/generator/generator_generator.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/generator/templates/%file_name%_generator.rb.tt +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/generator/templates/USAGE.tt +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/helper/USAGE +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/helper/helper_generator.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/helper/templates/helper.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/integration_test/USAGE +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/integration_test/integration_test_generator.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/migration/USAGE +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/migration/migration_generator.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/model/USAGE +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/model/model_generator.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/observer/USAGE +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/observer/observer_generator.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/performance_test/USAGE +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/performance_test/performance_test_generator.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/plugin_new/USAGE +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/plugin_new/plugin_new_generator.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/plugin_new/templates/%name%.gemspec +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/plugin_new/templates/Gemfile +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/plugin_new/templates/MIT-LICENSE +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/plugin_new/templates/README.rdoc +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/plugin_new/templates/Rakefile +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/plugin_new/templates/app/controllers/%name%/application_controller.rb.tt +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/plugin_new/templates/app/helpers/%name%/application_helper.rb.tt +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/plugin_new/templates/app/views/layouts/%name%/application.html.erb.tt +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/plugin_new/templates/config/routes.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/plugin_new/templates/gitignore +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/plugin_new/templates/lib/%name%/engine.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/plugin_new/templates/lib/%name%/version.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/plugin_new/templates/lib/%name%.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/plugin_new/templates/lib/tasks/%name%_tasks.rake +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/plugin_new/templates/rails/application.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/plugin_new/templates/rails/boot.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/plugin_new/templates/rails/routes.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/plugin_new/templates/script/rails.tt +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/plugin_new/templates/test/%name%_test.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/plugin_new/templates/test/integration/navigation_test.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/plugin_new/templates/test/test_helper.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/resource/USAGE +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/resource/resource_generator.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/resource_route/resource_route_generator.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/scaffold/USAGE +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/scaffold/scaffold_generator.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/scaffold/templates/scaffold.css +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/scaffold_controller/USAGE +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/scaffold_controller/scaffold_controller_generator.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/scaffold_controller/templates/controller.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/session_migration/USAGE +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/session_migration/session_migration_generator.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/task/USAGE +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/task/task_generator.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/rails/task/templates/task.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/resource_helpers.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/test_case.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/test_unit/controller/controller_generator.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/test_unit/controller/templates/functional_test.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/test_unit/helper/helper_generator.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/test_unit/helper/templates/helper_test.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/test_unit/integration/integration_generator.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/test_unit/integration/templates/integration_test.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/test_unit/mailer/mailer_generator.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/test_unit/mailer/templates/functional_test.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/test_unit/model/model_generator.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/test_unit/model/templates/fixtures.yml +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/test_unit/model/templates/unit_test.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/test_unit/observer/observer_generator.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/test_unit/observer/templates/unit_test.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/test_unit/performance/performance_generator.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/test_unit/performance/templates/performance_test.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/test_unit/plugin/plugin_generator.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/test_unit/plugin/templates/%file_name%_test.rb.tt +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/test_unit/plugin/templates/test_helper.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/test_unit/scaffold/scaffold_generator.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/test_unit/scaffold/templates/functional_test.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators/test_unit.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/generators.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/info.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/info_controller.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/initializable.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/paths.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/performance_test_help.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/plugin.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/rack/debugger.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/rack/log_tailer.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/rack/logger.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/rack.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/railtie/configurable.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/railtie/configuration.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/railtie.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/ruby_version_check.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/rubyprof_ext.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/script_rails_loader.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/source_annotation_extractor.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/tasks/annotations.rake +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/tasks/documentation.rake +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/tasks/engine.rake +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/tasks/framework.rake +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/tasks/log.rake +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/tasks/middleware.rake +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/tasks/misc.rake +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/tasks/routes.rake +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/tasks/statistics.rake +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/tasks/tmp.rake +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/tasks.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/test_help.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/test_unit/railtie.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/test_unit/sub_test_task.rb +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails/test_unit/testing.rake +0 -0
- /data/vendor/bundle/gems/{railties-3.2.9 → railties-3.2.11}/lib/rails.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/CHANGES +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/MIT-LICENSE +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/README.rdoc +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/TODO +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/doc/command_line_usage.rdoc +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/doc/example/Rakefile1 +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/doc/example/Rakefile2 +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/doc/example/a.c +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/doc/example/b.c +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/doc/example/main.c +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/doc/glossary.rdoc +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/doc/jamis.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/doc/proto_rake.rdoc +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/doc/rake.1.gz +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/doc/rakefile.rdoc +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/doc/rational.rdoc +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/doc/release_notes/rake-0.4.14.rdoc +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/doc/release_notes/rake-0.4.15.rdoc +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/doc/release_notes/rake-0.5.0.rdoc +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/doc/release_notes/rake-0.5.3.rdoc +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/doc/release_notes/rake-0.5.4.rdoc +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/doc/release_notes/rake-0.6.0.rdoc +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/doc/release_notes/rake-0.7.0.rdoc +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/doc/release_notes/rake-0.7.1.rdoc +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/doc/release_notes/rake-0.7.2.rdoc +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/doc/release_notes/rake-0.7.3.rdoc +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/doc/release_notes/rake-0.8.0.rdoc +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/doc/release_notes/rake-0.8.2.rdoc +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/doc/release_notes/rake-0.8.3.rdoc +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/doc/release_notes/rake-0.8.4.rdoc +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/doc/release_notes/rake-0.8.5.rdoc +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/doc/release_notes/rake-0.8.6.rdoc +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/doc/release_notes/rake-0.8.7.rdoc +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/doc/release_notes/rake-0.9.0.rdoc +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/doc/release_notes/rake-0.9.1.rdoc +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/doc/release_notes/rake-0.9.2.2.rdoc +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/doc/release_notes/rake-0.9.2.rdoc +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/doc/release_notes/rake-0.9.3.rdoc +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/doc/release_notes/rake-0.9.4.rdoc +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/doc/release_notes/rake-0.9.5.rdoc +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/doc/release_notes/rake-10.0.0.rdoc +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/doc/release_notes/rake-10.0.1.rdoc +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/doc/release_notes/rake-10.0.2.rdoc +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/install.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/lib/rake/alt_system.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/lib/rake/clean.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/lib/rake/cloneable.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/lib/rake/contrib/compositepublisher.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/lib/rake/contrib/ftptools.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/lib/rake/contrib/publisher.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/lib/rake/contrib/rubyforgepublisher.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/lib/rake/contrib/sshpublisher.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/lib/rake/default_loader.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/lib/rake/dsl_definition.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/lib/rake/early_time.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/lib/rake/ext/core.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/lib/rake/ext/module.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/lib/rake/ext/string.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/lib/rake/ext/time.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/lib/rake/file_creation_task.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/lib/rake/file_list.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/lib/rake/file_task.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/lib/rake/file_utils_ext.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/lib/rake/invocation_chain.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/lib/rake/invocation_exception_mixin.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/lib/rake/loaders/makefile.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/lib/rake/multi_task.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/lib/rake/name_space.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/lib/rake/packagetask.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/lib/rake/pathmap.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/lib/rake/phony.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/lib/rake/private_reader.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/lib/rake/promise.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/lib/rake/pseudo_status.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/lib/rake/rake_module.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/lib/rake/rake_test_loader.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/lib/rake/rule_recursion_overflow_error.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/lib/rake/runtest.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/lib/rake/task_argument_error.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/lib/rake/task_arguments.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/lib/rake/task_manager.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/lib/rake/tasklib.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/lib/rake/testtask.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/lib/rake/thread_history_display.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/lib/rake/thread_pool.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/lib/rake/win32.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/test/file_creation.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/test/test_private_reader.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/test/test_rake.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/test/test_rake_application.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/test/test_rake_application_options.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/test/test_rake_clean.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/test/test_rake_definitions.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/test/test_rake_directory_task.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/test/test_rake_dsl.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/test/test_rake_early_time.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/test/test_rake_extension.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/test/test_rake_file_creation_task.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/test/test_rake_file_list.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/test/test_rake_file_list_path_map.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/test/test_rake_file_utils.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/test/test_rake_ftp_file.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/test/test_rake_invocation_chain.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/test/test_rake_makefile_loader.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/test/test_rake_multi_task.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/test/test_rake_name_space.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/test/test_rake_package_task.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/test/test_rake_path_map.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/test/test_rake_path_map_explode.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/test/test_rake_path_map_partial.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/test/test_rake_pseudo_status.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/test/test_rake_require.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/test/test_rake_rules.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/test/test_rake_task.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/test/test_rake_task_argument_parsing.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/test/test_rake_task_arguments.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/test/test_rake_task_lib.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/test/test_rake_task_manager.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/test/test_rake_task_manager_argument_resolution.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/test/test_rake_test_task.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/test/test_rake_thread_pool.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/test/test_rake_top_level_functions.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/test/test_rake_win32.rb +0 -0
- /data/vendor/bundle/gems/{rake-10.0.2 → rake-10.0.3}/test/test_thread_history_display.rb +0 -0
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -1,55 +0,0 @@
|
|
1
|
-
## Rails 3.2.9 (unreleased) ##
|
2
|
-
|
3
|
-
* Do not render views when mail() isn't called.
|
4
|
-
Fix #7761
|
5
|
-
|
6
|
-
*Yves Senn*
|
7
|
-
|
8
|
-
|
9
|
-
## Rails 3.2.8 (Aug 9, 2012) ##
|
10
|
-
|
11
|
-
* No changes.
|
12
|
-
|
13
|
-
|
14
|
-
## Rails 3.2.7 (Jul 26, 2012) ##
|
15
|
-
|
16
|
-
* No changes.
|
17
|
-
|
18
|
-
|
19
|
-
## Rails 3.2.6 (Jun 12, 2012) ##
|
20
|
-
|
21
|
-
* No changes.
|
22
|
-
|
23
|
-
|
24
|
-
## Rails 3.2.5 (Jun 1, 2012) ##
|
25
|
-
|
26
|
-
* No changes.
|
27
|
-
|
28
|
-
|
29
|
-
## Rails 3.2.4 (May 31, 2012) ##
|
30
|
-
|
31
|
-
* No changes.
|
32
|
-
|
33
|
-
|
34
|
-
## Rails 3.2.3 (March 30, 2012) ##
|
35
|
-
|
36
|
-
* Upgrade mail version to 2.4.3 *ML*
|
37
|
-
|
38
|
-
|
39
|
-
## Rails 3.2.2 (March 1, 2012) ##
|
40
|
-
|
41
|
-
* No changes.
|
42
|
-
|
43
|
-
|
44
|
-
## Rails 3.2.1 (January 26, 2012) ##
|
45
|
-
|
46
|
-
* No changes.
|
47
|
-
|
48
|
-
|
49
|
-
## Rails 3.2.0 (January 20, 2012) ##
|
50
|
-
|
51
|
-
* Upgrade mail version to 2.4.0 *ML*
|
52
|
-
|
53
|
-
* Remove Old ActionMailer API *Josh Kalderimis*
|
54
|
-
|
55
|
-
Please check [3-1-stable](https://github.com/rails/rails/blob/3-1-stable/actionmailer/CHANGELOG.md) for previous changes.
|
@@ -1,441 +0,0 @@
|
|
1
|
-
## Rails 3.2.9 (unreleased) ##
|
2
|
-
|
3
|
-
* Clear url helpers when reloading routes.
|
4
|
-
|
5
|
-
*Santiago Pastorino*
|
6
|
-
|
7
|
-
* Revert the shorthand routes scoped with `:module` option fix
|
8
|
-
This added a regression since it is changing the URL mapping.
|
9
|
-
This makes the stable release backward compatible.
|
10
|
-
|
11
|
-
*Rafael Mendonça França*
|
12
|
-
|
13
|
-
* Revert the `assert_template` fix to not pass with ever string that matches the template name.
|
14
|
-
This added a regression since people were relying on this buggy behavior.
|
15
|
-
This will introduce back #3849 but this stable release will be backward compatible.
|
16
|
-
Fixes #8068.
|
17
|
-
|
18
|
-
*Rafael Mendonça França*
|
19
|
-
|
20
|
-
* Revert the rename of internal variable on ActionController::TemplateAssertions to prevent
|
21
|
-
naming collisions. This added a regression related with shoulda-matchers, since it is
|
22
|
-
expecting the [instance variable @layouts](https://github.com/thoughtbot/shoulda-matchers/blob/9e1188eea68c47d9a56ce6280e45027da6187ab1/lib/shoulda/matchers/action_controller/render_with_layout_matcher.rb#L74).
|
23
|
-
This will introduce back #7459 but this stable release will be backward compatible.
|
24
|
-
Fixes #8068.
|
25
|
-
|
26
|
-
*Rafael Mendonça França*
|
27
|
-
|
28
|
-
* Accept :remote as symbolic option for `link_to` helper. *Riley Lynch*
|
29
|
-
|
30
|
-
* Warn when the `:locals` option is passed to `assert_template` outside of a view test case
|
31
|
-
Fix #3415
|
32
|
-
|
33
|
-
*Yves Senn*
|
34
|
-
|
35
|
-
* Rename internal variables on ActionController::TemplateAssertions to prevent
|
36
|
-
naming collisions. @partials, @templates and @layouts are now prefixed with an underscore.
|
37
|
-
Fix #7459
|
38
|
-
|
39
|
-
*Yves Senn*
|
40
|
-
|
41
|
-
* `resource` and `resources` don't modify the passed options hash
|
42
|
-
Fix #7777
|
43
|
-
|
44
|
-
*Yves Senn*
|
45
|
-
|
46
|
-
* Precompiled assets include aliases from foo.js to foo/index.js and vice versa.
|
47
|
-
|
48
|
-
# Precompiles phone-<digest>.css and aliases phone/index.css to phone.css.
|
49
|
-
config.assets.precompile = [ 'phone.css' ]
|
50
|
-
|
51
|
-
# Precompiles phone/index-<digest>.css and aliases phone.css to phone/index.css.
|
52
|
-
config.assets.precompile = [ 'phone/index.css' ]
|
53
|
-
|
54
|
-
# Both of these work with either precompile thanks to their aliases.
|
55
|
-
<%= stylesheet_link_tag 'phone', media: 'all' %>
|
56
|
-
<%= stylesheet_link_tag 'phone/index', media: 'all' %>
|
57
|
-
|
58
|
-
*Jeremy Kemper*
|
59
|
-
|
60
|
-
* `assert_template` is no more passing with what ever string that matches
|
61
|
-
with the template name.
|
62
|
-
|
63
|
-
Before when we have a template `/layout/hello.html.erb`, `assert_template`
|
64
|
-
was passing with any string that matches. This behavior allowed false
|
65
|
-
positive like:
|
66
|
-
|
67
|
-
assert_template "layout"
|
68
|
-
assert_template "out/hello"
|
69
|
-
|
70
|
-
Now it only passes with:
|
71
|
-
|
72
|
-
assert_template "layout/hello"
|
73
|
-
assert_template "hello"
|
74
|
-
|
75
|
-
Fixes #3849.
|
76
|
-
|
77
|
-
*Hugolnx*
|
78
|
-
|
79
|
-
* Handle `ActionDispatch::Http::UploadedFile` like `Rack::Test::UploadedFile`, don't call to_param on it. Since
|
80
|
-
`Rack::Test::UploadedFile` isn't API compatible this is needed to test file uploads that rely on `tempfile`
|
81
|
-
being available.
|
82
|
-
|
83
|
-
*Tim Vandecasteele*
|
84
|
-
|
85
|
-
* Respect `config.digest = false` for `asset_path`
|
86
|
-
|
87
|
-
Previously, the `asset_path` internals only respected the `:digest`
|
88
|
-
option, but ignored the global config setting. This meant that
|
89
|
-
`config.digest = false` could not be used in conjunction with
|
90
|
-
`config.compile = false` this corrects the behavior.
|
91
|
-
|
92
|
-
*Peter Wagenet*
|
93
|
-
|
94
|
-
* Fix #7646, the log now displays the correct status code when an exception is raised.
|
95
|
-
|
96
|
-
*Yves Senn*
|
97
|
-
|
98
|
-
* Fix handling of date selects when using both disabled and discard options.
|
99
|
-
Fixes #7431.
|
100
|
-
|
101
|
-
*Vasiliy Ermolovich*
|
102
|
-
|
103
|
-
* Fix select_tag when option_tags is nil.
|
104
|
-
Fixes #7404.
|
105
|
-
|
106
|
-
*Sandeep Ravichandran*
|
107
|
-
|
108
|
-
* `javascript_include_tag :all` will now not include `application.js` if the file does not exists. *Prem Sichanugrist*
|
109
|
-
|
110
|
-
* Support cookie jar options (e.g., domain :all) for all session stores.
|
111
|
-
Fixes GH#3047, GH#2483.
|
112
|
-
|
113
|
-
*Ravil Bayramgalin*
|
114
|
-
|
115
|
-
* Performance Improvement to send_file: Avoid having to pass an open file handle as the response body. Rack::Sendfile
|
116
|
-
will usually intercept the response and just uses the path directly, so no reason to open the file. This performance
|
117
|
-
improvement also resolves an issue with jRuby encodings, and is the reason for the backport, see issue #6844.
|
118
|
-
|
119
|
-
*Jeremy Kemper & Erich Menge*
|
120
|
-
|
121
|
-
|
122
|
-
## Rails 3.2.8 (Aug 9, 2012) ##
|
123
|
-
|
124
|
-
* There is an XSS vulnerability in the strip_tags helper in Ruby on Rails, the
|
125
|
-
helper doesn't correctly handle malformed html. As a result an attacker can
|
126
|
-
execute arbitrary javascript through the use of specially crafted malformed
|
127
|
-
html.
|
128
|
-
|
129
|
-
*Marek from Nethemba (www.nethemba.com) & Santiago Pastorino*
|
130
|
-
|
131
|
-
* When a "prompt" value is supplied to the `select_tag` helper, the "prompt" value is not escaped.
|
132
|
-
If untrusted data is not escaped, and is supplied as the prompt value, there is a potential for XSS attacks.
|
133
|
-
Vulnerable code will look something like this:
|
134
|
-
select_tag("name", options, :prompt => UNTRUSTED_INPUT)
|
135
|
-
|
136
|
-
*Santiago Pastorino*
|
137
|
-
|
138
|
-
* Reverted the deprecation of `:confirm`. *Rafael Mendonça França*
|
139
|
-
|
140
|
-
* Reverted the deprecation of `:disable_with`. *Rafael Mendonça França*
|
141
|
-
|
142
|
-
* Reverted the deprecation of `:mouseover` option to `image_tag`. *Rafael Mendonça França*
|
143
|
-
|
144
|
-
* Reverted the deprecation of `button_to_function` and `link_to_function` helpers.
|
145
|
-
|
146
|
-
*Rafael Mendonça França*
|
147
|
-
|
148
|
-
|
149
|
-
## Rails 3.2.7 (Jul 26, 2012) ##
|
150
|
-
|
151
|
-
* Do not convert digest auth strings to symbols. CVE-2012-3424
|
152
|
-
|
153
|
-
* Bump Journey requirements to 1.0.4
|
154
|
-
|
155
|
-
* Add support for optional root segments containing slashes
|
156
|
-
|
157
|
-
* Fixed bug creating invalid HTML in select options
|
158
|
-
|
159
|
-
* Show in log correct wrapped keys
|
160
|
-
|
161
|
-
* Fix NumberHelper options wrapping to prevent verbatim blocks being rendered instead of line continuations.
|
162
|
-
|
163
|
-
* ActionController::Metal doesn't have logger method, check it and then delegate
|
164
|
-
|
165
|
-
* ActionController::Caching depends on RackDelegation and AbstractController::Callbacks
|
166
|
-
|
167
|
-
|
168
|
-
## Rails 3.2.6 (Jun 12, 2012) ##
|
169
|
-
|
170
|
-
* nil is removed from array parameter values
|
171
|
-
|
172
|
-
CVE-2012-2694
|
173
|
-
|
174
|
-
* Deprecate `:confirm` in favor of `':data => { :confirm => "Text" }'` option for `button_to`, `button_tag`, `image_submit_tag`, `link_to` and `submit_tag` helpers.
|
175
|
-
|
176
|
-
*Carlos Galdino*
|
177
|
-
|
178
|
-
* Allow to use mounted_helpers (helpers for accessing mounted engines) in ActionView::TestCase. *Piotr Sarnacki*
|
179
|
-
|
180
|
-
* Include mounted_helpers (helpers for accessing mounted engines) in ActionDispatch::IntegrationTest by default. *Piotr Sarnacki*
|
181
|
-
|
182
|
-
|
183
|
-
## Rails 3.2.5 (Jun 1, 2012) ##
|
184
|
-
|
185
|
-
* No changes.
|
186
|
-
|
187
|
-
|
188
|
-
## Rails 3.2.4 (May 31, 2012) ##
|
189
|
-
|
190
|
-
* Deprecate old APIs for highlight, excerpt and word_wrap *Jeremy Walker*
|
191
|
-
|
192
|
-
* Deprecate `:disable_with` in favor of `'data-disable-with'` option for `button_to`, `button_tag` and `submit_tag` helpers.
|
193
|
-
|
194
|
-
*Carlos Galdino + Rafael Mendonça França*
|
195
|
-
|
196
|
-
* Deprecate `:mouseover` option for `image_tag` helper. *Rafael Mendonça França*
|
197
|
-
|
198
|
-
* Deprecate `button_to_function` and `link_to_function` helpers. *Rafael Mendonça França*
|
199
|
-
|
200
|
-
* Don't break Haml with textarea newline fix. GH #393, #4000, #5190, #5191
|
201
|
-
|
202
|
-
* Fix options handling on labels. GH #2492, #5614
|
203
|
-
|
204
|
-
* Added config.action_view.embed_authenticity_token_in_remote_forms to deal
|
205
|
-
with regression from 16ee611fa
|
206
|
-
|
207
|
-
* Set rendered_format when doing render :inline. GH #5632
|
208
|
-
|
209
|
-
* Fix the redirect when it receive blocks with arity of 1. Closes #5677
|
210
|
-
|
211
|
-
* Strip [nil] from parameters hash. Thanks to Ben Murphy for
|
212
|
-
reporting this! CVE-2012-2660
|
213
|
-
|
214
|
-
|
215
|
-
## Rails 3.2.3 (March 30, 2012) ##
|
216
|
-
|
217
|
-
* Allow to lazy load `default_form_builder` by passing a `String` instead of a constant. *Piotr Sarnacki*
|
218
|
-
|
219
|
-
* Fix #5632, render :inline set the proper rendered format. *Santiago Pastorino*
|
220
|
-
|
221
|
-
* Fix textarea rendering when using plugins like HAML. Such plugins encode the first newline character in the content. This issue was introduced in https://github.com/rails/rails/pull/5191 *James Coleman*
|
222
|
-
|
223
|
-
* Remove the leading \n added by textarea on assert_select. *Santiago Pastorino*
|
224
|
-
|
225
|
-
* Add `config.action_view.embed_authenticity_token_in_remote_forms` (defaults to true) which allows to set if authenticity token will be included by default in remote forms. If you change it to false, you can still force authenticity token by passing `:authenticity_token => true` in form options *Piotr Sarnacki*
|
226
|
-
|
227
|
-
* Do not include the authenticity token in forms where remote: true as ajax forms use the meta-tag value *DHH*
|
228
|
-
|
229
|
-
* Turn off verbose mode of rack-cache, we still have X-Rack-Cache to
|
230
|
-
check that info. Closes #5245. *Santiago Pastorino*
|
231
|
-
|
232
|
-
* Fix #5238, rendered_format is not set when template is not rendered. *Piotr Sarnacki*
|
233
|
-
|
234
|
-
* Upgrade rack-cache to 1.2. *José Valim*
|
235
|
-
|
236
|
-
* ActionController::SessionManagement is deprecated. *Santiago Pastorino*
|
237
|
-
|
238
|
-
* Since the router holds references to many parts of the system like engines, controllers and the application itself, inspecting the route set can actually be really slow, therefore we default alias inspect to to_s. *José Valim*
|
239
|
-
|
240
|
-
* Add a new line after the textarea opening tag. Closes #393 *Rafael Mendonça França*
|
241
|
-
|
242
|
-
* Always pass a respond block from to responder. We should let the responder to decide what to do with the given overridden response block, and not short circuit it. *sikachu*
|
243
|
-
|
244
|
-
* Fixes layout rendering regression from 3.2.2. *José Valim*
|
245
|
-
|
246
|
-
|
247
|
-
## Rails 3.2.2 (March 1, 2012) ##
|
248
|
-
|
249
|
-
* Format lookup for partials is derived from the format in which the template is being rendered. Closes #5025 part 2 *Santiago Pastorino*
|
250
|
-
|
251
|
-
* Use the right format when a partial is missing. Closes #5025. *Santiago Pastorino*
|
252
|
-
|
253
|
-
* Default responder will now always use your overridden block in `respond_with` to render your response. *Prem Sichanugrist*
|
254
|
-
|
255
|
-
* check_box helper with :disabled => true will generate a disabled hidden field to conform with the HTML convention where disabled fields are not submitted with the form.
|
256
|
-
This is a behavior change, previously the hidden tag had a value of the disabled checkbox.
|
257
|
-
*Tadas Tamosauskas*
|
258
|
-
|
259
|
-
|
260
|
-
## Rails 3.2.1 (January 26, 2012) ##
|
261
|
-
|
262
|
-
* Documentation improvements.
|
263
|
-
|
264
|
-
* Allow `form.select` to accept ranges (regression). *Jeremy Walker*
|
265
|
-
|
266
|
-
* `datetime_select` works with -/+ infinity dates. *Joe Van Dyk*
|
267
|
-
|
268
|
-
|
269
|
-
## Rails 3.2.0 (January 20, 2012) ##
|
270
|
-
|
271
|
-
* Setting config.assets.logger to false turn off Sprockets logger *Guillermo Iguaran*
|
272
|
-
|
273
|
-
* Add `config.action_dispatch.default_charset` to configure default charset for ActionDispatch::Response. *Carlos Antonio da Silva*
|
274
|
-
|
275
|
-
* Deprecate setting default charset at controller level, use the new `config.action_dispatch.default_charset` instead. *Carlos Antonio da Silva*
|
276
|
-
|
277
|
-
* Deprecate ActionController::UnknownAction in favour of AbstractController::ActionNotFound. *Carlos Antonio da Silva*
|
278
|
-
|
279
|
-
* Deprecate ActionController::DoubleRenderError in favour of AbstractController::DoubleRenderError. *Carlos Antonio da Silva*
|
280
|
-
|
281
|
-
* Deprecate method_missing handling for not found actions, use action_missing instead. *Carlos Antonio da Silva*
|
282
|
-
|
283
|
-
* Deprecate ActionController#rescue_action, ActionController#initialize_template_class, and ActionController#assign_shortcuts.
|
284
|
-
These methods were not being used internally anymore and are going to be removed in Rails 4. *Carlos Antonio da Silva*
|
285
|
-
|
286
|
-
* Add config.assets.logger to configure Sprockets logger *Rafael França*
|
287
|
-
|
288
|
-
* Use a BodyProxy instead of including a Module that responds to
|
289
|
-
close. Closes #4441 if Active Record is disabled assets are delivered
|
290
|
-
correctly *Santiago Pastorino*
|
291
|
-
|
292
|
-
* Rails initialization with initialize_on_precompile = false should set assets_dir *Santiago Pastorino*
|
293
|
-
|
294
|
-
* Add font_path helper method *Santiago Pastorino*
|
295
|
-
|
296
|
-
* Depends on rack ~> 1.4.0 *Santiago Pastorino*
|
297
|
-
|
298
|
-
* Add :gzip option to `caches_page`. The default option can be configured globally using `page_cache_compression` *Andrey Sitnik*
|
299
|
-
|
300
|
-
* The ShowExceptions middleware now accepts a exceptions application that is responsible to render an exception when the application fails. The application is invoked with a copy of the exception in `env["action_dispatch.exception"]` and with the PATH_INFO rewritten to the status code. *José Valim*
|
301
|
-
|
302
|
-
* Add `button_tag` support to ActionView::Helpers::FormBuilder.
|
303
|
-
|
304
|
-
This support mimics the default behavior of `submit_tag`.
|
305
|
-
|
306
|
-
Example:
|
307
|
-
|
308
|
-
<%= form_for @post do |f| %>
|
309
|
-
<%= f.button %>
|
310
|
-
<% end %>
|
311
|
-
|
312
|
-
* Date helpers accept a new option, `:use_two_digit_numbers = true`, that renders select boxes for months and days with a leading zero without changing the respective values.
|
313
|
-
For example, this is useful for displaying ISO8601-style dates such as '2011-08-01'. *Lennart Fridén and Kim Persson*
|
314
|
-
|
315
|
-
* Make ActiveSupport::Benchmarkable a default module for ActionController::Base, so the #benchmark method is once again available in the controller context like it used to be *DHH*
|
316
|
-
|
317
|
-
* Deprecated implied layout lookup in controllers whose parent had a explicit layout set:
|
318
|
-
|
319
|
-
class ApplicationController
|
320
|
-
layout "application"
|
321
|
-
end
|
322
|
-
|
323
|
-
class PostsController < ApplicationController
|
324
|
-
end
|
325
|
-
|
326
|
-
In the example above, Posts controller will no longer automatically look up for a posts layout.
|
327
|
-
|
328
|
-
If you need this functionality you could either remove `layout "application"` from ApplicationController or explicitly set it to nil in PostsController. *José Valim*
|
329
|
-
|
330
|
-
* Rails will now use your default layout (such as "layouts/application") when you specify a layout with `:only` and `:except` condition, and those conditions fail. *Prem Sichanugrist*
|
331
|
-
|
332
|
-
For example, consider this snippet:
|
333
|
-
|
334
|
-
class CarsController
|
335
|
-
layout 'single_car', :only => :show
|
336
|
-
end
|
337
|
-
|
338
|
-
Rails will use 'layouts/single_car' when a request comes in `:show` action, and use 'layouts/application' (or 'layouts/cars', if exists) when a request comes in for any other actions.
|
339
|
-
|
340
|
-
* form_for with +:as+ option uses "#{action}_#{as}" as css class and id:
|
341
|
-
|
342
|
-
Before:
|
343
|
-
|
344
|
-
form_for(@user, :as => 'client') # => "<form class="client_new">..."
|
345
|
-
|
346
|
-
Now:
|
347
|
-
|
348
|
-
form_for(@user, :as => 'client') # => "<form class="new_client">..."
|
349
|
-
|
350
|
-
*Vasiliy Ermolovich*
|
351
|
-
|
352
|
-
* Allow rescue responses to be configured through a railtie as in `config.action_dispatch.rescue_responses`. Please look at ActiveRecord::Railtie for an example *José Valim*
|
353
|
-
|
354
|
-
* Allow fresh_when/stale? to take a record instead of an options hash *DHH*
|
355
|
-
|
356
|
-
* Assets should use the request protocol by default or default to relative if no request is available *Jonathan del Strother*
|
357
|
-
|
358
|
-
* Log "Filter chain halted as CALLBACKNAME rendered or redirected" every time a before callback halts *José Valim*
|
359
|
-
|
360
|
-
* You can provide a namespace for your form to ensure uniqueness of id attributes on form elements.
|
361
|
-
The namespace attribute will be prefixed with underscore on the generate HTML id. *Vasiliy Ermolovich*
|
362
|
-
|
363
|
-
Example:
|
364
|
-
|
365
|
-
<%= form_for(@offer, :namespace => 'namespace') do |f| %>
|
366
|
-
<%= f.label :version, 'Version' %>:
|
367
|
-
<%= f.text_field :version %>
|
368
|
-
<% end %>
|
369
|
-
|
370
|
-
* Refactor ActionDispatch::ShowExceptions. The controller is responsible for choosing to show exceptions when `consider_all_requests_local` is false.
|
371
|
-
|
372
|
-
It's possible to override `show_detailed_exceptions?` in controllers to specify which requests should provide debugging information on errors. The default value is now false, meaning local requests in production will no longer show the detailed exceptions page unless `show_detailed_exceptions?` is overridden and set to `request.local?`.
|
373
|
-
|
374
|
-
* Responders now return 204 No Content for API requests without a response body (as in the new scaffold) *José Valim*
|
375
|
-
|
376
|
-
* Added ActionDispatch::RequestId middleware that'll make a unique X-Request-Id header available to the response and enables the ActionDispatch::Request#uuid method. This makes it easy to trace requests from end-to-end in the stack and to identify individual requests in mixed logs like Syslog *DHH*
|
377
|
-
|
378
|
-
* Limit the number of options for select_year to 1000.
|
379
|
-
|
380
|
-
Pass the :max_years_allowed option to set your own limit.
|
381
|
-
|
382
|
-
*Libo Cannici*
|
383
|
-
|
384
|
-
* Passing formats or handlers to render :template and friends is deprecated. For example: *Nick Sutterer & José Valim*
|
385
|
-
|
386
|
-
render :template => "foo.html.erb"
|
387
|
-
|
388
|
-
Instead, you can provide :handlers and :formats directly as option:
|
389
|
-
render :template => "foo", :formats => [:html, :js], :handlers => :erb
|
390
|
-
|
391
|
-
* Changed log level of warning for missing CSRF token from :debug to :warn. *Mike Dillon*
|
392
|
-
|
393
|
-
* content_tag_for and div_for can now take the collection of records. It will also yield the record as the first argument if you set a receiving argument in your block *Prem Sichanugrist*
|
394
|
-
|
395
|
-
So instead of having to do this:
|
396
|
-
|
397
|
-
@items.each do |item|
|
398
|
-
content_tag_for(:li, item) do
|
399
|
-
Title: <%= item.title %>
|
400
|
-
end
|
401
|
-
end
|
402
|
-
|
403
|
-
You can now do this:
|
404
|
-
|
405
|
-
content_tag_for(:li, @items) do |item|
|
406
|
-
Title: <%= item.title %>
|
407
|
-
end
|
408
|
-
|
409
|
-
* send_file now guess the mime type *Esad Hajdarevic*
|
410
|
-
|
411
|
-
* Mime type entries for PDF, ZIP and other formats were added *Esad Hajdarevic*
|
412
|
-
|
413
|
-
* Generate hidden input before select with :multiple option set to true.
|
414
|
-
This is useful when you rely on the fact that when no options is set,
|
415
|
-
the state of select will be sent to rails application. Without hidden field
|
416
|
-
nothing is sent according to HTML spec *Bogdan Gusiev*
|
417
|
-
|
418
|
-
* Refactor ActionController::TestCase cookies *Andrew White*
|
419
|
-
|
420
|
-
Assigning cookies for test cases should now use cookies[], e.g:
|
421
|
-
|
422
|
-
cookies[:email] = 'user@example.com'
|
423
|
-
get :index
|
424
|
-
assert_equal 'user@example.com', cookies[:email]
|
425
|
-
|
426
|
-
To clear the cookies, use clear, e.g:
|
427
|
-
|
428
|
-
cookies.clear
|
429
|
-
get :index
|
430
|
-
assert_nil cookies[:email]
|
431
|
-
|
432
|
-
We now no longer write out HTTP_COOKIE and the cookie jar is
|
433
|
-
persistent between requests so if you need to manipulate the environment
|
434
|
-
for your test you need to do it before the cookie jar is created.
|
435
|
-
|
436
|
-
* ActionController::ParamsWrapper on ActiveRecord models now only wrap
|
437
|
-
attr_accessible attributes if they were set, if not, only the attributes
|
438
|
-
returned by the class method attribute_names will be wrapped. This fixes
|
439
|
-
the wrapping of nested attributes by adding them to attr_accessible.
|
440
|
-
|
441
|
-
Please check [3-1-stable](https://github.com/rails/rails/blob/3-1-stable/actionpack/CHANGELOG.md) for previous changes.
|