classiccms 0.2.4.pre → 0.3.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +1 -0
- data/README.md +11 -19
- data/classiccms.gemspec +10 -1
- data/lib/classiccms/application.rb +33 -3
- data/lib/classiccms/cli.rb +4 -10
- data/lib/classiccms/controllers/application.rb +4 -3
- data/lib/classiccms/controllers/cms.rb +36 -20
- data/lib/classiccms/controllers/website.rb +13 -5
- data/lib/classiccms/custom.rb +16 -0
- data/lib/classiccms/helpers.rb +20 -8
- data/lib/classiccms/lib/routing.rb +1 -1
- data/lib/classiccms/models/base.rb +14 -0
- data/lib/classiccms/models/image.rb +9 -0
- data/lib/classiccms/models/uploader.rb +17 -0
- data/lib/classiccms/public/css/images.sass +20 -0
- data/lib/classiccms/public/css/style.sass +115 -5
- data/lib/classiccms/public/images/image_delete.png +0 -0
- data/lib/classiccms/public/images/logout.png +0 -0
- data/lib/classiccms/public/images/logout_hover.png +0 -0
- data/lib/classiccms/public/js/images.coffee +46 -0
- data/lib/classiccms/public/js/index.coffee +61 -109
- data/lib/classiccms/public/js/uploadify/jquery.uploadify-3.1.js +975 -0
- data/lib/classiccms/public/js/uploadify/jquery.uploadify-3.1.min.js +16 -0
- data/lib/classiccms/public/js/uploadify/uploadify-cancel.png +0 -0
- data/lib/classiccms/public/js/uploadify/uploadify.css +88 -0
- data/lib/classiccms/public/js/uploadify/uploadify.swf +0 -0
- data/lib/classiccms/resque.yml +3 -0
- data/lib/classiccms/scaffold/Gemfile +2 -0
- data/lib/classiccms/scaffold/Rakefile +9 -0
- data/lib/classiccms/scaffold/app/controllers/form.rb +9 -0
- data/lib/classiccms/scaffold/app/models/Article.rb +4 -0
- data/lib/classiccms/scaffold/app/queue/mail.rb +11 -0
- data/lib/classiccms/scaffold/app/views/application/index.haml +16 -0
- data/lib/classiccms/scaffold/config/application.rb +2 -1
- data/lib/classiccms/scaffold/config/config.yml +1 -0
- data/lib/classiccms/scaffold/config.ru +7 -7
- data/lib/classiccms/scaffold/public/favicon.ico +0 -0
- data/lib/classiccms/scaffold/public/javascripts/index.coffee +1 -0
- data/lib/classiccms/scaffold/public/stylesheets/reset.sass +47 -0
- data/lib/classiccms/version.rb +1 -1
- data/lib/classiccms/views/cms/404.haml +16 -0
- data/lib/classiccms/views/cms/browse.haml +3 -0
- data/lib/classiccms/views/cms/ckeditor.haml +23 -0
- data/lib/classiccms/views/cms/form.haml +27 -24
- data/lib/classiccms/views/cms/header.haml +12 -7
- data/lib/classiccms/views/cms/images.haml +5 -0
- data/lib/classiccms/views/cms/login.haml +2 -1
- data/lib/classiccms/views/cms/logout.haml +1 -0
- data/lib/classiccms.rb +2 -2
- data/spec/assets/cat.jpg +0 -0
- data/spec/assets/cat.txt +1 -0
- data/spec/cli_spec.rb +8 -20
- data/spec/controllers/appliction_spec.rb +4 -4
- data/spec/controllers/cms_spec.rb +42 -19
- data/spec/controllers/website_spec.rb +24 -16
- data/spec/helpers_spec.rb +21 -10
- data/spec/methods.rb +4 -3
- data/spec/models/base_spec.rb +14 -0
- data/spec/models/connection_spec.rb +13 -1
- data/spec/models/image_spec.rb +28 -0
- data/spec/models/slug_spec.rb +13 -1
- data/spec/models/user_spec.rb +12 -1
- data/spec/queue_spec.rb +50 -0
- data/spec/spec_helper.rb +2 -1
- data/vendor/bundle/bin/classiccms +3 -3
- data/vendor/bundle/bin/resque +19 -0
- data/vendor/bundle/bin/resque-web +19 -0
- data/vendor/bundle/bin/tt +19 -0
- data/vendor/bundle/gems/carrierwave-0.6.2/README.md +785 -0
- data/vendor/bundle/gems/carrierwave-0.6.2/lib/carrierwave/compatibility/paperclip.rb +95 -0
- data/vendor/bundle/gems/carrierwave-0.6.2/lib/carrierwave/locale/en.yml +9 -0
- data/vendor/bundle/gems/carrierwave-0.6.2/lib/carrierwave/mount.rb +382 -0
- data/vendor/bundle/gems/carrierwave-0.6.2/lib/carrierwave/orm/activerecord.rb +66 -0
- data/vendor/bundle/gems/carrierwave-0.6.2/lib/carrierwave/processing/mime_types.rb +58 -0
- data/vendor/bundle/gems/carrierwave-0.6.2/lib/carrierwave/processing/mini_magick.rb +254 -0
- data/vendor/bundle/gems/carrierwave-0.6.2/lib/carrierwave/processing/rmagick.rb +284 -0
- data/vendor/bundle/gems/carrierwave-0.6.2/lib/carrierwave/sanitized_file.rb +315 -0
- data/vendor/bundle/gems/carrierwave-0.6.2/lib/carrierwave/storage/abstract.rb +30 -0
- data/vendor/bundle/gems/carrierwave-0.6.2/lib/carrierwave/storage/file.rb +56 -0
- data/vendor/bundle/gems/carrierwave-0.6.2/lib/carrierwave/storage/fog.rb +358 -0
- data/vendor/bundle/gems/carrierwave-0.6.2/lib/carrierwave/test/matchers.rb +241 -0
- data/vendor/bundle/gems/carrierwave-0.6.2/lib/carrierwave/uploader/cache.rb +169 -0
- data/vendor/bundle/gems/carrierwave-0.6.2/lib/carrierwave/uploader/callbacks.rb +35 -0
- data/vendor/bundle/gems/carrierwave-0.6.2/lib/carrierwave/uploader/configuration.rb +136 -0
- data/vendor/bundle/gems/carrierwave-0.6.2/lib/carrierwave/uploader/default_url.rb +19 -0
- data/vendor/bundle/gems/carrierwave-0.6.2/lib/carrierwave/uploader/download.rb +75 -0
- data/vendor/bundle/gems/carrierwave-0.6.2/lib/carrierwave/uploader/extension_whitelist.rb +49 -0
- data/vendor/bundle/gems/carrierwave-0.6.2/lib/carrierwave/uploader/mountable.rb +39 -0
- data/vendor/bundle/gems/carrierwave-0.6.2/lib/carrierwave/uploader/processing.rb +92 -0
- data/vendor/bundle/gems/carrierwave-0.6.2/lib/carrierwave/uploader/proxy.rb +77 -0
- data/vendor/bundle/gems/carrierwave-0.6.2/lib/carrierwave/uploader/remove.rb +23 -0
- data/vendor/bundle/gems/carrierwave-0.6.2/lib/carrierwave/uploader/serialization.rb +30 -0
- data/vendor/bundle/gems/carrierwave-0.6.2/lib/carrierwave/uploader/store.rb +111 -0
- data/vendor/bundle/gems/carrierwave-0.6.2/lib/carrierwave/uploader/url.rb +32 -0
- data/vendor/bundle/gems/carrierwave-0.6.2/lib/carrierwave/uploader/versions.rb +254 -0
- data/vendor/bundle/gems/carrierwave-0.6.2/lib/carrierwave/uploader.rb +45 -0
- data/vendor/bundle/gems/carrierwave-0.6.2/lib/carrierwave/validations/active_model.rb +63 -0
- data/vendor/bundle/gems/carrierwave-0.6.2/lib/carrierwave/version.rb +3 -0
- data/vendor/bundle/gems/carrierwave-0.6.2/lib/carrierwave.rb +111 -0
- data/vendor/bundle/gems/carrierwave-0.6.2/lib/generators/templates/uploader.rb +55 -0
- data/vendor/bundle/gems/carrierwave-0.6.2/lib/generators/uploader_generator.rb +7 -0
- data/vendor/bundle/gems/carrierwave-mongoid-0.2.1/.gitignore +7 -0
- data/vendor/bundle/gems/carrierwave-mongoid-0.2.1/Gemfile +4 -0
- data/vendor/bundle/gems/carrierwave-mongoid-0.2.1/LICENSE +20 -0
- data/vendor/bundle/gems/carrierwave-mongoid-0.2.1/README.md +102 -0
- data/vendor/bundle/gems/carrierwave-mongoid-0.2.1/Rakefile +12 -0
- data/vendor/bundle/gems/carrierwave-mongoid-0.2.1/carrierwave-mongoid.gemspec +28 -0
- data/vendor/bundle/gems/carrierwave-mongoid-0.2.1/lib/carrierwave/mongoid/version.rb +5 -0
- data/vendor/bundle/gems/carrierwave-mongoid-0.2.1/lib/carrierwave/mongoid.rb +94 -0
- data/vendor/bundle/gems/carrierwave-mongoid-0.2.1/lib/carrierwave/storage/grid_fs.rb +134 -0
- data/vendor/bundle/gems/carrierwave-mongoid-0.2.1/spec/fixtures/new.jpeg +1 -0
- data/vendor/bundle/gems/carrierwave-mongoid-0.2.1/spec/fixtures/new.txt +1 -0
- data/vendor/bundle/gems/carrierwave-mongoid-0.2.1/spec/fixtures/old.jpeg +1 -0
- data/vendor/bundle/gems/carrierwave-mongoid-0.2.1/spec/fixtures/old.txt +1 -0
- data/vendor/bundle/gems/carrierwave-mongoid-0.2.1/spec/fixtures/portrait.jpg +0 -0
- data/vendor/bundle/gems/carrierwave-mongoid-0.2.1/spec/fixtures/test.jpeg +1 -0
- data/vendor/bundle/gems/carrierwave-mongoid-0.2.1/spec/fixtures/test.jpg +1 -0
- data/vendor/bundle/gems/carrierwave-mongoid-0.2.1/spec/mongoid_spec.rb +754 -0
- data/vendor/bundle/gems/carrierwave-mongoid-0.2.1/spec/spec_helper.rb +67 -0
- data/vendor/bundle/gems/carrierwave-mongoid-0.2.1/spec/storage/grid_fs_spec.rb +200 -0
- data/vendor/bundle/gems/coffee-script-source-1.3.3/lib/coffee_script/coffee-script.js +8 -0
- data/vendor/bundle/gems/coffee-script-source-1.3.3/lib/coffee_script/source.rb +7 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/.yardopts +29 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/Gemfile +31 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/History.md +485 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/LICENSE +20 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/README.md +130 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/Rakefile +49 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/VERSION +1 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/config.ru +14 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/docs.watchr +1 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/dragonfly.gemspec +311 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/extra_docs/Analysers.md +68 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/extra_docs/Caching.md +23 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/extra_docs/Configuration.md +149 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/extra_docs/Couch.md +49 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/extra_docs/DataStorage.md +226 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/extra_docs/Encoding.md +67 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/extra_docs/ExampleUseCases.md +116 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/extra_docs/GeneralUsage.md +105 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/extra_docs/Generators.md +68 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/extra_docs/Heroku.md +57 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/extra_docs/ImageMagick.md +136 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/extra_docs/Index.md +33 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/extra_docs/MimeTypes.md +40 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/extra_docs/Models.md +441 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/extra_docs/Mongo.md +42 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/extra_docs/Processing.md +77 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/extra_docs/Rack.md +52 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/extra_docs/Rails2.md +57 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/extra_docs/Rails3.md +56 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/extra_docs/ServingRemotely.md +104 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/extra_docs/Sinatra.md +25 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/extra_docs/URLs.md +203 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/features/images.feature +47 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/features/no_processing.feature +14 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/features/rails.feature +8 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/features/steps/common_steps.rb +8 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/features/steps/dragonfly_steps.rb +66 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/features/steps/rails_steps.rb +40 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/features/support/env.rb +13 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/features/support/setup.rb +41 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/fixtures/rails/files/app/models/album.rb +5 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/fixtures/rails/files/app/views/albums/new.html.erb +7 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/fixtures/rails/files/app/views/albums/show.html.erb +6 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/fixtures/rails/files/config/initializers/dragonfly.rb +4 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/fixtures/rails/files/features/manage_album_images.feature +38 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/fixtures/rails/files/features/step_definitions/helper_steps.rb +7 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/fixtures/rails/files/features/step_definitions/image_steps.rb +25 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/fixtures/rails/files/features/support/paths.rb +17 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/fixtures/rails/files/features/text_images.feature +7 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/fixtures/rails/template.rb +20 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/irbrc.rb +19 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/lib/dragonfly/active_model_extensions/attachment.rb +279 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/lib/dragonfly/active_model_extensions/attachment_class_methods.rb +144 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/lib/dragonfly/active_model_extensions/class_methods.rb +98 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/lib/dragonfly/active_model_extensions/instance_methods.rb +28 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/lib/dragonfly/active_model_extensions/validations.rb +68 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/lib/dragonfly/active_model_extensions.rb +13 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/lib/dragonfly/analyser.rb +58 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/lib/dragonfly/analysis/file_command_analyser.rb +33 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/lib/dragonfly/analysis/image_magick_analyser.rb +6 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/lib/dragonfly/app.rb +203 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/lib/dragonfly/config/heroku.rb +26 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/lib/dragonfly/config/image_magick.rb +6 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/lib/dragonfly/config/rails.rb +20 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/lib/dragonfly/configurable.rb +206 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/lib/dragonfly/cookie_monster.rb +15 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/lib/dragonfly/core_ext/array.rb +7 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/lib/dragonfly/core_ext/hash.rb +7 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/lib/dragonfly/core_ext/object.rb +12 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/lib/dragonfly/data_storage/couch_data_store.rb +83 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/lib/dragonfly/data_storage/file_data_store.rb +144 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/lib/dragonfly/data_storage/mongo_data_store.rb +96 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/lib/dragonfly/data_storage/s3data_store.rb +168 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/lib/dragonfly/data_storage.rb +11 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/lib/dragonfly/encoder.rb +13 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/lib/dragonfly/encoding/image_magick_encoder.rb +6 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/lib/dragonfly/function_manager.rb +67 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/lib/dragonfly/generation/image_magick_generator.rb +6 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/lib/dragonfly/generator.rb +9 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/lib/dragonfly/has_filename.rb +24 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/lib/dragonfly/hash_with_css_style_keys.rb +21 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/lib/dragonfly/image_magick/analyser.rb +53 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/lib/dragonfly/image_magick/config.rb +44 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/lib/dragonfly/image_magick/encoder.rb +57 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/lib/dragonfly/image_magick/generator.rb +145 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/lib/dragonfly/image_magick/processor.rb +108 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/lib/dragonfly/image_magick/utils.rb +46 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/lib/dragonfly/image_magick_utils.rb +4 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/lib/dragonfly/job.rb +427 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/lib/dragonfly/job_builder.rb +39 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/lib/dragonfly/job_definitions.rb +30 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/lib/dragonfly/job_endpoint.rb +19 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/lib/dragonfly/loggable.rb +28 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/lib/dragonfly/middleware.rb +20 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/lib/dragonfly/processing/image_magick_processor.rb +6 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/lib/dragonfly/processor.rb +9 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/lib/dragonfly/rails/images.rb +32 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/lib/dragonfly/railtie.rb +10 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/lib/dragonfly/response.rb +107 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/lib/dragonfly/routed_endpoint.rb +44 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/lib/dragonfly/serializer.rb +32 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/lib/dragonfly/server.rb +120 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/lib/dragonfly/shell.rb +44 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/lib/dragonfly/simple_cache.rb +23 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/lib/dragonfly/temp_object.rb +216 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/lib/dragonfly/url_attributes.rb +30 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/lib/dragonfly/url_mapper.rb +78 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/lib/dragonfly.rb +59 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/samples/DSC02119.JPG +0 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/samples/a.jp2 +0 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/samples/beach.jpg +0 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/samples/beach.png +0 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/samples/egg.png +0 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/samples/round.gif +0 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/samples/sample.docx +0 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/samples/taj.jpg +0 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/samples/white pixel.png +0 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/spec/dragonfly/active_model_extensions/model_spec.rb +1478 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/spec/dragonfly/active_model_extensions/spec_helper.rb +95 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/spec/dragonfly/analyser_spec.rb +123 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/spec/dragonfly/analysis/file_command_analyser_spec.rb +49 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/spec/dragonfly/app_spec.rb +173 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/spec/dragonfly/configurable_spec.rb +479 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/spec/dragonfly/cookie_monster_spec.rb +29 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/spec/dragonfly/core_ext/array_spec.rb +19 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/spec/dragonfly/core_ext/hash_spec.rb +19 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/spec/dragonfly/data_storage/couch_data_store_spec.rb +84 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/spec/dragonfly/data_storage/file_data_store_spec.rb +308 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/spec/dragonfly/data_storage/mongo_data_store_spec.rb +81 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/spec/dragonfly/data_storage/s3_data_store_spec.rb +277 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/spec/dragonfly/data_storage/shared_data_store_examples.rb +77 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/spec/dragonfly/function_manager_spec.rb +154 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/spec/dragonfly/has_filename_spec.rb +88 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/spec/dragonfly/hash_with_css_style_keys_spec.rb +24 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/spec/dragonfly/image_magick/analyser_spec.rb +78 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/spec/dragonfly/image_magick/encoder_spec.rb +41 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/spec/dragonfly/image_magick/generator_spec.rb +167 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/spec/dragonfly/image_magick/processor_spec.rb +293 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/spec/dragonfly/job_builder_spec.rb +37 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/spec/dragonfly/job_definitions_spec.rb +57 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/spec/dragonfly/job_endpoint_spec.rb +235 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/spec/dragonfly/job_spec.rb +1059 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/spec/dragonfly/loggable_spec.rb +80 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/spec/dragonfly/middleware_spec.rb +47 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/spec/dragonfly/routed_endpoint_spec.rb +52 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/spec/dragonfly/serializer_spec.rb +75 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/spec/dragonfly/server_spec.rb +286 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/spec/dragonfly/shell_spec.rb +34 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/spec/dragonfly/simple_cache_spec.rb +27 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/spec/dragonfly/temp_object_spec.rb +442 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/spec/dragonfly/url_attributes.rb +47 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/spec/dragonfly/url_mapper_spec.rb +138 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/spec/functional/deprecations_spec.rb +51 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/spec/functional/image_magick_app_spec.rb +27 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/spec/functional/model_urls_spec.rb +120 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/spec/functional/remote_on_the_fly_spec.rb +51 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/spec/functional/shell_commands_spec.rb +23 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/spec/functional/to_response_spec.rb +31 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/spec/spec_helper.rb +55 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/spec/support/argument_matchers.rb +19 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/spec/support/image_matchers.rb +58 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/spec/support/simple_matchers.rb +53 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/spec/test_imagemagick.ru +49 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/yard/handlers/configurable_attr_handler.rb +38 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/yard/setup.rb +15 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/yard/templates/default/fulldoc/html/css/common.css +109 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/yard/templates/default/layout/html/layout.erb +93 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/yard/templates/default/module/html/configuration_summary.erb +31 -0
- data/vendor/bundle/gems/dragonfly-0.9.12/yard/templates/default/module/setup.rb +17 -0
- data/vendor/bundle/gems/execjs-1.4.0/LICENSE +21 -0
- data/vendor/bundle/gems/execjs-1.4.0/README.md +42 -0
- data/vendor/bundle/gems/execjs-1.4.0/lib/execjs/disabled_runtime.rb +29 -0
- data/vendor/bundle/gems/execjs-1.4.0/lib/execjs/encoding.rb +33 -0
- data/vendor/bundle/gems/execjs-1.4.0/lib/execjs/external_runtime.rb +205 -0
- data/vendor/bundle/gems/execjs-1.4.0/lib/execjs/johnson_runtime.rb +106 -0
- data/vendor/bundle/gems/execjs-1.4.0/lib/execjs/json.rb +23 -0
- data/vendor/bundle/gems/execjs-1.4.0/lib/execjs/module.rb +38 -0
- data/vendor/bundle/gems/execjs-1.4.0/lib/execjs/mustang_runtime.rb +76 -0
- data/vendor/bundle/gems/execjs-1.4.0/lib/execjs/ruby_racer_runtime.rb +105 -0
- data/vendor/bundle/gems/execjs-1.4.0/lib/execjs/ruby_rhino_runtime.rb +89 -0
- data/vendor/bundle/gems/execjs-1.4.0/lib/execjs/runtime.rb +55 -0
- data/vendor/bundle/gems/execjs-1.4.0/lib/execjs/runtimes.rb +94 -0
- data/vendor/bundle/gems/execjs-1.4.0/lib/execjs/support/jsc_runner.js +19 -0
- data/vendor/bundle/gems/execjs-1.4.0/lib/execjs/support/jscript_runner.js +22 -0
- data/vendor/bundle/gems/execjs-1.4.0/lib/execjs/support/json2.js +481 -0
- data/vendor/bundle/gems/execjs-1.4.0/lib/execjs/support/node_runner.js +20 -0
- data/vendor/bundle/gems/execjs-1.4.0/lib/execjs/support/spidermonkey_runner.js +19 -0
- data/vendor/bundle/gems/execjs-1.4.0/lib/execjs/version.rb +3 -0
- data/vendor/bundle/gems/execjs-1.4.0/lib/execjs.rb +6 -0
- data/vendor/bundle/gems/haml-3.1.6/.yardopts +11 -0
- data/vendor/bundle/gems/haml-3.1.6/CONTRIBUTING +3 -0
- data/vendor/bundle/gems/haml-3.1.6/MIT-LICENSE +20 -0
- data/vendor/bundle/gems/haml-3.1.6/README.md +133 -0
- data/vendor/bundle/gems/haml-3.1.6/REVISION +1 -0
- data/vendor/bundle/gems/haml-3.1.6/Rakefile +419 -0
- data/vendor/bundle/gems/haml-3.1.6/VERSION +1 -0
- data/vendor/bundle/gems/haml-3.1.6/VERSION_NAME +1 -0
- data/vendor/bundle/gems/haml-3.1.6/bin/haml +9 -0
- data/vendor/bundle/gems/haml-3.1.6/bin/html2haml +7 -0
- data/vendor/bundle/gems/haml-3.1.6/extra/update_watch.rb +13 -0
- data/vendor/bundle/gems/haml-3.1.6/init.rb +18 -0
- data/vendor/bundle/gems/haml-3.1.6/lib/haml/buffer.rb +301 -0
- data/vendor/bundle/gems/haml-3.1.6/lib/haml/compiler.rb +452 -0
- data/vendor/bundle/gems/haml-3.1.6/lib/haml/engine.rb +312 -0
- data/vendor/bundle/gems/haml-3.1.6/lib/haml/error.rb +22 -0
- data/vendor/bundle/gems/haml-3.1.6/lib/haml/exec.rb +362 -0
- data/vendor/bundle/gems/haml-3.1.6/lib/haml/filters.rb +385 -0
- data/vendor/bundle/gems/haml-3.1.6/lib/haml/helpers/action_view_extensions.rb +57 -0
- data/vendor/bundle/gems/haml-3.1.6/lib/haml/helpers/action_view_mods.rb +260 -0
- data/vendor/bundle/gems/haml-3.1.6/lib/haml/helpers/rails_323_textarea_fix.rb +41 -0
- data/vendor/bundle/gems/haml-3.1.6/lib/haml/helpers/xss_mods.rb +165 -0
- data/vendor/bundle/gems/haml-3.1.6/lib/haml/helpers.rb +608 -0
- data/vendor/bundle/gems/haml-3.1.6/lib/haml/html/erb.rb +141 -0
- data/vendor/bundle/gems/haml-3.1.6/lib/haml/html.rb +412 -0
- data/vendor/bundle/gems/haml-3.1.6/lib/haml/parser.rb +711 -0
- data/vendor/bundle/gems/haml-3.1.6/lib/haml/railtie.rb +19 -0
- data/vendor/bundle/gems/haml-3.1.6/lib/haml/root.rb +7 -0
- data/vendor/bundle/gems/haml-3.1.6/lib/haml/shared.rb +78 -0
- data/vendor/bundle/gems/haml-3.1.6/lib/haml/template/options.rb +16 -0
- data/vendor/bundle/gems/haml-3.1.6/lib/haml/template/patch.rb +58 -0
- data/vendor/bundle/gems/haml-3.1.6/lib/haml/template/plugin.rb +123 -0
- data/vendor/bundle/gems/haml-3.1.6/lib/haml/template.rb +99 -0
- data/vendor/bundle/gems/haml-3.1.6/lib/haml/util.rb +842 -0
- data/vendor/bundle/gems/haml-3.1.6/lib/haml/version.rb +109 -0
- data/vendor/bundle/gems/haml-3.1.6/lib/haml.rb +47 -0
- data/vendor/bundle/gems/haml-3.1.6/lib/sass/plugin.rb +10 -0
- data/vendor/bundle/gems/haml-3.1.6/lib/sass/rails2_shim.rb +9 -0
- data/vendor/bundle/gems/haml-3.1.6/lib/sass/rails3_shim.rb +16 -0
- data/vendor/bundle/gems/haml-3.1.6/lib/sass.rb +8 -0
- data/vendor/bundle/gems/haml-3.1.6/rails/init.rb +1 -0
- data/vendor/bundle/gems/haml-3.1.6/test/benchmark.rb +91 -0
- data/vendor/bundle/gems/haml-3.1.6/test/gemfiles/Gemfile.rails-2.0.x +8 -0
- data/vendor/bundle/gems/haml-3.1.6/test/gemfiles/Gemfile.rails-2.0.x.lock +38 -0
- data/vendor/bundle/gems/haml-3.1.6/test/gemfiles/Gemfile.rails-2.1.x +8 -0
- data/vendor/bundle/gems/haml-3.1.6/test/gemfiles/Gemfile.rails-2.1.x.lock +38 -0
- data/vendor/bundle/gems/haml-3.1.6/test/gemfiles/Gemfile.rails-2.2.x +8 -0
- data/vendor/bundle/gems/haml-3.1.6/test/gemfiles/Gemfile.rails-2.2.x.lock +38 -0
- data/vendor/bundle/gems/haml-3.1.6/test/gemfiles/Gemfile.rails-2.3.x +8 -0
- data/vendor/bundle/gems/haml-3.1.6/test/gemfiles/Gemfile.rails-2.3.x.lock +40 -0
- data/vendor/bundle/gems/haml-3.1.6/test/gemfiles/Gemfile.rails-3.0.x +8 -0
- data/vendor/bundle/gems/haml-3.1.6/test/gemfiles/Gemfile.rails-3.0.x.lock +85 -0
- data/vendor/bundle/gems/haml-3.1.6/test/gemfiles/Gemfile.rails-3.1.x +8 -0
- data/vendor/bundle/gems/haml-3.1.6/test/gemfiles/Gemfile.rails-3.1.x.lock +97 -0
- data/vendor/bundle/gems/haml-3.1.6/test/gemfiles/Gemfile.rails-3.2.x +8 -0
- data/vendor/bundle/gems/haml-3.1.6/test/gemfiles/Gemfile.rails-3.2.x.lock +95 -0
- data/vendor/bundle/gems/haml-3.1.6/test/gemfiles/Gemfile.rails-xss-2.3.x +9 -0
- data/vendor/bundle/gems/haml-3.1.6/test/gemfiles/Gemfile.rails-xss-2.3.x.lock +42 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/engine_test.rb +1944 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/erb/_av_partial_1.erb +12 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/erb/_av_partial_2.erb +8 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/erb/action_view.erb +62 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/erb/standard.erb +55 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/helper_test.rb +467 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/html2haml/erb_tests.rb +440 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/html2haml_test.rb +336 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/markaby/standard.mab +52 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/mocks/article.rb +6 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/results/content_for_layout.xhtml +12 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/results/eval_suppressed.xhtml +9 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/results/filters.xhtml +62 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/results/helpers.xhtml +70 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/results/helpful.xhtml +10 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/results/just_stuff.xhtml +70 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/results/list.xhtml +12 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/results/nuke_inner_whitespace.xhtml +40 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/results/nuke_outer_whitespace.xhtml +148 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/results/original_engine.xhtml +20 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/results/partial_layout.xhtml +5 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/results/partials.xhtml +21 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/results/render_layout.xhtml +3 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/results/silent_script.xhtml +74 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/results/standard.xhtml +162 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/results/tag_parsing.xhtml +23 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/results/very_basic.xhtml +5 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/results/whitespace_handling.xhtml +85 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/spec/README.md +97 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/spec/lua_haml_spec.lua +30 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/spec/ruby_haml_test.rb +19 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/spec/tests.json +534 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/spec_test.rb +44 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/template_test.rb +443 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/templates/_av_partial_1.haml +9 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/templates/_av_partial_1_ugly.haml +9 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/templates/_av_partial_2.haml +5 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/templates/_av_partial_2_ugly.haml +5 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/templates/_layout.erb +3 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/templates/_layout_for_partial.haml +3 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/templates/_partial.haml +8 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/templates/_text_area.haml +3 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/templates/action_view.haml +47 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/templates/action_view_ugly.haml +47 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/templates/breakage.haml +8 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/templates/content_for_layout.haml +8 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/templates/eval_suppressed.haml +11 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/templates/filters.haml +66 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/templates/helpers.haml +55 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/templates/helpful.haml +11 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/templates/just_stuff.haml +85 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/templates/list.haml +12 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/templates/nuke_inner_whitespace.haml +32 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/templates/nuke_outer_whitespace.haml +144 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/templates/original_engine.haml +17 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/templates/partial_layout.haml +10 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/templates/partialize.haml +1 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/templates/partials.haml +12 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/templates/render_layout.haml +2 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/templates/silent_script.haml +40 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/templates/standard.haml +43 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/templates/standard_ugly.haml +43 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/templates/tag_parsing.haml +21 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/templates/very_basic.haml +4 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/templates/whitespace_handling.haml +87 -0
- data/vendor/bundle/gems/haml-3.1.6/test/haml/util_test.rb +300 -0
- data/vendor/bundle/gems/haml-3.1.6/test/linked_rails.rb +42 -0
- data/vendor/bundle/gems/haml-3.1.6/test/test_helper.rb +75 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/CONTRIBUTING +3 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/MIT-LICENSE +20 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/README.md +201 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/Rakefile +339 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/TODO +39 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/VERSION +1 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/VERSION_NAME +1 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/bin/sass +8 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/bin/sass-convert +7 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/bin/scss +8 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/doc-src/FAQ.md +35 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/doc-src/INDENTED_SYNTAX.md +210 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/doc-src/SASS_CHANGELOG.md +2327 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/doc-src/SASS_REFERENCE.md +1965 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/doc-src/SCSS_FOR_SASS_USERS.md +155 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/ext/extconf.rb +10 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/extra/update_watch.rb +13 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/init.rb +18 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/cache_stores/base.rb +86 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/cache_stores/chain.rb +33 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/cache_stores/filesystem.rb +60 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/cache_stores/memory.rb +47 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/cache_stores/null.rb +25 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/cache_stores.rb +15 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/callbacks.rb +66 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/css.rb +295 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/engine.rb +878 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/environment.rb +166 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/error.rb +201 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/exec.rb +672 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/importers/base.rb +139 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/importers/filesystem.rb +149 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/importers.rb +22 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/less.rb +382 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/logger/base.rb +32 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/logger/log_level.rb +49 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/logger.rb +15 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/plugin/compiler.rb +383 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/plugin/configuration.rb +123 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/plugin/generic.rb +15 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/plugin/merb.rb +48 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/plugin/rack.rb +60 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/plugin/rails.rb +47 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/plugin/staleness_checker.rb +173 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/plugin.rb +132 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/railtie.rb +9 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/repl.rb +58 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/root.rb +7 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/script/bool.rb +18 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/script/color.rb +480 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/script/css_lexer.rb +29 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/script/css_parser.rb +31 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/script/funcall.rb +175 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/script/functions.rb +1386 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/script/interpolation.rb +79 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/script/lexer.rb +339 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/script/list.rb +83 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/script/literal.rb +250 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/script/node.rb +99 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/script/number.rb +452 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/script/operation.rb +99 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/script/parser.rb +474 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/script/string.rb +51 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/script/string_interpolation.rb +103 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/script/unary_operation.rb +64 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/script/variable.rb +59 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/script.rb +40 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/scss/css_parser.rb +46 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/scss/parser.rb +960 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/scss/rx.rb +128 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/scss/sass_parser.rb +11 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/scss/script_lexer.rb +15 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/scss/script_parser.rb +25 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/scss/static_parser.rb +40 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/scss.rb +17 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/selector/abstract_sequence.rb +62 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/selector/comma_sequence.rb +81 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/selector/sequence.rb +233 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/selector/simple.rb +113 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/selector/simple_sequence.rb +134 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/selector.rb +361 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/shared.rb +78 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/tree/charset_node.rb +22 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/tree/comment_node.rb +90 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/tree/debug_node.rb +18 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/tree/directive_node.rb +23 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/tree/each_node.rb +24 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/tree/extend_node.rb +29 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/tree/for_node.rb +36 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/tree/function_node.rb +27 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/tree/if_node.rb +52 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/tree/import_node.rb +68 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/tree/media_node.rb +32 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/tree/mixin_def_node.rb +27 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/tree/mixin_node.rb +32 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/tree/node.rb +201 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/tree/prop_node.rb +148 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/tree/return_node.rb +18 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/tree/root_node.rb +28 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/tree/rule_node.rb +136 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/tree/variable_node.rb +30 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/tree/visitors/base.rb +75 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/tree/visitors/check_nesting.rb +133 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/tree/visitors/convert.rb +260 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/tree/visitors/cssize.rb +175 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/tree/visitors/deep_copy.rb +87 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/tree/visitors/perform.rb +332 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/tree/visitors/set_options.rb +97 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/tree/visitors/to_css.rb +210 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/tree/warn_node.rb +18 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/tree/while_node.rb +18 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/util/subset_map.rb +101 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/util.rb +721 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass/version.rb +112 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/lib/sass.rb +73 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/rails/init.rb +1 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/sass.gemspec +33 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/Gemfile +4 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/cache_test.rb +89 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/callbacks_test.rb +61 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/conversion_test.rb +1199 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/css2sass_test.rb +373 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/data/hsl-rgb.txt +319 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/engine_test.rb +2567 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/extend_test.rb +1348 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/fixtures/test_staleness_check_across_importers.css +1 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/fixtures/test_staleness_check_across_importers.scss +1 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/functions_test.rb +1038 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/importer_test.rb +192 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/less_conversion_test.rb +653 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/logger_test.rb +58 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/mock_importer.rb +49 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/more_results/more1.css +9 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/more_results/more1_with_line_comments.css +26 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/more_results/more_import.css +29 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/more_templates/_more_partial.sass +2 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/more_templates/more1.sass +23 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/more_templates/more_import.sass +11 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/plugin_test.rb +472 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/results/alt.css +4 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/results/basic.css +9 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/results/compact.css +5 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/results/complex.css +86 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/results/compressed.css +1 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/results/expanded.css +19 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/results/if.css +3 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/results/import.css +31 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/results/import_charset.css +4 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/results/import_charset_1_8.css +4 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/results/import_charset_ibm866.css +4 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/results/line_numbers.css +49 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/results/mixins.css +95 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/results/multiline.css +24 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/results/nested.css +22 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/results/options.css +1 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/results/parent_ref.css +13 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/results/script.css +16 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/results/scss_import.css +31 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/results/scss_importee.css +2 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/results/subdir/nested_subdir/nested_subdir.css +1 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/results/subdir/subdir.css +3 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/results/units.css +11 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/results/warn.css +0 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/results/warn_imported.css +0 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/script_conversion_test.rb +285 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/script_test.rb +514 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/scss/css_test.rb +922 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/scss/rx_test.rb +156 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/scss/scss_test.rb +1273 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/scss/test_helper.rb +37 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/templates/_imported_charset_ibm866.sass +4 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/templates/_imported_charset_utf8.sass +4 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/templates/_partial.sass +2 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/templates/alt.sass +16 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/templates/basic.sass +23 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/templates/bork1.sass +2 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/templates/bork2.sass +2 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/templates/bork3.sass +2 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/templates/bork4.sass +2 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/templates/bork5.sass +3 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/templates/compact.sass +17 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/templates/complex.sass +305 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/templates/compressed.sass +15 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/templates/expanded.sass +17 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/templates/if.sass +11 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/templates/import.sass +12 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/templates/import_charset.sass +7 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/templates/import_charset_1_8.sass +4 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/templates/import_charset_ibm866.sass +9 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/templates/importee.less +2 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/templates/importee.sass +19 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/templates/line_numbers.sass +13 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/templates/mixin_bork.sass +5 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/templates/mixins.sass +76 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/templates/multiline.sass +20 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/templates/nested.sass +25 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/templates/nested_bork1.sass +2 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/templates/nested_bork2.sass +2 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/templates/nested_bork3.sass +2 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/templates/nested_bork4.sass +2 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/templates/nested_bork5.sass +2 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/templates/nested_import.sass +2 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/templates/nested_mixin_bork.sass +6 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/templates/options.sass +2 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/templates/parent_ref.sass +25 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/templates/script.sass +101 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/templates/scss_import.scss +11 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/templates/scss_importee.scss +1 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/templates/subdir/nested_subdir/_nested_partial.sass +2 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/templates/subdir/nested_subdir/nested_subdir.sass +3 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/templates/subdir/subdir.sass +6 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/templates/units.sass +11 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/templates/warn.sass +3 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/templates/warn_imported.sass +4 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/test_helper.rb +8 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/util/subset_map_test.rb +91 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/sass/util_test.rb +266 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/test/test_helper.rb +69 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/vendor/fssm/Gemfile +3 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/vendor/fssm/LICENSE +20 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/vendor/fssm/README.markdown +83 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/vendor/fssm/Rakefile +11 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/vendor/fssm/example.rb +12 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/vendor/fssm/fssm.gemspec +24 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/vendor/fssm/lib/fssm/backends/fsevents.rb +36 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/vendor/fssm/lib/fssm/backends/inotify.rb +26 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/vendor/fssm/lib/fssm/backends/polling.rb +25 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/vendor/fssm/lib/fssm/backends/rbfsevent.rb +42 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/vendor/fssm/lib/fssm/backends/rubycocoa/fsevents.rb +131 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/vendor/fssm/lib/fssm/monitor.rb +36 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/vendor/fssm/lib/fssm/path.rb +94 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/vendor/fssm/lib/fssm/pathname.rb +36 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/vendor/fssm/lib/fssm/state/directory.rb +75 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/vendor/fssm/lib/fssm/state/file.rb +24 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/vendor/fssm/lib/fssm/support.rb +92 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/vendor/fssm/lib/fssm/tree.rb +176 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/vendor/fssm/lib/fssm/version.rb +3 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/vendor/fssm/lib/fssm.rb +37 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/vendor/fssm/profile/prof-cache.rb +40 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/vendor/fssm/profile/prof-fssm-pathname.html +1231 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/vendor/fssm/profile/prof-pathname-rubinius.rb +35 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/vendor/fssm/profile/prof-pathname.rb +68 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/vendor/fssm/profile/prof-plain-pathname.html +988 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/vendor/fssm/profile/prof.html +2379 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/vendor/fssm/spec/count_down_latch.rb +151 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/vendor/fssm/spec/monitor_spec.rb +202 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/vendor/fssm/spec/path_spec.rb +96 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/vendor/fssm/spec/root/duck/quack.txt +0 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/vendor/fssm/spec/root/file.css +0 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/vendor/fssm/spec/root/file.rb +0 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/vendor/fssm/spec/root/file.yml +0 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/vendor/fssm/spec/root/moo/cow.txt +0 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/vendor/fssm/spec/spec_helper.rb +14 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/yard/callbacks.rb +29 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/yard/default/fulldoc/html/css/common.sass +26 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/yard/default/layout/html/footer.erb +12 -0
- data/vendor/bundle/gems/haml-3.1.6/vendor/sass/yard/inherited_hash.rb +41 -0
- data/vendor/bundle/gems/json-1.7.3/.gitignore +12 -0
- data/vendor/bundle/gems/json-1.7.3/.travis.yml +16 -0
- data/vendor/bundle/gems/json-1.7.3/CHANGES +250 -0
- data/vendor/bundle/gems/json-1.7.3/COPYING +58 -0
- data/vendor/bundle/gems/json-1.7.3/COPYING-json-jruby +57 -0
- data/vendor/bundle/gems/json-1.7.3/GPL +340 -0
- data/vendor/bundle/gems/json-1.7.3/Gemfile +15 -0
- data/vendor/bundle/gems/json-1.7.3/README-json-jruby.markdown +33 -0
- data/vendor/bundle/gems/json-1.7.3/README.rdoc +358 -0
- data/vendor/bundle/gems/json-1.7.3/Rakefile +401 -0
- data/vendor/bundle/gems/json-1.7.3/TODO +1 -0
- data/vendor/bundle/gems/json-1.7.3/VERSION +1 -0
- data/vendor/bundle/gems/json-1.7.3/data/example.json +1 -0
- data/vendor/bundle/gems/json-1.7.3/data/index.html +38 -0
- data/vendor/bundle/gems/json-1.7.3/data/prototype.js +4184 -0
- data/vendor/bundle/gems/json-1.7.3/diagrams/.keep +0 -0
- data/vendor/bundle/gems/json-1.7.3/ext/json/ext/fbuffer/fbuffer.h +164 -0
- data/vendor/bundle/gems/json-1.7.3/ext/json/ext/generator/Makefile +214 -0
- data/vendor/bundle/gems/json-1.7.3/ext/json/ext/generator/depend +1 -0
- data/vendor/bundle/gems/json-1.7.3/ext/json/ext/generator/extconf.rb +14 -0
- data/vendor/bundle/gems/json-1.7.3/ext/json/ext/generator/generator.bundle +0 -0
- data/vendor/bundle/gems/json-1.7.3/ext/json/ext/generator/generator.c +1393 -0
- data/vendor/bundle/gems/json-1.7.3/ext/json/ext/generator/generator.h +162 -0
- data/vendor/bundle/gems/json-1.7.3/ext/json/ext/generator/generator.o +0 -0
- data/vendor/bundle/gems/json-1.7.3/ext/json/ext/parser/Makefile +214 -0
- data/vendor/bundle/gems/json-1.7.3/ext/json/ext/parser/depend +1 -0
- data/vendor/bundle/gems/json-1.7.3/ext/json/ext/parser/extconf.rb +13 -0
- data/vendor/bundle/gems/json-1.7.3/ext/json/ext/parser/parser.bundle +0 -0
- data/vendor/bundle/gems/json-1.7.3/ext/json/ext/parser/parser.c +2204 -0
- data/vendor/bundle/gems/json-1.7.3/ext/json/ext/parser/parser.h +77 -0
- data/vendor/bundle/gems/json-1.7.3/ext/json/ext/parser/parser.o +0 -0
- data/vendor/bundle/gems/json-1.7.3/ext/json/ext/parser/parser.rl +927 -0
- data/vendor/bundle/gems/json-1.7.3/install.rb +23 -0
- data/vendor/bundle/gems/json-1.7.3/java/src/json/ext/ByteListTranscoder.java +167 -0
- data/vendor/bundle/gems/json-1.7.3/java/src/json/ext/Generator.java +444 -0
- data/vendor/bundle/gems/json-1.7.3/java/src/json/ext/GeneratorMethods.java +232 -0
- data/vendor/bundle/gems/json-1.7.3/java/src/json/ext/GeneratorService.java +43 -0
- data/vendor/bundle/gems/json-1.7.3/java/src/json/ext/GeneratorState.java +526 -0
- data/vendor/bundle/gems/json-1.7.3/java/src/json/ext/OptionsReader.java +113 -0
- data/vendor/bundle/gems/json-1.7.3/java/src/json/ext/Parser.java +2644 -0
- data/vendor/bundle/gems/json-1.7.3/java/src/json/ext/Parser.rl +968 -0
- data/vendor/bundle/gems/json-1.7.3/java/src/json/ext/ParserService.java +35 -0
- data/vendor/bundle/gems/json-1.7.3/java/src/json/ext/RuntimeInfo.java +121 -0
- data/vendor/bundle/gems/json-1.7.3/java/src/json/ext/StringDecoder.java +167 -0
- data/vendor/bundle/gems/json-1.7.3/java/src/json/ext/StringEncoder.java +106 -0
- data/vendor/bundle/gems/json-1.7.3/java/src/json/ext/Utils.java +89 -0
- data/vendor/bundle/gems/json-1.7.3/json-java.gemspec +22 -0
- data/vendor/bundle/gems/json-1.7.3/json.gemspec +37 -0
- data/vendor/bundle/gems/json-1.7.3/json_pure.gemspec +39 -0
- data/vendor/bundle/gems/json-1.7.3/lib/json/add/bigdecimal.rb +21 -0
- data/vendor/bundle/gems/json-1.7.3/lib/json/add/complex.rb +22 -0
- data/vendor/bundle/gems/json-1.7.3/lib/json/add/core.rb +11 -0
- data/vendor/bundle/gems/json-1.7.3/lib/json/add/date.rb +34 -0
- data/vendor/bundle/gems/json-1.7.3/lib/json/add/date_time.rb +50 -0
- data/vendor/bundle/gems/json-1.7.3/lib/json/add/exception.rb +31 -0
- data/vendor/bundle/gems/json-1.7.3/lib/json/add/ostruct.rb +31 -0
- data/vendor/bundle/gems/json-1.7.3/lib/json/add/range.rb +29 -0
- data/vendor/bundle/gems/json-1.7.3/lib/json/add/rational.rb +22 -0
- data/vendor/bundle/gems/json-1.7.3/lib/json/add/regexp.rb +30 -0
- data/vendor/bundle/gems/json-1.7.3/lib/json/add/struct.rb +30 -0
- data/vendor/bundle/gems/json-1.7.3/lib/json/add/symbol.rb +25 -0
- data/vendor/bundle/gems/json-1.7.3/lib/json/add/time.rb +38 -0
- data/vendor/bundle/gems/json-1.7.3/lib/json/common.rb +480 -0
- data/vendor/bundle/gems/json-1.7.3/lib/json/ext/.keep +0 -0
- data/vendor/bundle/gems/json-1.7.3/lib/json/ext/generator.bundle +0 -0
- data/vendor/bundle/gems/json-1.7.3/lib/json/ext/parser.bundle +0 -0
- data/vendor/bundle/gems/json-1.7.3/lib/json/ext.rb +21 -0
- data/vendor/bundle/gems/json-1.7.3/lib/json/generic_object.rb +39 -0
- data/vendor/bundle/gems/json-1.7.3/lib/json/pure/generator.rb +472 -0
- data/vendor/bundle/gems/json-1.7.3/lib/json/pure/parser.rb +359 -0
- data/vendor/bundle/gems/json-1.7.3/lib/json/pure.rb +21 -0
- data/vendor/bundle/gems/json-1.7.3/lib/json/version.rb +8 -0
- data/vendor/bundle/gems/json-1.7.3/lib/json.rb +62 -0
- data/vendor/bundle/gems/json-1.7.3/tests/fixtures/fail1.json +1 -0
- data/vendor/bundle/gems/json-1.7.3/tests/fixtures/fail10.json +1 -0
- data/vendor/bundle/gems/json-1.7.3/tests/fixtures/fail11.json +1 -0
- data/vendor/bundle/gems/json-1.7.3/tests/fixtures/fail12.json +1 -0
- data/vendor/bundle/gems/json-1.7.3/tests/fixtures/fail13.json +1 -0
- data/vendor/bundle/gems/json-1.7.3/tests/fixtures/fail14.json +1 -0
- data/vendor/bundle/gems/json-1.7.3/tests/fixtures/fail18.json +1 -0
- data/vendor/bundle/gems/json-1.7.3/tests/fixtures/fail19.json +1 -0
- data/vendor/bundle/gems/json-1.7.3/tests/fixtures/fail2.json +1 -0
- data/vendor/bundle/gems/json-1.7.3/tests/fixtures/fail20.json +1 -0
- data/vendor/bundle/gems/json-1.7.3/tests/fixtures/fail21.json +1 -0
- data/vendor/bundle/gems/json-1.7.3/tests/fixtures/fail22.json +1 -0
- data/vendor/bundle/gems/json-1.7.3/tests/fixtures/fail23.json +1 -0
- data/vendor/bundle/gems/json-1.7.3/tests/fixtures/fail24.json +1 -0
- data/vendor/bundle/gems/json-1.7.3/tests/fixtures/fail25.json +1 -0
- data/vendor/bundle/gems/json-1.7.3/tests/fixtures/fail27.json +2 -0
- data/vendor/bundle/gems/json-1.7.3/tests/fixtures/fail28.json +2 -0
- data/vendor/bundle/gems/json-1.7.3/tests/fixtures/fail3.json +1 -0
- data/vendor/bundle/gems/json-1.7.3/tests/fixtures/fail4.json +1 -0
- data/vendor/bundle/gems/json-1.7.3/tests/fixtures/fail5.json +1 -0
- data/vendor/bundle/gems/json-1.7.3/tests/fixtures/fail6.json +1 -0
- data/vendor/bundle/gems/json-1.7.3/tests/fixtures/fail7.json +1 -0
- data/vendor/bundle/gems/json-1.7.3/tests/fixtures/fail8.json +1 -0
- data/vendor/bundle/gems/json-1.7.3/tests/fixtures/fail9.json +1 -0
- data/vendor/bundle/gems/json-1.7.3/tests/fixtures/pass1.json +56 -0
- data/vendor/bundle/gems/json-1.7.3/tests/fixtures/pass15.json +1 -0
- data/vendor/bundle/gems/json-1.7.3/tests/fixtures/pass16.json +1 -0
- data/vendor/bundle/gems/json-1.7.3/tests/fixtures/pass17.json +1 -0
- data/vendor/bundle/gems/json-1.7.3/tests/fixtures/pass2.json +1 -0
- data/vendor/bundle/gems/json-1.7.3/tests/fixtures/pass26.json +1 -0
- data/vendor/bundle/gems/json-1.7.3/tests/fixtures/pass3.json +6 -0
- data/vendor/bundle/gems/json-1.7.3/tests/setup_variant.rb +11 -0
- data/vendor/bundle/gems/json-1.7.3/tests/test_json.rb +539 -0
- data/vendor/bundle/gems/json-1.7.3/tests/test_json_addition.rb +188 -0
- data/vendor/bundle/gems/json-1.7.3/tests/test_json_encoding.rb +65 -0
- data/vendor/bundle/gems/json-1.7.3/tests/test_json_fixtures.rb +35 -0
- data/vendor/bundle/gems/json-1.7.3/tests/test_json_generate.rb +251 -0
- data/vendor/bundle/gems/json-1.7.3/tests/test_json_generic_object.rb +35 -0
- data/vendor/bundle/gems/json-1.7.3/tests/test_json_string_matching.rb +40 -0
- data/vendor/bundle/gems/json-1.7.3/tests/test_json_unicode.rb +72 -0
- data/vendor/bundle/gems/json-1.7.3/tools/fuzz.rb +139 -0
- data/vendor/bundle/gems/json-1.7.3/tools/server.rb +62 -0
- data/vendor/bundle/gems/mail-2.4.4/CHANGELOG.rdoc +603 -0
- data/vendor/bundle/gems/mail-2.4.4/CONTRIBUTING.md +45 -0
- data/vendor/bundle/gems/mail-2.4.4/Dependencies.txt +3 -0
- data/vendor/bundle/gems/mail-2.4.4/Gemfile +26 -0
- data/vendor/bundle/gems/mail-2.4.4/README.md +663 -0
- data/vendor/bundle/gems/mail-2.4.4/Rakefile +40 -0
- data/vendor/bundle/gems/mail-2.4.4/TODO.rdoc +9 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/VERSION +4 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/attachments_list.rb +104 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/body.rb +291 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/configuration.rb +75 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/core_extensions/nil.rb +17 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/core_extensions/object.rb +13 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/core_extensions/shell_escape.rb +56 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/core_extensions/smtp.rb +25 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/core_extensions/string/access.rb +145 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/core_extensions/string/multibyte.rb +78 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/core_extensions/string.rb +33 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/elements/address.rb +306 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/elements/address_list.rb +74 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/elements/content_disposition_element.rb +30 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/elements/content_location_element.rb +25 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/elements/content_transfer_encoding_element.rb +24 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/elements/content_type_element.rb +35 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/elements/date_time_element.rb +26 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/elements/envelope_from_element.rb +34 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/elements/message_ids_element.rb +29 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/elements/mime_version_element.rb +26 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/elements/phrase_list.rb +21 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/elements/received_element.rb +30 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/elements.rb +14 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/encodings/7bit.rb +31 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/encodings/8bit.rb +31 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/encodings/base64.rb +33 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/encodings/binary.rb +31 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/encodings/quoted_printable.rb +38 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/encodings/transfer_encoding.rb +58 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/encodings.rb +274 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/envelope.rb +35 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/field.rb +234 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/field_list.rb +33 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/fields/bcc_field.rb +56 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/fields/cc_field.rb +55 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/fields/comments_field.rb +41 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/fields/common/address_container.rb +16 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/fields/common/common_address.rb +125 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/fields/common/common_date.rb +42 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/fields/common/common_field.rb +51 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/fields/common/common_message_id.rb +44 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/fields/common/parameter_hash.rb +58 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/fields/content_description_field.rb +19 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/fields/content_disposition_field.rb +69 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/fields/content_id_field.rb +63 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/fields/content_location_field.rb +42 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/fields/content_transfer_encoding_field.rb +50 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/fields/content_type_field.rb +198 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/fields/date_field.rb +57 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/fields/from_field.rb +55 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/fields/in_reply_to_field.rb +55 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/fields/keywords_field.rb +44 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/fields/message_id_field.rb +83 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/fields/mime_version_field.rb +53 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/fields/optional_field.rb +13 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/fields/received_field.rb +75 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/fields/references_field.rb +55 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/fields/reply_to_field.rb +55 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/fields/resent_bcc_field.rb +55 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/fields/resent_cc_field.rb +55 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/fields/resent_date_field.rb +35 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/fields/resent_from_field.rb +55 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/fields/resent_message_id_field.rb +34 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/fields/resent_sender_field.rb +62 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/fields/resent_to_field.rb +55 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/fields/return_path_field.rb +65 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/fields/sender_field.rb +67 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/fields/structured_field.rb +51 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/fields/subject_field.rb +16 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/fields/to_field.rb +55 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/fields/unstructured_field.rb +191 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/fields.rb +35 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/header.rb +265 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/indifferent_hash.rb +146 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/mail.rb +255 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/matchers/has_sent_mail.rb +124 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/message.rb +2058 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/multibyte/chars.rb +474 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/multibyte/exceptions.rb +8 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/multibyte/unicode.rb +392 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/multibyte/utils.rb +60 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/multibyte.rb +42 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/network/delivery_methods/exim.rb +53 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/network/delivery_methods/file_delivery.rb +40 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/network/delivery_methods/sendmail.rb +62 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/network/delivery_methods/smtp.rb +153 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/network/delivery_methods/smtp_connection.rb +74 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/network/delivery_methods/test_mailer.rb +40 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/network/retriever_methods/base.rb +63 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/network/retriever_methods/imap.rb +160 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/network/retriever_methods/pop3.rb +140 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/network/retriever_methods/test_retriever.rb +47 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/network.rb +14 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/parsers/address_lists.rb +64 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/parsers/address_lists.treetop +19 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/parsers/content_disposition.rb +535 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/parsers/content_disposition.treetop +46 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/parsers/content_location.rb +139 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/parsers/content_location.treetop +20 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/parsers/content_transfer_encoding.rb +162 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/parsers/content_transfer_encoding.treetop +20 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/parsers/content_type.rb +967 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/parsers/content_type.treetop +68 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/parsers/date_time.rb +114 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/parsers/date_time.treetop +11 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/parsers/envelope_from.rb +194 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/parsers/envelope_from.treetop +32 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/parsers/message_ids.rb +45 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/parsers/message_ids.treetop +15 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/parsers/mime_version.rb +144 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/parsers/mime_version.treetop +19 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/parsers/phrase_lists.rb +45 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/parsers/phrase_lists.treetop +15 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/parsers/received.rb +71 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/parsers/received.treetop +11 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/parsers/rfc2045.rb +464 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/parsers/rfc2045.treetop +36 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/parsers/rfc2822.rb +5341 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/parsers/rfc2822.treetop +410 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/parsers/rfc2822_obsolete.rb +3768 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/parsers/rfc2822_obsolete.treetop +241 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/part.rb +116 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/parts_list.rb +55 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/patterns.rb +35 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/utilities.rb +215 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/version.rb +24 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/version_specific/ruby_1_8.rb +98 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail/version_specific/ruby_1_9.rb +113 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/mail.rb +91 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/tasks/corpus.rake +125 -0
- data/vendor/bundle/gems/mail-2.4.4/lib/tasks/treetop.rake +10 -0
- data/vendor/bundle/gems/mime-types-1.18/.gemtest +0 -0
- data/vendor/bundle/gems/mime-types-1.18/.gitignore +8 -0
- data/vendor/bundle/gems/mime-types-1.18/.hoerc +10 -0
- data/vendor/bundle/gems/mime-types-1.18/History.rdoc +132 -0
- data/vendor/bundle/gems/mime-types-1.18/Licence.rdoc +12 -0
- data/vendor/bundle/gems/mime-types-1.18/Manifest.txt +43 -0
- data/vendor/bundle/gems/mime-types-1.18/README.rdoc +19 -0
- data/vendor/bundle/gems/mime-types-1.18/Rakefile +198 -0
- data/vendor/bundle/gems/mime-types-1.18/lib/mime/types/application +943 -0
- data/vendor/bundle/gems/mime-types-1.18/lib/mime/types/application.mac +2 -0
- data/vendor/bundle/gems/mime-types-1.18/lib/mime/types/application.nonstandard +117 -0
- data/vendor/bundle/gems/mime-types-1.18/lib/mime/types/application.obsolete +40 -0
- data/vendor/bundle/gems/mime-types-1.18/lib/mime/types/audio +132 -0
- data/vendor/bundle/gems/mime-types-1.18/lib/mime/types/audio.nonstandard +10 -0
- data/vendor/bundle/gems/mime-types-1.18/lib/mime/types/audio.obsolete +1 -0
- data/vendor/bundle/gems/mime-types-1.18/lib/mime/types/image +43 -0
- data/vendor/bundle/gems/mime-types-1.18/lib/mime/types/image.nonstandard +17 -0
- data/vendor/bundle/gems/mime-types-1.18/lib/mime/types/image.obsolete +5 -0
- data/vendor/bundle/gems/mime-types-1.18/lib/mime/types/message +19 -0
- data/vendor/bundle/gems/mime-types-1.18/lib/mime/types/message.obsolete +1 -0
- data/vendor/bundle/gems/mime-types-1.18/lib/mime/types/model +15 -0
- data/vendor/bundle/gems/mime-types-1.18/lib/mime/types/multipart +14 -0
- data/vendor/bundle/gems/mime-types-1.18/lib/mime/types/multipart.nonstandard +1 -0
- data/vendor/bundle/gems/mime-types-1.18/lib/mime/types/multipart.obsolete +7 -0
- data/vendor/bundle/gems/mime-types-1.18/lib/mime/types/other.nonstandard +8 -0
- data/vendor/bundle/gems/mime-types-1.18/lib/mime/types/text +54 -0
- data/vendor/bundle/gems/mime-types-1.18/lib/mime/types/text.nonstandard +6 -0
- data/vendor/bundle/gems/mime-types-1.18/lib/mime/types/text.obsolete +7 -0
- data/vendor/bundle/gems/mime-types-1.18/lib/mime/types/text.vms +1 -0
- data/vendor/bundle/gems/mime-types-1.18/lib/mime/types/video +69 -0
- data/vendor/bundle/gems/mime-types-1.18/lib/mime/types/video.nonstandard +11 -0
- data/vendor/bundle/gems/mime-types-1.18/lib/mime/types/video.obsolete +3 -0
- data/vendor/bundle/gems/mime-types-1.18/lib/mime/types.rb +853 -0
- data/vendor/bundle/gems/mime-types-1.18/mime-types.gemspec +57 -0
- data/vendor/bundle/gems/mime-types-1.18/test/test_mime_type.rb +318 -0
- data/vendor/bundle/gems/mime-types-1.18/test/test_mime_types.rb +99 -0
- data/vendor/bundle/gems/mime-types-1.18/type-lists/application.txt +951 -0
- data/vendor/bundle/gems/mime-types-1.18/type-lists/audio.txt +132 -0
- data/vendor/bundle/gems/mime-types-1.18/type-lists/image.txt +43 -0
- data/vendor/bundle/gems/mime-types-1.18/type-lists/message.txt +20 -0
- data/vendor/bundle/gems/mime-types-1.18/type-lists/model.txt +15 -0
- data/vendor/bundle/gems/mime-types-1.18/type-lists/multipart.txt +14 -0
- data/vendor/bundle/gems/mime-types-1.18/type-lists/text.txt +57 -0
- data/vendor/bundle/gems/mime-types-1.18/type-lists/video.txt +67 -0
- data/vendor/bundle/gems/polyglot-0.3.3/History.txt +72 -0
- data/vendor/bundle/gems/polyglot-0.3.3/License.txt +20 -0
- data/vendor/bundle/gems/polyglot-0.3.3/README.txt +87 -0
- data/vendor/bundle/gems/polyglot-0.3.3/Rakefile +42 -0
- data/vendor/bundle/gems/polyglot-0.3.3/lib/polyglot/version.rb +9 -0
- data/vendor/bundle/gems/polyglot-0.3.3/lib/polyglot.rb +74 -0
- data/vendor/bundle/gems/qu-0.1.4/.gitignore +4 -0
- data/vendor/bundle/gems/qu-0.1.4/ChangeLog +53 -0
- data/vendor/bundle/gems/qu-0.1.4/Gemfile +20 -0
- data/vendor/bundle/gems/qu-0.1.4/Guardfile +12 -0
- data/vendor/bundle/gems/qu-0.1.4/README.md +163 -0
- data/vendor/bundle/gems/qu-0.1.4/Rakefile +50 -0
- data/vendor/bundle/gems/qu-0.1.4/lib/qu/backend/base.rb +20 -0
- data/vendor/bundle/gems/qu-0.1.4/lib/qu/backend/immediate.rb +18 -0
- data/vendor/bundle/gems/qu-0.1.4/lib/qu/backend/spec.rb +288 -0
- data/vendor/bundle/gems/qu-0.1.4/lib/qu/failure.rb +4 -0
- data/vendor/bundle/gems/qu-0.1.4/lib/qu/logger.rb +20 -0
- data/vendor/bundle/gems/qu-0.1.4/lib/qu/payload.rb +53 -0
- data/vendor/bundle/gems/qu-0.1.4/lib/qu/railtie.rb +13 -0
- data/vendor/bundle/gems/qu-0.1.4/lib/qu/tasks.rb +14 -0
- data/vendor/bundle/gems/qu-0.1.4/lib/qu/version.rb +3 -0
- data/vendor/bundle/gems/qu-0.1.4/lib/qu/worker.rb +77 -0
- data/vendor/bundle/gems/qu-0.1.4/lib/qu-immediate.rb +4 -0
- data/vendor/bundle/gems/qu-0.1.4/lib/qu.rb +45 -0
- data/vendor/bundle/gems/qu-0.1.4/qu.gemspec +22 -0
- data/vendor/bundle/gems/qu-0.1.4/spec/qu/backend/immediate_spec.rb +15 -0
- data/vendor/bundle/gems/qu-0.1.4/spec/qu/payload_spec.rb +86 -0
- data/vendor/bundle/gems/qu-0.1.4/spec/qu/worker_spec.rb +99 -0
- data/vendor/bundle/gems/qu-0.1.4/spec/qu_spec.rb +37 -0
- data/vendor/bundle/gems/qu-0.1.4/spec/spec_helper.rb +14 -0
- data/vendor/bundle/gems/qu-mongo-0.1.4/lib/qu/backend/mongo.rb +156 -0
- data/vendor/bundle/gems/qu-mongo-0.1.4/lib/qu-mongo.rb +4 -0
- data/vendor/bundle/gems/redis-2.2.2/.gitignore +8 -0
- data/vendor/bundle/gems/redis-2.2.2/CHANGELOG.md +49 -0
- data/vendor/bundle/gems/redis-2.2.2/LICENSE +20 -0
- data/vendor/bundle/gems/redis-2.2.2/README.md +208 -0
- data/vendor/bundle/gems/redis-2.2.2/Rakefile +268 -0
- data/vendor/bundle/gems/redis-2.2.2/TODO.md +4 -0
- data/vendor/bundle/gems/redis-2.2.2/benchmarking/logging.rb +62 -0
- data/vendor/bundle/gems/redis-2.2.2/benchmarking/pipeline.rb +51 -0
- data/vendor/bundle/gems/redis-2.2.2/benchmarking/speed.rb +21 -0
- data/vendor/bundle/gems/redis-2.2.2/benchmarking/suite.rb +24 -0
- data/vendor/bundle/gems/redis-2.2.2/benchmarking/thread_safety.rb +38 -0
- data/vendor/bundle/gems/redis-2.2.2/benchmarking/worker.rb +71 -0
- data/vendor/bundle/gems/redis-2.2.2/examples/basic.rb +15 -0
- data/vendor/bundle/gems/redis-2.2.2/examples/dist_redis.rb +43 -0
- data/vendor/bundle/gems/redis-2.2.2/examples/incr-decr.rb +17 -0
- data/vendor/bundle/gems/redis-2.2.2/examples/list.rb +26 -0
- data/vendor/bundle/gems/redis-2.2.2/examples/pubsub.rb +31 -0
- data/vendor/bundle/gems/redis-2.2.2/examples/sets.rb +36 -0
- data/vendor/bundle/gems/redis-2.2.2/examples/unicorn/config.ru +3 -0
- data/vendor/bundle/gems/redis-2.2.2/examples/unicorn/unicorn.rb +20 -0
- data/vendor/bundle/gems/redis-2.2.2/lib/redis/client.rb +265 -0
- data/vendor/bundle/gems/redis-2.2.2/lib/redis/compat.rb +21 -0
- data/vendor/bundle/gems/redis-2.2.2/lib/redis/connection/command_helper.rb +45 -0
- data/vendor/bundle/gems/redis-2.2.2/lib/redis/connection/hiredis.rb +49 -0
- data/vendor/bundle/gems/redis-2.2.2/lib/redis/connection/registry.rb +12 -0
- data/vendor/bundle/gems/redis-2.2.2/lib/redis/connection/ruby.rb +135 -0
- data/vendor/bundle/gems/redis-2.2.2/lib/redis/connection/synchrony.rb +129 -0
- data/vendor/bundle/gems/redis-2.2.2/lib/redis/connection.rb +9 -0
- data/vendor/bundle/gems/redis-2.2.2/lib/redis/distributed.rb +694 -0
- data/vendor/bundle/gems/redis-2.2.2/lib/redis/hash_ring.rb +131 -0
- data/vendor/bundle/gems/redis-2.2.2/lib/redis/pipeline.rb +34 -0
- data/vendor/bundle/gems/redis-2.2.2/lib/redis/subscribe.rb +94 -0
- data/vendor/bundle/gems/redis-2.2.2/lib/redis/version.rb +3 -0
- data/vendor/bundle/gems/redis-2.2.2/lib/redis.rb +1148 -0
- data/vendor/bundle/gems/redis-2.2.2/redis.gemspec +24 -0
- data/vendor/bundle/gems/redis-2.2.2/test/commands_on_hashes_test.rb +20 -0
- data/vendor/bundle/gems/redis-2.2.2/test/commands_on_lists_test.rb +60 -0
- data/vendor/bundle/gems/redis-2.2.2/test/commands_on_sets_test.rb +78 -0
- data/vendor/bundle/gems/redis-2.2.2/test/commands_on_sorted_sets_test.rb +109 -0
- data/vendor/bundle/gems/redis-2.2.2/test/commands_on_strings_test.rb +80 -0
- data/vendor/bundle/gems/redis-2.2.2/test/commands_on_value_types_test.rb +88 -0
- data/vendor/bundle/gems/redis-2.2.2/test/connection_handling_test.rb +88 -0
- data/vendor/bundle/gems/redis-2.2.2/test/db/.gitignore +1 -0
- data/vendor/bundle/gems/redis-2.2.2/test/distributed_blocking_commands_test.rb +53 -0
- data/vendor/bundle/gems/redis-2.2.2/test/distributed_commands_on_hashes_test.rb +12 -0
- data/vendor/bundle/gems/redis-2.2.2/test/distributed_commands_on_lists_test.rb +24 -0
- data/vendor/bundle/gems/redis-2.2.2/test/distributed_commands_on_sets_test.rb +85 -0
- data/vendor/bundle/gems/redis-2.2.2/test/distributed_commands_on_strings_test.rb +50 -0
- data/vendor/bundle/gems/redis-2.2.2/test/distributed_commands_on_value_types_test.rb +73 -0
- data/vendor/bundle/gems/redis-2.2.2/test/distributed_commands_requiring_clustering_test.rb +148 -0
- data/vendor/bundle/gems/redis-2.2.2/test/distributed_connection_handling_test.rb +25 -0
- data/vendor/bundle/gems/redis-2.2.2/test/distributed_internals_test.rb +27 -0
- data/vendor/bundle/gems/redis-2.2.2/test/distributed_key_tags_test.rb +53 -0
- data/vendor/bundle/gems/redis-2.2.2/test/distributed_persistence_control_commands_test.rb +24 -0
- data/vendor/bundle/gems/redis-2.2.2/test/distributed_publish_subscribe_test.rb +101 -0
- data/vendor/bundle/gems/redis-2.2.2/test/distributed_remote_server_control_commands_test.rb +43 -0
- data/vendor/bundle/gems/redis-2.2.2/test/distributed_sorting_test.rb +21 -0
- data/vendor/bundle/gems/redis-2.2.2/test/distributed_test.rb +59 -0
- data/vendor/bundle/gems/redis-2.2.2/test/distributed_transactions_test.rb +34 -0
- data/vendor/bundle/gems/redis-2.2.2/test/encoding_test.rb +16 -0
- data/vendor/bundle/gems/redis-2.2.2/test/error_replies_test.rb +53 -0
- data/vendor/bundle/gems/redis-2.2.2/test/helper.rb +145 -0
- data/vendor/bundle/gems/redis-2.2.2/test/internals_test.rb +160 -0
- data/vendor/bundle/gems/redis-2.2.2/test/lint/hashes.rb +126 -0
- data/vendor/bundle/gems/redis-2.2.2/test/lint/internals.rb +37 -0
- data/vendor/bundle/gems/redis-2.2.2/test/lint/lists.rb +93 -0
- data/vendor/bundle/gems/redis-2.2.2/test/lint/sets.rb +66 -0
- data/vendor/bundle/gems/redis-2.2.2/test/lint/sorted_sets.rb +167 -0
- data/vendor/bundle/gems/redis-2.2.2/test/lint/strings.rb +137 -0
- data/vendor/bundle/gems/redis-2.2.2/test/lint/value_types.rb +84 -0
- data/vendor/bundle/gems/redis-2.2.2/test/persistence_control_commands_test.rb +22 -0
- data/vendor/bundle/gems/redis-2.2.2/test/pipelining_commands_test.rb +123 -0
- data/vendor/bundle/gems/redis-2.2.2/test/publish_subscribe_test.rb +158 -0
- data/vendor/bundle/gems/redis-2.2.2/test/redis_mock.rb +80 -0
- data/vendor/bundle/gems/redis-2.2.2/test/remote_server_control_commands_test.rb +82 -0
- data/vendor/bundle/gems/redis-2.2.2/test/sorting_test.rb +44 -0
- data/vendor/bundle/gems/redis-2.2.2/test/synchrony_driver.rb +57 -0
- data/vendor/bundle/gems/redis-2.2.2/test/test.conf +8 -0
- data/vendor/bundle/gems/redis-2.2.2/test/thread_safety_test.rb +30 -0
- data/vendor/bundle/gems/redis-2.2.2/test/transactions_test.rb +100 -0
- data/vendor/bundle/gems/redis-2.2.2/test/unknown_commands_test.rb +14 -0
- data/vendor/bundle/gems/redis-2.2.2/test/url_param_test.rb +60 -0
- data/vendor/bundle/gems/redis-namespace-1.0.3/LICENSE +20 -0
- data/vendor/bundle/gems/redis-namespace-1.0.3/README.md +37 -0
- data/vendor/bundle/gems/redis-namespace-1.0.3/Rakefile +7 -0
- data/vendor/bundle/gems/redis-namespace-1.0.3/lib/redis/namespace.rb +248 -0
- data/vendor/bundle/gems/redis-namespace-1.0.3/lib/redis-namespace.rb +1 -0
- data/vendor/bundle/gems/redis-namespace-1.0.3/spec/redis_spec.rb +180 -0
- data/vendor/bundle/gems/redis-namespace-1.0.3/spec/spec_helper.rb +18 -0
- data/vendor/bundle/gems/resque-1.20.0/HISTORY.md +354 -0
- data/vendor/bundle/gems/resque-1.20.0/LICENSE +20 -0
- data/vendor/bundle/gems/resque-1.20.0/README.markdown +908 -0
- data/vendor/bundle/gems/resque-1.20.0/Rakefile +78 -0
- data/vendor/bundle/gems/resque-1.20.0/bin/resque +81 -0
- data/vendor/bundle/gems/resque-1.20.0/bin/resque-web +27 -0
- data/vendor/bundle/gems/resque-1.20.0/lib/resque/errors.rb +10 -0
- data/vendor/bundle/gems/resque-1.20.0/lib/resque/failure/airbrake.rb +17 -0
- data/vendor/bundle/gems/resque-1.20.0/lib/resque/failure/base.rb +64 -0
- data/vendor/bundle/gems/resque-1.20.0/lib/resque/failure/hoptoad.rb +33 -0
- data/vendor/bundle/gems/resque-1.20.0/lib/resque/failure/multiple.rb +54 -0
- data/vendor/bundle/gems/resque-1.20.0/lib/resque/failure/redis.rb +51 -0
- data/vendor/bundle/gems/resque-1.20.0/lib/resque/failure/thoughtbot.rb +33 -0
- data/vendor/bundle/gems/resque-1.20.0/lib/resque/failure.rb +96 -0
- data/vendor/bundle/gems/resque-1.20.0/lib/resque/helpers.rb +83 -0
- data/vendor/bundle/gems/resque-1.20.0/lib/resque/job.rb +223 -0
- data/vendor/bundle/gems/resque-1.20.0/lib/resque/plugin.rb +66 -0
- data/vendor/bundle/gems/resque-1.20.0/lib/resque/server/public/favicon.ico +0 -0
- data/vendor/bundle/gems/resque-1.20.0/lib/resque/server/public/idle.png +0 -0
- data/vendor/bundle/gems/resque-1.20.0/lib/resque/server/public/jquery-1.3.2.min.js +19 -0
- data/vendor/bundle/gems/resque-1.20.0/lib/resque/server/public/jquery.relatize_date.js +95 -0
- data/vendor/bundle/gems/resque-1.20.0/lib/resque/server/public/poll.png +0 -0
- data/vendor/bundle/gems/resque-1.20.0/lib/resque/server/public/ranger.js +73 -0
- data/vendor/bundle/gems/resque-1.20.0/lib/resque/server/public/reset.css +44 -0
- data/vendor/bundle/gems/resque-1.20.0/lib/resque/server/public/style.css +86 -0
- data/vendor/bundle/gems/resque-1.20.0/lib/resque/server/public/working.png +0 -0
- data/vendor/bundle/gems/resque-1.20.0/lib/resque/server/test_helper.rb +19 -0
- data/vendor/bundle/gems/resque-1.20.0/lib/resque/server/views/error.erb +1 -0
- data/vendor/bundle/gems/resque-1.20.0/lib/resque/server/views/failed.erb +67 -0
- data/vendor/bundle/gems/resque-1.20.0/lib/resque/server/views/key_sets.erb +19 -0
- data/vendor/bundle/gems/resque-1.20.0/lib/resque/server/views/key_string.erb +11 -0
- data/vendor/bundle/gems/resque-1.20.0/lib/resque/server/views/layout.erb +44 -0
- data/vendor/bundle/gems/resque-1.20.0/lib/resque/server/views/next_more.erb +10 -0
- data/vendor/bundle/gems/resque-1.20.0/lib/resque/server/views/overview.erb +4 -0
- data/vendor/bundle/gems/resque-1.20.0/lib/resque/server/views/queues.erb +49 -0
- data/vendor/bundle/gems/resque-1.20.0/lib/resque/server/views/stats.erb +62 -0
- data/vendor/bundle/gems/resque-1.20.0/lib/resque/server/views/workers.erb +109 -0
- data/vendor/bundle/gems/resque-1.20.0/lib/resque/server/views/working.erb +72 -0
- data/vendor/bundle/gems/resque-1.20.0/lib/resque/server.rb +248 -0
- data/vendor/bundle/gems/resque-1.20.0/lib/resque/stat.rb +53 -0
- data/vendor/bundle/gems/resque-1.20.0/lib/resque/tasks.rb +61 -0
- data/vendor/bundle/gems/resque-1.20.0/lib/resque/version.rb +3 -0
- data/vendor/bundle/gems/resque-1.20.0/lib/resque/worker.rb +544 -0
- data/vendor/bundle/gems/resque-1.20.0/lib/resque.rb +380 -0
- data/vendor/bundle/gems/resque-1.20.0/lib/tasks/redis.rake +161 -0
- data/vendor/bundle/gems/resque-1.20.0/lib/tasks/resque.rake +2 -0
- data/vendor/bundle/gems/resque-1.20.0/test/airbrake_test.rb +27 -0
- data/vendor/bundle/gems/resque-1.20.0/test/hoptoad_test.rb +26 -0
- data/vendor/bundle/gems/resque-1.20.0/test/job_hooks_test.rb +423 -0
- data/vendor/bundle/gems/resque-1.20.0/test/job_plugins_test.rb +230 -0
- data/vendor/bundle/gems/resque-1.20.0/test/plugin_test.rb +116 -0
- data/vendor/bundle/gems/resque-1.20.0/test/redis-test-cluster.conf +115 -0
- data/vendor/bundle/gems/resque-1.20.0/test/redis-test.conf +115 -0
- data/vendor/bundle/gems/resque-1.20.0/test/resque-web_test.rb +59 -0
- data/vendor/bundle/gems/resque-1.20.0/test/resque_test.rb +278 -0
- data/vendor/bundle/gems/resque-1.20.0/test/test_helper.rb +158 -0
- data/vendor/bundle/gems/resque-1.20.0/test/worker_test.rb +405 -0
- data/vendor/bundle/gems/resque-mongo-1.9.8.1/HISTORY.md +202 -0
- data/vendor/bundle/gems/resque-mongo-1.9.8.1/LICENSE +20 -0
- data/vendor/bundle/gems/resque-mongo-1.9.8.1/README.markdown +814 -0
- data/vendor/bundle/gems/resque-mongo-1.9.8.1/Rakefile +60 -0
- data/vendor/bundle/gems/resque-mongo-1.9.8.1/bin/resque +57 -0
- data/vendor/bundle/gems/resque-mongo-1.9.8.1/bin/resque-web +23 -0
- data/vendor/bundle/gems/resque-mongo-1.9.8.1/lib/resque/errors.rb +10 -0
- data/vendor/bundle/gems/resque-mongo-1.9.8.1/lib/resque/failure/base.rb +61 -0
- data/vendor/bundle/gems/resque-mongo-1.9.8.1/lib/resque/failure/hoptoad.rb +132 -0
- data/vendor/bundle/gems/resque-mongo-1.9.8.1/lib/resque/failure/mongo.rb +41 -0
- data/vendor/bundle/gems/resque-mongo-1.9.8.1/lib/resque/failure/multiple.rb +50 -0
- data/vendor/bundle/gems/resque-mongo-1.9.8.1/lib/resque/failure.rb +66 -0
- data/vendor/bundle/gems/resque-mongo-1.9.8.1/lib/resque/helpers.rb +71 -0
- data/vendor/bundle/gems/resque-mongo-1.9.8.1/lib/resque/job.rb +209 -0
- data/vendor/bundle/gems/resque-mongo-1.9.8.1/lib/resque/plugin.rb +46 -0
- data/vendor/bundle/gems/resque-mongo-1.9.8.1/lib/resque/server/public/idle.png +0 -0
- data/vendor/bundle/gems/resque-mongo-1.9.8.1/lib/resque/server/public/jquery-1.3.2.min.js +19 -0
- data/vendor/bundle/gems/resque-mongo-1.9.8.1/lib/resque/server/public/jquery.relatize_date.js +95 -0
- data/vendor/bundle/gems/resque-mongo-1.9.8.1/lib/resque/server/public/poll.png +0 -0
- data/vendor/bundle/gems/resque-mongo-1.9.8.1/lib/resque/server/public/ranger.js +67 -0
- data/vendor/bundle/gems/resque-mongo-1.9.8.1/lib/resque/server/public/reset.css +48 -0
- data/vendor/bundle/gems/resque-mongo-1.9.8.1/lib/resque/server/public/style.css +82 -0
- data/vendor/bundle/gems/resque-mongo-1.9.8.1/lib/resque/server/public/working.png +0 -0
- data/vendor/bundle/gems/resque-mongo-1.9.8.1/lib/resque/server/test_helper.rb +19 -0
- data/vendor/bundle/gems/resque-mongo-1.9.8.1/lib/resque/server/views/error.erb +1 -0
- data/vendor/bundle/gems/resque-mongo-1.9.8.1/lib/resque/server/views/failed.erb +53 -0
- data/vendor/bundle/gems/resque-mongo-1.9.8.1/lib/resque/server/views/key_sets.erb +20 -0
- data/vendor/bundle/gems/resque-mongo-1.9.8.1/lib/resque/server/views/key_string.erb +11 -0
- data/vendor/bundle/gems/resque-mongo-1.9.8.1/lib/resque/server/views/layout.erb +38 -0
- data/vendor/bundle/gems/resque-mongo-1.9.8.1/lib/resque/server/views/next_more.erb +10 -0
- data/vendor/bundle/gems/resque-mongo-1.9.8.1/lib/resque/server/views/overview.erb +4 -0
- data/vendor/bundle/gems/resque-mongo-1.9.8.1/lib/resque/server/views/queues.erb +49 -0
- data/vendor/bundle/gems/resque-mongo-1.9.8.1/lib/resque/server/views/stats.erb +62 -0
- data/vendor/bundle/gems/resque-mongo-1.9.8.1/lib/resque/server/views/workers.erb +78 -0
- data/vendor/bundle/gems/resque-mongo-1.9.8.1/lib/resque/server/views/working.erb +69 -0
- data/vendor/bundle/gems/resque-mongo-1.9.8.1/lib/resque/server.rb +201 -0
- data/vendor/bundle/gems/resque-mongo-1.9.8.1/lib/resque/stat.rb +55 -0
- data/vendor/bundle/gems/resque-mongo-1.9.8.1/lib/resque/tasks.rb +39 -0
- data/vendor/bundle/gems/resque-mongo-1.9.8.1/lib/resque/version.rb +3 -0
- data/vendor/bundle/gems/resque-mongo-1.9.8.1/lib/resque/worker.rb +481 -0
- data/vendor/bundle/gems/resque-mongo-1.9.8.1/lib/resque.rb +316 -0
- data/vendor/bundle/gems/resque-mongo-1.9.8.1/tasks/redis.rake +159 -0
- data/vendor/bundle/gems/resque-mongo-1.9.8.1/tasks/resque.rake +2 -0
- data/vendor/bundle/gems/resque-mongo-1.9.8.1/test/dump.rdb +0 -0
- data/vendor/bundle/gems/resque-mongo-1.9.8.1/test/job_hooks_test.rb +302 -0
- data/vendor/bundle/gems/resque-mongo-1.9.8.1/test/job_plugins_test.rb +230 -0
- data/vendor/bundle/gems/resque-mongo-1.9.8.1/test/plugin_test.rb +116 -0
- data/vendor/bundle/gems/resque-mongo-1.9.8.1/test/redis-test.conf +115 -0
- data/vendor/bundle/gems/resque-mongo-1.9.8.1/test/resque-mongo_benchmark.rb +62 -0
- data/vendor/bundle/gems/resque-mongo-1.9.8.1/test/resque-web_test.rb +34 -0
- data/vendor/bundle/gems/resque-mongo-1.9.8.1/test/resque_test.rb +225 -0
- data/vendor/bundle/gems/resque-mongo-1.9.8.1/test/test_helper.rb +102 -0
- data/vendor/bundle/gems/resque-mongo-1.9.8.1/test/worker_test.rb +302 -0
- data/vendor/bundle/gems/slim-1.2.1/.gemtest +0 -0
- data/vendor/bundle/gems/slim-1.2.1/.gitignore +17 -0
- data/vendor/bundle/gems/slim-1.2.1/.travis.yml +27 -0
- data/vendor/bundle/gems/slim-1.2.1/.yardopts +2 -0
- data/vendor/bundle/gems/slim-1.2.1/CHANGES +219 -0
- data/vendor/bundle/gems/slim-1.2.1/Gemfile +25 -0
- data/vendor/bundle/gems/slim-1.2.1/LICENSE +21 -0
- data/vendor/bundle/gems/slim-1.2.1/README.md +411 -0
- data/vendor/bundle/gems/slim-1.2.1/Rakefile +57 -0
- data/vendor/bundle/gems/slim-1.2.1/benchmarks/context.rb +11 -0
- data/vendor/bundle/gems/slim-1.2.1/benchmarks/profile-parser.rb +10 -0
- data/vendor/bundle/gems/slim-1.2.1/benchmarks/profile-render.rb +12 -0
- data/vendor/bundle/gems/slim-1.2.1/benchmarks/run-benchmarks.rb +112 -0
- data/vendor/bundle/gems/slim-1.2.1/benchmarks/view.erb +23 -0
- data/vendor/bundle/gems/slim-1.2.1/benchmarks/view.haml +18 -0
- data/vendor/bundle/gems/slim-1.2.1/benchmarks/view.slim +17 -0
- data/vendor/bundle/gems/slim-1.2.1/bin/slimrb +7 -0
- data/vendor/bundle/gems/slim-1.2.1/lib/slim/command.rb +100 -0
- data/vendor/bundle/gems/slim-1.2.1/lib/slim/compiler.rb +199 -0
- data/vendor/bundle/gems/slim-1.2.1/lib/slim/embedded_engine.rb +203 -0
- data/vendor/bundle/gems/slim-1.2.1/lib/slim/end_inserter.rb +61 -0
- data/vendor/bundle/gems/slim-1.2.1/lib/slim/engine.rb +79 -0
- data/vendor/bundle/gems/slim-1.2.1/lib/slim/filter.rb +41 -0
- data/vendor/bundle/gems/slim-1.2.1/lib/slim/grammar.rb +23 -0
- data/vendor/bundle/gems/slim-1.2.1/lib/slim/interpolation.rb +55 -0
- data/vendor/bundle/gems/slim-1.2.1/lib/slim/parser.rb +462 -0
- data/vendor/bundle/gems/slim-1.2.1/lib/slim/sections.rb +97 -0
- data/vendor/bundle/gems/slim-1.2.1/lib/slim/template.rb +19 -0
- data/vendor/bundle/gems/slim-1.2.1/lib/slim/version.rb +5 -0
- data/vendor/bundle/gems/slim-1.2.1/lib/slim/wrapper.rb +57 -0
- data/vendor/bundle/gems/slim-1.2.1/lib/slim.rb +14 -0
- data/vendor/bundle/gems/slim-1.2.1/slim.gemspec +31 -0
- data/vendor/bundle/gems/slim-1.2.1/test/rails/Rakefile +7 -0
- data/vendor/bundle/gems/slim-1.2.1/test/rails/app/controllers/application_controller.rb +3 -0
- data/vendor/bundle/gems/slim-1.2.1/test/rails/app/controllers/parents_controller.rb +84 -0
- data/vendor/bundle/gems/slim-1.2.1/test/rails/app/controllers/slim_controller.rb +32 -0
- data/vendor/bundle/gems/slim-1.2.1/test/rails/app/helpers/application_helper.rb +2 -0
- data/vendor/bundle/gems/slim-1.2.1/test/rails/app/models/child.rb +3 -0
- data/vendor/bundle/gems/slim-1.2.1/test/rails/app/models/parent.rb +4 -0
- data/vendor/bundle/gems/slim-1.2.1/test/rails/app/views/layouts/application.html.slim +10 -0
- data/vendor/bundle/gems/slim-1.2.1/test/rails/app/views/parents/_form.html.slim +7 -0
- data/vendor/bundle/gems/slim-1.2.1/test/rails/app/views/parents/edit.html.slim +1 -0
- data/vendor/bundle/gems/slim-1.2.1/test/rails/app/views/parents/new.html.slim +1 -0
- data/vendor/bundle/gems/slim-1.2.1/test/rails/app/views/parents/show.html.slim +5 -0
- data/vendor/bundle/gems/slim-1.2.1/test/rails/app/views/slim/_partial.html.slim +1 -0
- data/vendor/bundle/gems/slim-1.2.1/test/rails/app/views/slim/content_for.html.slim +7 -0
- data/vendor/bundle/gems/slim-1.2.1/test/rails/app/views/slim/erb.html.erb +1 -0
- data/vendor/bundle/gems/slim-1.2.1/test/rails/app/views/slim/integers.html.slim +1 -0
- data/vendor/bundle/gems/slim-1.2.1/test/rails/app/views/slim/nil.html.slim +1 -0
- data/vendor/bundle/gems/slim-1.2.1/test/rails/app/views/slim/no_layout.html.slim +1 -0
- data/vendor/bundle/gems/slim-1.2.1/test/rails/app/views/slim/normal.html.slim +1 -0
- data/vendor/bundle/gems/slim-1.2.1/test/rails/app/views/slim/partial.html.slim +2 -0
- data/vendor/bundle/gems/slim-1.2.1/test/rails/app/views/slim/variables.html.slim +1 -0
- data/vendor/bundle/gems/slim-1.2.1/test/rails/config/application.rb +44 -0
- data/vendor/bundle/gems/slim-1.2.1/test/rails/config/boot.rb +10 -0
- data/vendor/bundle/gems/slim-1.2.1/test/rails/config/database.yml +4 -0
- data/vendor/bundle/gems/slim-1.2.1/test/rails/config/environment.rb +5 -0
- data/vendor/bundle/gems/slim-1.2.1/test/rails/config/environments/development.rb +26 -0
- data/vendor/bundle/gems/slim-1.2.1/test/rails/config/environments/production.rb +49 -0
- data/vendor/bundle/gems/slim-1.2.1/test/rails/config/environments/test.rb +35 -0
- data/vendor/bundle/gems/slim-1.2.1/test/rails/config/initializers/backtrace_silencers.rb +7 -0
- data/vendor/bundle/gems/slim-1.2.1/test/rails/config/initializers/inflections.rb +10 -0
- data/vendor/bundle/gems/slim-1.2.1/test/rails/config/initializers/mime_types.rb +5 -0
- data/vendor/bundle/gems/slim-1.2.1/test/rails/config/initializers/secret_token.rb +7 -0
- data/vendor/bundle/gems/slim-1.2.1/test/rails/config/initializers/session_store.rb +8 -0
- data/vendor/bundle/gems/slim-1.2.1/test/rails/config/locales/en.yml +5 -0
- data/vendor/bundle/gems/slim-1.2.1/test/rails/config/routes.rb +60 -0
- data/vendor/bundle/gems/slim-1.2.1/test/rails/config.ru +4 -0
- data/vendor/bundle/gems/slim-1.2.1/test/rails/db/migrate/20101220223037_parents_and_children.rb +17 -0
- data/vendor/bundle/gems/slim-1.2.1/test/rails/script/rails +6 -0
- data/vendor/bundle/gems/slim-1.2.1/test/rails/test/helper.rb +10 -0
- data/vendor/bundle/gems/slim-1.2.1/test/rails/test/test_slim.rb +71 -0
- data/vendor/bundle/gems/slim-1.2.1/test/slim/helper.rb +206 -0
- data/vendor/bundle/gems/slim-1.2.1/test/slim/test_chain_manipulation.rb +42 -0
- data/vendor/bundle/gems/slim-1.2.1/test/slim/test_code_blocks.rb +68 -0
- data/vendor/bundle/gems/slim-1.2.1/test/slim/test_code_escaping.rb +53 -0
- data/vendor/bundle/gems/slim-1.2.1/test/slim/test_code_evaluation.rb +289 -0
- data/vendor/bundle/gems/slim-1.2.1/test/slim/test_code_output.rb +168 -0
- data/vendor/bundle/gems/slim-1.2.1/test/slim/test_code_structure.rb +95 -0
- data/vendor/bundle/gems/slim-1.2.1/test/slim/test_embedded_engines.rb +145 -0
- data/vendor/bundle/gems/slim-1.2.1/test/slim/test_encoding.rb +9 -0
- data/vendor/bundle/gems/slim-1.2.1/test/slim/test_html_escaping.rb +40 -0
- data/vendor/bundle/gems/slim-1.2.1/test/slim/test_html_structure.rb +579 -0
- data/vendor/bundle/gems/slim-1.2.1/test/slim/test_parser_errors.rb +143 -0
- data/vendor/bundle/gems/slim-1.2.1/test/slim/test_pretty.rb +75 -0
- data/vendor/bundle/gems/slim-1.2.1/test/slim/test_ruby_errors.rb +210 -0
- data/vendor/bundle/gems/slim-1.2.1/test/slim/test_sections.rb +90 -0
- data/vendor/bundle/gems/slim-1.2.1/test/slim/test_slim_template.rb +118 -0
- data/vendor/bundle/gems/slim-1.2.1/test/slim/test_text_interpolation.rb +79 -0
- data/vendor/bundle/gems/slim-1.2.1/test/slim/test_wrapper.rb +39 -0
- data/vendor/bundle/gems/treetop-1.4.10/LICENSE +19 -0
- data/vendor/bundle/gems/treetop-1.4.10/README.md +188 -0
- data/vendor/bundle/gems/treetop-1.4.10/Rakefile +60 -0
- data/vendor/bundle/gems/treetop-1.4.10/bin/tt +112 -0
- data/vendor/bundle/gems/treetop-1.4.10/doc/contributing_and_planned_features.markdown +102 -0
- data/vendor/bundle/gems/treetop-1.4.10/doc/grammar_composition.markdown +65 -0
- data/vendor/bundle/gems/treetop-1.4.10/doc/index.markdown +88 -0
- data/vendor/bundle/gems/treetop-1.4.10/doc/pitfalls_and_advanced_techniques.markdown +51 -0
- data/vendor/bundle/gems/treetop-1.4.10/doc/semantic_interpretation.markdown +218 -0
- data/vendor/bundle/gems/treetop-1.4.10/doc/site/contribute.html +124 -0
- data/vendor/bundle/gems/treetop-1.4.10/doc/site/images/bottom_background.png +0 -0
- data/vendor/bundle/gems/treetop-1.4.10/doc/site/images/middle_background.png +0 -0
- data/vendor/bundle/gems/treetop-1.4.10/doc/site/images/paren_language_output.png +0 -0
- data/vendor/bundle/gems/treetop-1.4.10/doc/site/images/pivotal.gif +0 -0
- data/vendor/bundle/gems/treetop-1.4.10/doc/site/images/top_background.png +0 -0
- data/vendor/bundle/gems/treetop-1.4.10/doc/site/index.html +102 -0
- data/vendor/bundle/gems/treetop-1.4.10/doc/site/pitfalls_and_advanced_techniques.html +68 -0
- data/vendor/bundle/gems/treetop-1.4.10/doc/site/robots.txt +5 -0
- data/vendor/bundle/gems/treetop-1.4.10/doc/site/screen.css +134 -0
- data/vendor/bundle/gems/treetop-1.4.10/doc/site/semantic_interpretation.html +245 -0
- data/vendor/bundle/gems/treetop-1.4.10/doc/site/syntactic_recognition.html +278 -0
- data/vendor/bundle/gems/treetop-1.4.10/doc/site/using_in_ruby.html +123 -0
- data/vendor/bundle/gems/treetop-1.4.10/doc/site.rb +112 -0
- data/vendor/bundle/gems/treetop-1.4.10/doc/sitegen.rb +65 -0
- data/vendor/bundle/gems/treetop-1.4.10/doc/syntactic_recognition.markdown +215 -0
- data/vendor/bundle/gems/treetop-1.4.10/doc/using_in_ruby.markdown +105 -0
- data/vendor/bundle/gems/treetop-1.4.10/examples/lambda_calculus/arithmetic.rb +551 -0
- data/vendor/bundle/gems/treetop-1.4.10/examples/lambda_calculus/arithmetic.treetop +98 -0
- data/vendor/bundle/gems/treetop-1.4.10/examples/lambda_calculus/arithmetic_node_classes.rb +9 -0
- data/vendor/bundle/gems/treetop-1.4.10/examples/lambda_calculus/arithmetic_test.rb +58 -0
- data/vendor/bundle/gems/treetop-1.4.10/examples/lambda_calculus/lambda_calculus +0 -0
- data/vendor/bundle/gems/treetop-1.4.10/examples/lambda_calculus/lambda_calculus.rb +718 -0
- data/vendor/bundle/gems/treetop-1.4.10/examples/lambda_calculus/lambda_calculus.treetop +132 -0
- data/vendor/bundle/gems/treetop-1.4.10/examples/lambda_calculus/lambda_calculus_node_classes.rb +5 -0
- data/vendor/bundle/gems/treetop-1.4.10/examples/lambda_calculus/lambda_calculus_test.rb +89 -0
- data/vendor/bundle/gems/treetop-1.4.10/examples/lambda_calculus/test_helper.rb +18 -0
- data/vendor/bundle/gems/treetop-1.4.10/lib/treetop/bootstrap_gen_1_metagrammar.rb +42 -0
- data/vendor/bundle/gems/treetop-1.4.10/lib/treetop/compiler/grammar_compiler.rb +44 -0
- data/vendor/bundle/gems/treetop-1.4.10/lib/treetop/compiler/lexical_address_space.rb +17 -0
- data/vendor/bundle/gems/treetop-1.4.10/lib/treetop/compiler/metagrammar.rb +3550 -0
- data/vendor/bundle/gems/treetop-1.4.10/lib/treetop/compiler/metagrammar.treetop +448 -0
- data/vendor/bundle/gems/treetop-1.4.10/lib/treetop/compiler/node_classes/anything_symbol.rb +18 -0
- data/vendor/bundle/gems/treetop-1.4.10/lib/treetop/compiler/node_classes/atomic_expression.rb +14 -0
- data/vendor/bundle/gems/treetop-1.4.10/lib/treetop/compiler/node_classes/character_class.rb +28 -0
- data/vendor/bundle/gems/treetop-1.4.10/lib/treetop/compiler/node_classes/choice.rb +31 -0
- data/vendor/bundle/gems/treetop-1.4.10/lib/treetop/compiler/node_classes/declaration_sequence.rb +24 -0
- data/vendor/bundle/gems/treetop-1.4.10/lib/treetop/compiler/node_classes/grammar.rb +28 -0
- data/vendor/bundle/gems/treetop-1.4.10/lib/treetop/compiler/node_classes/inline_module.rb +27 -0
- data/vendor/bundle/gems/treetop-1.4.10/lib/treetop/compiler/node_classes/nonterminal.rb +13 -0
- data/vendor/bundle/gems/treetop-1.4.10/lib/treetop/compiler/node_classes/optional.rb +19 -0
- data/vendor/bundle/gems/treetop-1.4.10/lib/treetop/compiler/node_classes/parenthesized_expression.rb +9 -0
- data/vendor/bundle/gems/treetop-1.4.10/lib/treetop/compiler/node_classes/parsing_expression.rb +146 -0
- data/vendor/bundle/gems/treetop-1.4.10/lib/treetop/compiler/node_classes/parsing_rule.rb +58 -0
- data/vendor/bundle/gems/treetop-1.4.10/lib/treetop/compiler/node_classes/predicate.rb +45 -0
- data/vendor/bundle/gems/treetop-1.4.10/lib/treetop/compiler/node_classes/predicate_block.rb +16 -0
- data/vendor/bundle/gems/treetop-1.4.10/lib/treetop/compiler/node_classes/repetition.rb +89 -0
- data/vendor/bundle/gems/treetop-1.4.10/lib/treetop/compiler/node_classes/sequence.rb +71 -0
- data/vendor/bundle/gems/treetop-1.4.10/lib/treetop/compiler/node_classes/terminal.rb +20 -0
- data/vendor/bundle/gems/treetop-1.4.10/lib/treetop/compiler/node_classes/transient_prefix.rb +9 -0
- data/vendor/bundle/gems/treetop-1.4.10/lib/treetop/compiler/node_classes/treetop_file.rb +9 -0
- data/vendor/bundle/gems/treetop-1.4.10/lib/treetop/compiler/node_classes.rb +19 -0
- data/vendor/bundle/gems/treetop-1.4.10/lib/treetop/compiler/ruby_builder.rb +115 -0
- data/vendor/bundle/gems/treetop-1.4.10/lib/treetop/compiler.rb +7 -0
- data/vendor/bundle/gems/treetop-1.4.10/lib/treetop/polyglot.rb +9 -0
- data/vendor/bundle/gems/treetop-1.4.10/lib/treetop/ruby_extensions/string.rb +42 -0
- data/vendor/bundle/gems/treetop-1.4.10/lib/treetop/ruby_extensions.rb +1 -0
- data/vendor/bundle/gems/treetop-1.4.10/lib/treetop/runtime/compiled_parser.rb +115 -0
- data/vendor/bundle/gems/treetop-1.4.10/lib/treetop/runtime/interval_skip_list/head_node.rb +15 -0
- data/vendor/bundle/gems/treetop-1.4.10/lib/treetop/runtime/interval_skip_list/interval_skip_list.rb +200 -0
- data/vendor/bundle/gems/treetop-1.4.10/lib/treetop/runtime/interval_skip_list/node.rb +164 -0
- data/vendor/bundle/gems/treetop-1.4.10/lib/treetop/runtime/interval_skip_list.rb +3 -0
- data/vendor/bundle/gems/treetop-1.4.10/lib/treetop/runtime/syntax_node.rb +114 -0
- data/vendor/bundle/gems/treetop-1.4.10/lib/treetop/runtime/terminal_parse_failure.rb +16 -0
- data/vendor/bundle/gems/treetop-1.4.10/lib/treetop/runtime/terminal_syntax_node.rb +17 -0
- data/vendor/bundle/gems/treetop-1.4.10/lib/treetop/runtime.rb +6 -0
- data/vendor/bundle/gems/treetop-1.4.10/lib/treetop/version.rb +9 -0
- data/vendor/bundle/gems/treetop-1.4.10/lib/treetop.rb +3 -0
- data/vendor/bundle/gems/treetop-1.4.10/spec/compiler/and_predicate_spec.rb +36 -0
- data/vendor/bundle/gems/treetop-1.4.10/spec/compiler/anything_symbol_spec.rb +44 -0
- data/vendor/bundle/gems/treetop-1.4.10/spec/compiler/character_class_spec.rb +276 -0
- data/vendor/bundle/gems/treetop-1.4.10/spec/compiler/choice_spec.rb +80 -0
- data/vendor/bundle/gems/treetop-1.4.10/spec/compiler/circular_compilation_spec.rb +30 -0
- data/vendor/bundle/gems/treetop-1.4.10/spec/compiler/failure_propagation_functional_spec.rb +21 -0
- data/vendor/bundle/gems/treetop-1.4.10/spec/compiler/grammar_compiler_spec.rb +91 -0
- data/vendor/bundle/gems/treetop-1.4.10/spec/compiler/grammar_spec.rb +41 -0
- data/vendor/bundle/gems/treetop-1.4.10/spec/compiler/multibyte_chars_spec.rb +39 -0
- data/vendor/bundle/gems/treetop-1.4.10/spec/compiler/namespace_spec.rb +42 -0
- data/vendor/bundle/gems/treetop-1.4.10/spec/compiler/nonterminal_symbol_spec.rb +40 -0
- data/vendor/bundle/gems/treetop-1.4.10/spec/compiler/not_predicate_spec.rb +38 -0
- data/vendor/bundle/gems/treetop-1.4.10/spec/compiler/occurrence_range_spec.rb +189 -0
- data/vendor/bundle/gems/treetop-1.4.10/spec/compiler/one_or_more_spec.rb +35 -0
- data/vendor/bundle/gems/treetop-1.4.10/spec/compiler/optional_spec.rb +37 -0
- data/vendor/bundle/gems/treetop-1.4.10/spec/compiler/parenthesized_expression_spec.rb +19 -0
- data/vendor/bundle/gems/treetop-1.4.10/spec/compiler/parsing_rule_spec.rb +61 -0
- data/vendor/bundle/gems/treetop-1.4.10/spec/compiler/repeated_subrule_spec.rb +29 -0
- data/vendor/bundle/gems/treetop-1.4.10/spec/compiler/semantic_predicate_spec.rb +175 -0
- data/vendor/bundle/gems/treetop-1.4.10/spec/compiler/sequence_spec.rb +115 -0
- data/vendor/bundle/gems/treetop-1.4.10/spec/compiler/terminal_spec.rb +81 -0
- data/vendor/bundle/gems/treetop-1.4.10/spec/compiler/terminal_symbol_spec.rb +37 -0
- data/vendor/bundle/gems/treetop-1.4.10/spec/compiler/test_grammar.treetop +7 -0
- data/vendor/bundle/gems/treetop-1.4.10/spec/compiler/test_grammar.tt +7 -0
- data/vendor/bundle/gems/treetop-1.4.10/spec/compiler/test_grammar_do.treetop +7 -0
- data/vendor/bundle/gems/treetop-1.4.10/spec/compiler/tt_compiler_spec.rb +217 -0
- data/vendor/bundle/gems/treetop-1.4.10/spec/compiler/zero_or_more_spec.rb +56 -0
- data/vendor/bundle/gems/treetop-1.4.10/spec/composition/a.treetop +11 -0
- data/vendor/bundle/gems/treetop-1.4.10/spec/composition/b.treetop +11 -0
- data/vendor/bundle/gems/treetop-1.4.10/spec/composition/c.treetop +10 -0
- data/vendor/bundle/gems/treetop-1.4.10/spec/composition/d.treetop +10 -0
- data/vendor/bundle/gems/treetop-1.4.10/spec/composition/f.treetop +17 -0
- data/vendor/bundle/gems/treetop-1.4.10/spec/composition/grammar_composition_spec.rb +40 -0
- data/vendor/bundle/gems/treetop-1.4.10/spec/composition/subfolder/e_includes_c.treetop +15 -0
- data/vendor/bundle/gems/treetop-1.4.10/spec/ruby_extensions/string_spec.rb +32 -0
- data/vendor/bundle/gems/treetop-1.4.10/spec/runtime/compiled_parser_spec.rb +123 -0
- data/vendor/bundle/gems/treetop-1.4.10/spec/runtime/interval_skip_list/delete_spec.rb +147 -0
- data/vendor/bundle/gems/treetop-1.4.10/spec/runtime/interval_skip_list/expire_range_spec.rb +349 -0
- data/vendor/bundle/gems/treetop-1.4.10/spec/runtime/interval_skip_list/insert_and_delete_node_spec.rb +385 -0
- data/vendor/bundle/gems/treetop-1.4.10/spec/runtime/interval_skip_list/insert_spec.rb +660 -0
- data/vendor/bundle/gems/treetop-1.4.10/spec/runtime/interval_skip_list/interval_skip_list_spec.graffle +6175 -0
- data/vendor/bundle/gems/treetop-1.4.10/spec/runtime/interval_skip_list/interval_skip_list_spec.rb +58 -0
- data/vendor/bundle/gems/treetop-1.4.10/spec/runtime/interval_skip_list/palindromic_fixture.rb +35 -0
- data/vendor/bundle/gems/treetop-1.4.10/spec/runtime/interval_skip_list/palindromic_fixture_spec.rb +163 -0
- data/vendor/bundle/gems/treetop-1.4.10/spec/runtime/interval_skip_list/spec_helper.rb +91 -0
- data/vendor/bundle/gems/treetop-1.4.10/spec/runtime/syntax_node_spec.rb +77 -0
- data/vendor/bundle/gems/treetop-1.4.10/spec/spec_helper.rb +114 -0
- data/vendor/bundle/gems/treetop-1.4.10/treetop.gemspec +186 -0
- data/vendor/bundle/gems/vegas-0.1.11/History.txt +69 -0
- data/vendor/bundle/gems/vegas-0.1.11/LICENSE +22 -0
- data/vendor/bundle/gems/vegas-0.1.11/README.rdoc +47 -0
- data/vendor/bundle/gems/vegas-0.1.11/Rakefile +47 -0
- data/vendor/bundle/gems/vegas-0.1.11/lib/vegas/runner.rb +404 -0
- data/vendor/bundle/gems/vegas-0.1.11/lib/vegas.rb +16 -0
- data/vendor/bundle/gems/vegas-0.1.11/test/apps.rb +26 -0
- data/vendor/bundle/gems/vegas-0.1.11/test/test_app/bin/test_app +9 -0
- data/vendor/bundle/gems/vegas-0.1.11/test/test_app/bin/test_rack_app +12 -0
- data/vendor/bundle/gems/vegas-0.1.11/test/test_app/test_app.rb +10 -0
- data/vendor/bundle/gems/vegas-0.1.11/test/test_helper.rb +57 -0
- data/vendor/bundle/gems/vegas-0.1.11/test/test_vegas_runner.rb +191 -0
- data/vendor/bundle/gems/vegas-0.1.11/vegas.gemspec +61 -0
- data/vendor/bundle/specifications/carrierwave-0.6.2.gemspec +65 -0
- data/vendor/bundle/specifications/carrierwave-mongoid-0.2.1.gemspec +44 -0
- data/vendor/bundle/specifications/coffee-script-source-1.3.3.gemspec +26 -0
- data/vendor/bundle/specifications/dragonfly-0.9.12.gemspec +85 -0
- data/vendor/bundle/specifications/execjs-1.4.0.gemspec +31 -0
- data/vendor/bundle/specifications/haml-3.1.6.gemspec +34 -0
- data/vendor/bundle/specifications/json-1.7.3.gemspec +36 -0
- data/vendor/bundle/specifications/mail-2.4.4.gemspec +36 -0
- data/vendor/bundle/specifications/mime-types-1.18.gemspec +56 -0
- data/vendor/bundle/specifications/polyglot-0.3.3.gemspec +28 -0
- data/vendor/bundle/specifications/qu-0.1.4.gemspec +28 -0
- data/vendor/bundle/specifications/qu-mongo-0.1.4.gemspec +34 -0
- data/vendor/bundle/specifications/redis-2.2.2.gemspec +27 -0
- data/vendor/bundle/specifications/redis-namespace-1.0.3.gemspec +28 -0
- data/vendor/bundle/specifications/resque-1.20.0.gemspec +41 -0
- data/vendor/bundle/specifications/resque-mongo-1.9.8.1.gemspec +41 -0
- data/vendor/bundle/specifications/slim-1.2.1.gemspec +54 -0
- data/vendor/bundle/specifications/treetop-1.4.10.gemspec +53 -0
- data/vendor/bundle/specifications/vegas-0.1.11.gemspec +40 -0
- metadata +1495 -9
- data/lib/classiccms/public/uploadify.swf +0 -0
- data/lib/classiccms/scaffold/models/Article.rb +0 -3
- data/lib/classiccms/scaffold/rackup.ru +0 -15
@@ -0,0 +1,1478 @@
|
|
1
|
+
require 'dragonfly/active_model_extensions/spec_helper'
|
2
|
+
|
3
|
+
describe Item do
|
4
|
+
|
5
|
+
def set_up_item_class(app=test_app)
|
6
|
+
app.define_macro(MyModel, :image_accessor)
|
7
|
+
Item.class_eval do
|
8
|
+
image_accessor :preview_image
|
9
|
+
end
|
10
|
+
end
|
11
|
+
|
12
|
+
# See extra setup in models / initializer files
|
13
|
+
|
14
|
+
describe "defining accessors" do
|
15
|
+
|
16
|
+
let(:app1){ Dragonfly[:img] }
|
17
|
+
let(:app2){ Dragonfly[:vid] }
|
18
|
+
|
19
|
+
describe "attachment classes" do
|
20
|
+
before(:each) do
|
21
|
+
app1.define_macro(MyModel, :image_accessor)
|
22
|
+
app2.define_macro(MyModel, :video_accessor)
|
23
|
+
Item.class_eval do
|
24
|
+
image_accessor :preview_image
|
25
|
+
video_accessor :trailer_video
|
26
|
+
end
|
27
|
+
@classes = Item.dragonfly_attachment_classes
|
28
|
+
@class1, @class2 = @classes
|
29
|
+
end
|
30
|
+
|
31
|
+
it "should return the attachment classes" do
|
32
|
+
@class1.superclass.should == Dragonfly::ActiveModelExtensions::Attachment
|
33
|
+
@class2.superclass.should == Dragonfly::ActiveModelExtensions::Attachment
|
34
|
+
end
|
35
|
+
|
36
|
+
it "should associate the correct app with each class" do
|
37
|
+
@class1.app.should == app1
|
38
|
+
@class2.app.should == app2
|
39
|
+
end
|
40
|
+
|
41
|
+
it "should associate the correct attribute with each class" do
|
42
|
+
@class1.attribute.should == :preview_image
|
43
|
+
@class2.attribute.should == :trailer_video
|
44
|
+
end
|
45
|
+
|
46
|
+
it "should associate the correct model class with each class" do
|
47
|
+
@class1.model_class.should == Item
|
48
|
+
@class2.model_class.should == Item
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
describe "included modules (e.g. Mongoid::Document)" do
|
53
|
+
|
54
|
+
it "should work" do
|
55
|
+
mongoid_document = Module.new
|
56
|
+
app1.define_macro_on_include(mongoid_document, :dog_accessor)
|
57
|
+
model_class = Class.new do
|
58
|
+
def self.before_save(*args); end
|
59
|
+
def self.before_destroy(*args); end
|
60
|
+
include mongoid_document
|
61
|
+
dog_accessor :doogie
|
62
|
+
end
|
63
|
+
klass = model_class.dragonfly_attachment_classes.first
|
64
|
+
klass.app.should == app1
|
65
|
+
klass.attribute.should == :doogie
|
66
|
+
end
|
67
|
+
|
68
|
+
it "should work with two apps" do
|
69
|
+
mongoid_document = Module.new
|
70
|
+
app1.define_macro_on_include(mongoid_document, :image_accessor)
|
71
|
+
app2.define_macro_on_include(mongoid_document, :video_accessor)
|
72
|
+
model_class = Class.new do
|
73
|
+
def self.before_save(*args); end
|
74
|
+
def self.before_destroy(*args); end
|
75
|
+
include mongoid_document
|
76
|
+
image_accessor :doogie
|
77
|
+
video_accessor :boogie
|
78
|
+
end
|
79
|
+
model_class.dragonfly_attachment_classes[0].app.should == app1
|
80
|
+
model_class.dragonfly_attachment_classes[1].app.should == app2
|
81
|
+
end
|
82
|
+
|
83
|
+
end
|
84
|
+
|
85
|
+
end
|
86
|
+
|
87
|
+
describe "correctly defined" do
|
88
|
+
|
89
|
+
before(:each) do
|
90
|
+
@app = test_app
|
91
|
+
@app.define_macro(MyModel, :image_accessor)
|
92
|
+
Item.class_eval do
|
93
|
+
image_accessor :preview_image
|
94
|
+
end
|
95
|
+
@item = Item.new
|
96
|
+
end
|
97
|
+
|
98
|
+
it "should provide a reader" do
|
99
|
+
@item.should respond_to(:preview_image)
|
100
|
+
end
|
101
|
+
|
102
|
+
it "should provide a writer" do
|
103
|
+
@item.should respond_to(:preview_image=)
|
104
|
+
end
|
105
|
+
|
106
|
+
describe "when there has been nothing assigned" do
|
107
|
+
it "the reader should return nil" do
|
108
|
+
@item.preview_image.should be_nil
|
109
|
+
end
|
110
|
+
it "the uid should be nil" do
|
111
|
+
@item.preview_image_uid.should be_nil
|
112
|
+
end
|
113
|
+
it "should not try to store anything on save" do
|
114
|
+
@app.datastore.should_not_receive(:store)
|
115
|
+
@item.save!
|
116
|
+
end
|
117
|
+
it "should not try to destroy anything on save" do
|
118
|
+
@app.datastore.should_not_receive(:destroy)
|
119
|
+
@item.save!
|
120
|
+
end
|
121
|
+
it "should not try to destroy anything on destroy" do
|
122
|
+
@app.datastore.should_not_receive(:destroy)
|
123
|
+
@item.destroy
|
124
|
+
end
|
125
|
+
end
|
126
|
+
|
127
|
+
describe "when the uid is set manually" do
|
128
|
+
before(:each) do
|
129
|
+
@item.preview_image_uid = 'some_known_uid'
|
130
|
+
end
|
131
|
+
it "should not try to retrieve any data" do
|
132
|
+
@app.datastore.should_not_receive(:retrieve)
|
133
|
+
@item.save!
|
134
|
+
end
|
135
|
+
it "should not try to destroy any data" do
|
136
|
+
@app.datastore.should_not_receive(:destroy)
|
137
|
+
@item.save!
|
138
|
+
end
|
139
|
+
it "should not try to store any data" do
|
140
|
+
@app.datastore.should_not_receive(:store)
|
141
|
+
@item.save!
|
142
|
+
end
|
143
|
+
end
|
144
|
+
|
145
|
+
describe "when there has been some thing assigned but not saved" do
|
146
|
+
before(:each) do
|
147
|
+
@item.preview_image = "DATASTRING"
|
148
|
+
end
|
149
|
+
it "the reader should return an attachment" do
|
150
|
+
@item.preview_image.should be_a(Dragonfly::ActiveModelExtensions::Attachment)
|
151
|
+
end
|
152
|
+
it "the uid should be nil" do
|
153
|
+
@item.preview_image_uid.should be_nil
|
154
|
+
end
|
155
|
+
it "should store the image when saved" do
|
156
|
+
@app.datastore.should_receive(:store).with(a_temp_object_with_data("DATASTRING"), hash_including)
|
157
|
+
@item.save!
|
158
|
+
end
|
159
|
+
it "should not try to destroy anything on destroy" do
|
160
|
+
@app.datastore.should_not_receive(:destroy)
|
161
|
+
@item.destroy
|
162
|
+
end
|
163
|
+
it "should return nil for the url" do
|
164
|
+
@item.preview_image.url.should be_nil
|
165
|
+
end
|
166
|
+
describe "when the uid is set manually" do
|
167
|
+
before(:each) do
|
168
|
+
@item.preview_image_uid = 'some_known_uid'
|
169
|
+
end
|
170
|
+
it "should not try to retrieve any data" do
|
171
|
+
@app.datastore.should_not_receive(:retrieve)
|
172
|
+
@item.save!
|
173
|
+
end
|
174
|
+
it "should not try to destroy any data" do
|
175
|
+
@app.datastore.should_not_receive(:destroy)
|
176
|
+
@item.save!
|
177
|
+
end
|
178
|
+
it "should not try to store any data" do
|
179
|
+
@app.datastore.should_not_receive(:store)
|
180
|
+
@item.save!
|
181
|
+
end
|
182
|
+
end
|
183
|
+
|
184
|
+
end
|
185
|
+
|
186
|
+
describe "when something has been assigned and saved" do
|
187
|
+
|
188
|
+
before(:each) do
|
189
|
+
@item.preview_image = "DATASTRING"
|
190
|
+
@app.datastore.should_receive(:store).with(a_temp_object_with_data("DATASTRING"), hash_including).once.and_return('some_uid')
|
191
|
+
@item.save!
|
192
|
+
end
|
193
|
+
|
194
|
+
it "should have the correct uid" do
|
195
|
+
@item.preview_image_uid.should == 'some_uid'
|
196
|
+
end
|
197
|
+
it "should not try to store anything if saved again" do
|
198
|
+
@app.datastore.should_not_receive(:store)
|
199
|
+
@item.save!
|
200
|
+
end
|
201
|
+
|
202
|
+
it "should not try to destroy anything if saved again" do
|
203
|
+
@app.datastore.should_not_receive(:destroy)
|
204
|
+
@item.save!
|
205
|
+
end
|
206
|
+
|
207
|
+
it "should destroy the data on destroy" do
|
208
|
+
@app.datastore.should_receive(:destroy).with('some_uid')
|
209
|
+
@item.destroy
|
210
|
+
end
|
211
|
+
|
212
|
+
it "should destroy the old data when the uid is set manually" do
|
213
|
+
@app.datastore.should_receive(:destroy).with('some_uid')
|
214
|
+
@item.preview_image_uid = 'some_known_uid'
|
215
|
+
@item.save!
|
216
|
+
end
|
217
|
+
|
218
|
+
# SEE model_urls_spec.rb for urls
|
219
|
+
|
220
|
+
describe "when accessed by a new model object" do
|
221
|
+
before(:each) do
|
222
|
+
@item = Item.find(@item.id)
|
223
|
+
end
|
224
|
+
it "should destroy the data on destroy" do
|
225
|
+
@app.datastore.should_receive(:destroy).with(@item.preview_image_uid)
|
226
|
+
@item.destroy
|
227
|
+
end
|
228
|
+
end
|
229
|
+
|
230
|
+
describe "when something new is assigned" do
|
231
|
+
before(:each) do
|
232
|
+
@item.preview_image = "ANEWDATASTRING"
|
233
|
+
@app.datastore.stub!(:store).and_return('some_uid')
|
234
|
+
end
|
235
|
+
it "should set the uid to nil" do
|
236
|
+
@item.preview_image_uid.should be_nil
|
237
|
+
end
|
238
|
+
it "should destroy the old data when saved" do
|
239
|
+
@app.datastore.should_receive(:destroy).with('some_uid')
|
240
|
+
@item.save!
|
241
|
+
end
|
242
|
+
|
243
|
+
it "should not try to destroy the old data if saved again" do
|
244
|
+
@app.datastore.should_receive(:destroy).with('some_uid')
|
245
|
+
@item.save!
|
246
|
+
@app.datastore.should_not_receive(:destroy).with('some_uid')
|
247
|
+
@item.save!
|
248
|
+
end
|
249
|
+
it "should destroy the old data when saved, even if yet another thing is assigned" do
|
250
|
+
@item.preview_image = "YET ANOTHER DATA STRING"
|
251
|
+
@app.datastore.should_receive(:destroy).with('some_uid')
|
252
|
+
@item.save!
|
253
|
+
end
|
254
|
+
it "should store the new data when saved" do
|
255
|
+
@app.datastore.should_receive(:store).with(a_temp_object_with_data("ANEWDATASTRING"), hash_including)
|
256
|
+
@item.save!
|
257
|
+
end
|
258
|
+
it "should destroy the old data on destroy" do
|
259
|
+
@app.datastore.should_receive(:destroy).with('some_uid')
|
260
|
+
@item.destroy
|
261
|
+
end
|
262
|
+
it "should destroy the old data on destroy, even if yet another thing is assigned" do
|
263
|
+
@item.preview_image = "YET ANOTHER DATA STRING"
|
264
|
+
@app.datastore.should_receive(:destroy).with('some_uid')
|
265
|
+
@item.destroy
|
266
|
+
end
|
267
|
+
it "should destroy the old data when the uid has been set manually" do
|
268
|
+
@app.datastore.should_receive(:destroy).with('some_uid')
|
269
|
+
@item.preview_image_uid = 'some_known_uid'
|
270
|
+
@item.save!
|
271
|
+
end
|
272
|
+
it "should return the new size" do
|
273
|
+
@item.preview_image.size.should == 14
|
274
|
+
end
|
275
|
+
it "should return the new data" do
|
276
|
+
@item.preview_image.data.should == 'ANEWDATASTRING'
|
277
|
+
end
|
278
|
+
|
279
|
+
it 'should mark the attribute as changed' do
|
280
|
+
@item.preview_image_uid_changed?.should be_true
|
281
|
+
end
|
282
|
+
end
|
283
|
+
|
284
|
+
describe "when it is set to nil" do
|
285
|
+
before(:each) do
|
286
|
+
@item.preview_image = nil
|
287
|
+
end
|
288
|
+
it "should set the uid to nil" do
|
289
|
+
@item.preview_image_uid.should be_nil
|
290
|
+
end
|
291
|
+
it "should return the attribute as nil" do
|
292
|
+
@item.preview_image.should be_nil
|
293
|
+
end
|
294
|
+
it "should destroy the data on save" do
|
295
|
+
@app.datastore.should_receive(:destroy).with('some_uid')
|
296
|
+
@item.save!
|
297
|
+
@item.preview_image.should be_nil
|
298
|
+
end
|
299
|
+
it "should destroy the old data on destroy" do
|
300
|
+
@app.datastore.should_receive(:destroy).with('some_uid')
|
301
|
+
@item.destroy
|
302
|
+
end
|
303
|
+
|
304
|
+
it 'should mark the attribute as changed' do
|
305
|
+
@item.preview_image_uid_changed?.should be_true
|
306
|
+
end
|
307
|
+
|
308
|
+
end
|
309
|
+
|
310
|
+
describe "destroy errors" do
|
311
|
+
it "should log a warning if the data wasn't found on destroy" do
|
312
|
+
@app.datastore.should_receive(:destroy).with('some_uid').and_raise(Dragonfly::DataStorage::DataNotFound)
|
313
|
+
@app.log.should_receive(:warn)
|
314
|
+
@item.destroy
|
315
|
+
end
|
316
|
+
|
317
|
+
it "should log a warning if the data wasn't found on destroy" do
|
318
|
+
@app.datastore.should_receive(:destroy).with('some_uid').and_raise(Dragonfly::DataStorage::DestroyError)
|
319
|
+
@app.log.should_receive(:warn)
|
320
|
+
@item.destroy
|
321
|
+
end
|
322
|
+
end
|
323
|
+
|
324
|
+
end
|
325
|
+
|
326
|
+
describe "other types of assignment" do
|
327
|
+
before(:each) do
|
328
|
+
@app.generator.add :egg do
|
329
|
+
"Gungedin"
|
330
|
+
end
|
331
|
+
@app.processor.add :doogie do |temp_object|
|
332
|
+
temp_object.data.upcase
|
333
|
+
end
|
334
|
+
end
|
335
|
+
|
336
|
+
describe "assigning with a job" do
|
337
|
+
before(:each) do
|
338
|
+
@job = @app.generate(:egg)
|
339
|
+
@item.preview_image = @job
|
340
|
+
end
|
341
|
+
|
342
|
+
it "should work" do
|
343
|
+
@item.preview_image.data.should == 'Gungedin'
|
344
|
+
end
|
345
|
+
|
346
|
+
it "should not be affected by subsequent changes to the job" do
|
347
|
+
@job.process!(:doogie)
|
348
|
+
@item.preview_image.data.should == 'Gungedin'
|
349
|
+
end
|
350
|
+
end
|
351
|
+
|
352
|
+
describe "assigning with another attachment" do
|
353
|
+
before(:each) do
|
354
|
+
Item.class_eval do
|
355
|
+
image_accessor :other_image
|
356
|
+
end
|
357
|
+
end
|
358
|
+
it "should work like assigning the job" do
|
359
|
+
@item.preview_image = 'eggheads'
|
360
|
+
@item.other_image = @item.preview_image
|
361
|
+
@item.preview_image = 'dogchin'
|
362
|
+
@item.other_image.data.should == 'eggheads'
|
363
|
+
end
|
364
|
+
end
|
365
|
+
|
366
|
+
describe "assigning by means of a bang method" do
|
367
|
+
before(:each) do
|
368
|
+
@app.processor.add :double do |temp_object|
|
369
|
+
temp_object.data * 2
|
370
|
+
end
|
371
|
+
@app.encoder.add do |temp_object, format|
|
372
|
+
temp_object.data.downcase + format.to_s
|
373
|
+
end
|
374
|
+
@item.preview_image = "HELLO"
|
375
|
+
end
|
376
|
+
it "should modify as if being assigned again" do
|
377
|
+
@item.preview_image.process!(:double)
|
378
|
+
@item.preview_image.data.should == 'HELLOHELLO'
|
379
|
+
end
|
380
|
+
it "should update the magic attributes" do
|
381
|
+
@item.preview_image.process!(:double)
|
382
|
+
@item.preview_image_size.should == 10
|
383
|
+
end
|
384
|
+
it "should work for encode" do
|
385
|
+
@item.preview_image.encode!(:egg)
|
386
|
+
@item.preview_image.data.should == 'helloegg'
|
387
|
+
end
|
388
|
+
it "should work repeatedly" do
|
389
|
+
@item.preview_image.process!(:double).encode!(:egg)
|
390
|
+
@item.preview_image.data.should == 'hellohelloegg'
|
391
|
+
@item.preview_image_size.should == 13
|
392
|
+
end
|
393
|
+
end
|
394
|
+
end
|
395
|
+
|
396
|
+
describe "remote_url" do
|
397
|
+
it "should give the remote url if the uid is set" do
|
398
|
+
@item.preview_image_uid = 'some/uid'
|
399
|
+
@app.should_receive(:remote_url_for).with('some/uid', :some => 'param').and_return('http://egg.nog')
|
400
|
+
@item.preview_image.remote_url(:some => 'param').should == 'http://egg.nog'
|
401
|
+
end
|
402
|
+
it "should return nil if the content is not yet saved" do
|
403
|
+
@item.preview_image = "hello"
|
404
|
+
@item.preview_image.remote_url(:some => 'param').should be_nil
|
405
|
+
end
|
406
|
+
end
|
407
|
+
|
408
|
+
end
|
409
|
+
|
410
|
+
describe "validations" do
|
411
|
+
|
412
|
+
before(:all) do
|
413
|
+
@app = test_app
|
414
|
+
@app.define_macro(MyModel, :image_accessor)
|
415
|
+
end
|
416
|
+
|
417
|
+
describe "validates_presence_of" do
|
418
|
+
|
419
|
+
before(:all) do
|
420
|
+
Item.class_eval do
|
421
|
+
image_accessor :preview_image
|
422
|
+
validates_presence_of :preview_image
|
423
|
+
end
|
424
|
+
end
|
425
|
+
|
426
|
+
it "should be valid if set" do
|
427
|
+
Item.new(:preview_image => "1234567890").should be_valid
|
428
|
+
end
|
429
|
+
|
430
|
+
it "should be invalid if not set" do
|
431
|
+
Item.new.should_not be_valid
|
432
|
+
end
|
433
|
+
|
434
|
+
end
|
435
|
+
|
436
|
+
describe "validates_size_of" do
|
437
|
+
|
438
|
+
before(:all) do
|
439
|
+
Item.class_eval do
|
440
|
+
image_accessor :preview_image
|
441
|
+
validates_size_of :preview_image, :within => (6..10)
|
442
|
+
end
|
443
|
+
end
|
444
|
+
|
445
|
+
it "should be valid if ok" do
|
446
|
+
Item.new(:preview_image => "1234567890").should be_valid
|
447
|
+
end
|
448
|
+
|
449
|
+
it "should be invalid if too small" do
|
450
|
+
Item.new(:preview_image => "12345").should_not be_valid
|
451
|
+
end
|
452
|
+
|
453
|
+
end
|
454
|
+
|
455
|
+
describe "validates_property" do
|
456
|
+
|
457
|
+
before(:each) do
|
458
|
+
@item = Item.new(:preview_image => "1234567890")
|
459
|
+
end
|
460
|
+
|
461
|
+
before(:all) do
|
462
|
+
custom_analyser = Class.new do
|
463
|
+
def mime_type(temp_object)
|
464
|
+
case temp_object.data
|
465
|
+
when "WRONG TYPE" then 'wrong/type'
|
466
|
+
when "OTHER TYPE" then nil
|
467
|
+
else 'how/special'
|
468
|
+
end
|
469
|
+
end
|
470
|
+
|
471
|
+
def number_of_Gs(temp_object)
|
472
|
+
temp_object.data.count('G')
|
473
|
+
end
|
474
|
+
end
|
475
|
+
@app.analyser.register(custom_analyser)
|
476
|
+
|
477
|
+
Item.class_eval do
|
478
|
+
validates_property :mime_type, :of => :preview_image, :in => ['how/special', 'how/crazy'], :if => :its_friday
|
479
|
+
validates_property :mime_type, :of => [:other_image, :yet_another_image], :as => 'how/special'
|
480
|
+
validates_property :number_of_Gs, :of => :preview_image, :in => (0..2)
|
481
|
+
validates_property :mime_type, :of => :otra_imagen, :in => ['que/pasa', 'illo/tio'], :message => "tipo de contenido incorrecto. Que chungo tio"
|
482
|
+
|
483
|
+
image_accessor :preview_image
|
484
|
+
image_accessor :other_image
|
485
|
+
image_accessor :yet_another_image
|
486
|
+
image_accessor :otra_imagen
|
487
|
+
|
488
|
+
def its_friday
|
489
|
+
true
|
490
|
+
end
|
491
|
+
|
492
|
+
end
|
493
|
+
end
|
494
|
+
|
495
|
+
it "should be valid if nil, if not validated on presence (even with validates_property)" do
|
496
|
+
@item.other_image = nil
|
497
|
+
@item.should be_valid
|
498
|
+
end
|
499
|
+
|
500
|
+
it "should be invalid if the property is nil" do
|
501
|
+
@item.preview_image = "OTHER TYPE"
|
502
|
+
@item.should_not be_valid
|
503
|
+
@item.errors[:preview_image].should == ["mime type is incorrect. It needs to be one of 'how/special', 'how/crazy', but was 'application/octet-stream'"]
|
504
|
+
end
|
505
|
+
|
506
|
+
it "should be invalid if the property is wrong" do
|
507
|
+
@item.preview_image = "WRONG TYPE"
|
508
|
+
@item.should_not be_valid
|
509
|
+
@item.errors[:preview_image].should == ["mime type is incorrect. It needs to be one of 'how/special', 'how/crazy', but was 'wrong/type'"]
|
510
|
+
end
|
511
|
+
|
512
|
+
it "should work for a range" do
|
513
|
+
@item.preview_image = "GOOGLE GUM"
|
514
|
+
@item.should_not be_valid
|
515
|
+
@item.errors[:preview_image].should == ["number of gs is incorrect. It needs to be between 0 and 2, but was '3'"]
|
516
|
+
end
|
517
|
+
|
518
|
+
it "should validate individually" do
|
519
|
+
@item.other_image = "1234567"
|
520
|
+
@item.yet_another_image = "WRONG TYPE"
|
521
|
+
@item.should_not be_valid
|
522
|
+
@item.errors[:other_image].should == []
|
523
|
+
@item.errors[:yet_another_image].should == ["mime type is incorrect. It needs to be 'how/special', but was 'wrong/type'"]
|
524
|
+
end
|
525
|
+
|
526
|
+
it "should include standard extra options like 'if' on mime type validation" do
|
527
|
+
@item.should_receive(:its_friday).and_return(false)
|
528
|
+
@item.preview_image = "WRONG TYPE"
|
529
|
+
@item.should be_valid
|
530
|
+
end
|
531
|
+
|
532
|
+
it "should allow case sensitivity to be turned off when :as is specified" do
|
533
|
+
@item.should_receive(:its_friday).and_return(false)
|
534
|
+
Item.class_eval do
|
535
|
+
validates_property :mime_type, :of => :preview_image, :as => 'WronG/TypE', :case_sensitive => false
|
536
|
+
end
|
537
|
+
@item.preview_image = "WRONG TYPE"
|
538
|
+
@item.should be_valid
|
539
|
+
end
|
540
|
+
|
541
|
+
it "should allow case sensitivity to be turned off when :in is specified" do
|
542
|
+
@item.should_receive(:its_friday).and_return(false)
|
543
|
+
Item.class_eval do
|
544
|
+
validates_property :mime_type, :of => :preview_image, :in => ['WronG/TypE'], :case_sensitive => false
|
545
|
+
end
|
546
|
+
@item.preview_image = "WRONG TYPE"
|
547
|
+
@item.should be_valid
|
548
|
+
end
|
549
|
+
|
550
|
+
it "should require either :as or :in as an argument" do
|
551
|
+
lambda{
|
552
|
+
Item.class_eval do
|
553
|
+
validates_property :mime_type, :of => :preview_image
|
554
|
+
end
|
555
|
+
}.should raise_error(ArgumentError)
|
556
|
+
end
|
557
|
+
|
558
|
+
it "should require :of as an argument" do
|
559
|
+
lambda{
|
560
|
+
Item.class_eval do
|
561
|
+
validates_property :mime_type, :as => 'hi/there'
|
562
|
+
end
|
563
|
+
}.should raise_error(ArgumentError)
|
564
|
+
end
|
565
|
+
|
566
|
+
it "should allow for custom messages" do
|
567
|
+
@item.otra_imagen = "WRONG TYPE"
|
568
|
+
@item.should_not be_valid
|
569
|
+
@item.errors[:otra_imagen].should == ["tipo de contenido incorrecto. Que chungo tio"]
|
570
|
+
end
|
571
|
+
|
572
|
+
it "should allow for custom messages including access to the property name and expected/allowed values" do
|
573
|
+
@item.should_receive(:its_friday).and_return(false) # hack to get rid of other validation
|
574
|
+
Item.class_eval do
|
575
|
+
validates_property :mime_type, :of => :preview_image, :as => 'one/thing',
|
576
|
+
:message => proc{|actual, model| "Unlucky #{model.title}! Was #{actual}" }
|
577
|
+
end
|
578
|
+
@item.title = 'scubby'
|
579
|
+
@item.preview_image = "WRONG TYPE"
|
580
|
+
@item.should_not be_valid
|
581
|
+
@item.errors[:preview_image].should == ["Unlucky scubby! Was wrong/type"]
|
582
|
+
end
|
583
|
+
|
584
|
+
end
|
585
|
+
|
586
|
+
end
|
587
|
+
|
588
|
+
describe "extra properties" do
|
589
|
+
|
590
|
+
before(:each) do
|
591
|
+
@app = test_app
|
592
|
+
custom_analyser = Class.new do
|
593
|
+
def some_analyser_method(temp_object)
|
594
|
+
"abc" + temp_object.data[0..0]
|
595
|
+
end
|
596
|
+
def number_of_As(temp_object); temp_object.data.count('A'); end
|
597
|
+
end
|
598
|
+
@app.analyser.register(custom_analyser)
|
599
|
+
@app.define_macro(MyModel, :image_accessor)
|
600
|
+
Item.class_eval do
|
601
|
+
image_accessor :preview_image
|
602
|
+
end
|
603
|
+
@item = Item.new
|
604
|
+
end
|
605
|
+
|
606
|
+
describe "magic attributes" do
|
607
|
+
|
608
|
+
it "should default the magic attribute as nil" do
|
609
|
+
@item.preview_image_some_analyser_method.should be_nil
|
610
|
+
end
|
611
|
+
|
612
|
+
it "should set the magic attribute when assigned" do
|
613
|
+
@item.preview_image = '123'
|
614
|
+
@item.preview_image_some_analyser_method.should == 'abc1'
|
615
|
+
end
|
616
|
+
|
617
|
+
it "should not set non-magic attributes with the same prefix when assigned" do
|
618
|
+
@item.preview_image_blah_blah = 'wassup'
|
619
|
+
@item.preview_image = '123'
|
620
|
+
@item.preview_image_blah_blah.should == 'wassup'
|
621
|
+
end
|
622
|
+
|
623
|
+
it "should update the magic attribute when something else is assigned" do
|
624
|
+
@item.preview_image = '123'
|
625
|
+
@item.preview_image = '456'
|
626
|
+
@item.preview_image_some_analyser_method.should == 'abc4'
|
627
|
+
end
|
628
|
+
|
629
|
+
it "should not reset non-magic attributes with the same prefix when set to nil" do
|
630
|
+
@item.preview_image_blah_blah = 'wassup'
|
631
|
+
@item.preview_image = '123'
|
632
|
+
@item.preview_image = nil
|
633
|
+
@item.preview_image_blah_blah.should == 'wassup'
|
634
|
+
end
|
635
|
+
|
636
|
+
it "should work for size too" do
|
637
|
+
@item.preview_image = '123'
|
638
|
+
@item.preview_image_size.should == 3
|
639
|
+
end
|
640
|
+
|
641
|
+
it "should store the original file name if it exists" do
|
642
|
+
data = 'jasdlkf sadjl'
|
643
|
+
data.stub!(:original_filename).and_return('hello.png')
|
644
|
+
@item.preview_image = data
|
645
|
+
@item.preview_image_name.should == 'hello.png'
|
646
|
+
end
|
647
|
+
|
648
|
+
end
|
649
|
+
|
650
|
+
describe "meta from magic attributes" do
|
651
|
+
|
652
|
+
it "should store the meta for the original file name if it exists" do
|
653
|
+
data = 'jasdlkf sadjl'
|
654
|
+
data.stub!(:original_filename).and_return('hello.png')
|
655
|
+
@item.preview_image = data
|
656
|
+
@item.preview_image.meta[:name].should == 'hello.png'
|
657
|
+
end
|
658
|
+
|
659
|
+
it "should include magic attributes in the saved meta" do
|
660
|
+
@item.preview_image = '123'
|
661
|
+
@item.save!
|
662
|
+
@app.fetch(@item.preview_image_uid).meta[:some_analyser_method].should == 'abc1'
|
663
|
+
end
|
664
|
+
|
665
|
+
it "should include the size in the saved meta" do
|
666
|
+
@item.preview_image = '123'
|
667
|
+
@item.save!
|
668
|
+
@app.fetch(@item.preview_image_uid).meta[:size].should == 3
|
669
|
+
end
|
670
|
+
|
671
|
+
end
|
672
|
+
|
673
|
+
describe "delegating methods to the job" do
|
674
|
+
before(:each) do
|
675
|
+
@item.preview_image = "DATASTRING"
|
676
|
+
end
|
677
|
+
it "should have properties from the analyser" do
|
678
|
+
@item.preview_image.number_of_As.should == 2
|
679
|
+
end
|
680
|
+
it "should report that it responds to analyser methods" do
|
681
|
+
@item.preview_image.respond_to?(:number_of_As).should be_true
|
682
|
+
end
|
683
|
+
it "should include analyser methods in methods" do
|
684
|
+
@item.preview_image.methods.map{|m| m.to_sym }.should include(:number_of_As)
|
685
|
+
end
|
686
|
+
it "should include analyser methods in public_methods" do
|
687
|
+
@item.preview_image.public_methods.map{|m| m.to_sym }.should include(:number_of_As)
|
688
|
+
end
|
689
|
+
|
690
|
+
it "should update when something new is assigned" do
|
691
|
+
@item.preview_image = 'ANEWDATASTRING'
|
692
|
+
@item.preview_image.number_of_As.should == 3
|
693
|
+
end
|
694
|
+
|
695
|
+
describe "from a new model object" do
|
696
|
+
before(:each) do
|
697
|
+
@app.datastore.stub!(:store).and_return('my_uid')
|
698
|
+
item = Item.create!(:preview_image => 'DATASTRING')
|
699
|
+
@item = Item.find(item.id)
|
700
|
+
end
|
701
|
+
it "should load the content then delegate the method" do
|
702
|
+
@app.datastore.should_receive(:retrieve).with('my_uid').and_return(['DATASTRING', {}])
|
703
|
+
@item.preview_image.number_of_As.should == 2
|
704
|
+
end
|
705
|
+
it "should use the magic attribute if there is one, and not load the content" do
|
706
|
+
@app.datastore.should_not_receive(:retrieve)
|
707
|
+
@item.should_receive(:preview_image_some_analyser_method).at_least(:once).and_return('result yo')
|
708
|
+
@item.preview_image.some_analyser_method.should == 'result yo'
|
709
|
+
end
|
710
|
+
|
711
|
+
it "should use the magic attribute for size if there is one, and not the job object" do
|
712
|
+
@item.preview_image.send(:job).should_not_receive(:size)
|
713
|
+
@item.should_receive("preview_image_size").and_return(17)
|
714
|
+
@item.preview_image.size.should == 17
|
715
|
+
end
|
716
|
+
|
717
|
+
it "should use the magic attribute for name if there is one, and not the job object" do
|
718
|
+
@item.preview_image.send(:job).should_not_receive(:name)
|
719
|
+
@item.should_receive("preview_image_name").and_return('jeffrey.bungle')
|
720
|
+
@item.preview_image.name.should == 'jeffrey.bungle'
|
721
|
+
end
|
722
|
+
|
723
|
+
it "should delegate 'size' to the job object if there is no magic attribute for it" do
|
724
|
+
@item.other_image = 'blahdata'
|
725
|
+
@item.other_image.send(:job).should_receive(:size).and_return 54
|
726
|
+
@item.other_image.size.should == 54
|
727
|
+
end
|
728
|
+
|
729
|
+
end
|
730
|
+
|
731
|
+
it "should not raise an error if a non-existent method is called" do
|
732
|
+
# Just checking method missing works ok
|
733
|
+
lambda{
|
734
|
+
@item.preview_image.eggbert
|
735
|
+
}.should raise_error(NoMethodError)
|
736
|
+
end
|
737
|
+
end
|
738
|
+
|
739
|
+
describe "job shortcuts" do
|
740
|
+
before(:each) do
|
741
|
+
@app.job :bacon do
|
742
|
+
process :breakfast
|
743
|
+
end
|
744
|
+
@item = Item.new :preview_image => 'gurg'
|
745
|
+
end
|
746
|
+
it "should add job shortcuts for that app" do
|
747
|
+
job = @item.preview_image.bacon
|
748
|
+
job.steps.first.should be_a(Dragonfly::Job::Process)
|
749
|
+
end
|
750
|
+
end
|
751
|
+
|
752
|
+
describe "setting things on the attachment" do
|
753
|
+
|
754
|
+
before(:each) do
|
755
|
+
@item = Item.new
|
756
|
+
end
|
757
|
+
|
758
|
+
describe "name" do
|
759
|
+
before(:each) do
|
760
|
+
@item.preview_image = "Hello"
|
761
|
+
@item.preview_image.name = 'hello.there'
|
762
|
+
end
|
763
|
+
it "should allow for setting the name" do
|
764
|
+
@item.preview_image.name.should == 'hello.there'
|
765
|
+
end
|
766
|
+
it "should update the magic attribute" do
|
767
|
+
@item.preview_image_name.should == 'hello.there'
|
768
|
+
end
|
769
|
+
it "should return the name" do
|
770
|
+
(@item.preview_image.name = 'no.silly').should == 'no.silly'
|
771
|
+
end
|
772
|
+
it "should update the ext too" do
|
773
|
+
@item.preview_image.ext.should == 'there'
|
774
|
+
end
|
775
|
+
end
|
776
|
+
|
777
|
+
describe "meta" do
|
778
|
+
before(:each) do
|
779
|
+
@item.preview_image = "Hello all"
|
780
|
+
@item.preview_image.meta = {:slime => 'balls'}
|
781
|
+
end
|
782
|
+
it "should allow for setting the meta" do
|
783
|
+
@item.preview_image.meta.should == {:slime => 'balls'}
|
784
|
+
end
|
785
|
+
it "should allow for updating the meta" do
|
786
|
+
@item.preview_image.meta[:numb] = 'nuts'
|
787
|
+
@item.preview_image.meta.should == {:slime => 'balls', :numb => 'nuts'}
|
788
|
+
end
|
789
|
+
it "should return the meta" do
|
790
|
+
(@item.preview_image.meta = {:doogs => 'boogs'}).should == {:doogs => 'boogs'}
|
791
|
+
end
|
792
|
+
it "should save it correctly" do
|
793
|
+
@item.save!
|
794
|
+
item = Item.find(@item.id)
|
795
|
+
item.preview_image.meta.should include_hash(:slime => 'balls')
|
796
|
+
end
|
797
|
+
it "should include meta info about the model" do
|
798
|
+
@item.save!
|
799
|
+
item = Item.find(@item.id)
|
800
|
+
item.preview_image.meta.should include_hash(:model_class => 'Item', :model_attachment => :preview_image)
|
801
|
+
end
|
802
|
+
end
|
803
|
+
|
804
|
+
end
|
805
|
+
|
806
|
+
end
|
807
|
+
|
808
|
+
describe "inheritance" do
|
809
|
+
|
810
|
+
before(:all) do
|
811
|
+
@app = test_app
|
812
|
+
@app2 = test_app
|
813
|
+
@app.define_macro(MyModel, :image_accessor)
|
814
|
+
@app2.define_macro(MyModel, :egg_accessor)
|
815
|
+
Car.class_eval do
|
816
|
+
image_accessor :image
|
817
|
+
end
|
818
|
+
Photo.class_eval do
|
819
|
+
egg_accessor :image
|
820
|
+
end
|
821
|
+
|
822
|
+
@base_class = Car
|
823
|
+
class ReliantRobin < Car; image_accessor :reliant_image; end
|
824
|
+
@subclass = ReliantRobin
|
825
|
+
class ReliantRobinWithModule < Car
|
826
|
+
include Module.new
|
827
|
+
image_accessor :reliant_image
|
828
|
+
end
|
829
|
+
@subclass_with_module = ReliantRobinWithModule
|
830
|
+
@unrelated_class = Photo
|
831
|
+
end
|
832
|
+
|
833
|
+
it "should allow assigning base class accessors" do
|
834
|
+
@base_class.create! :image => 'blah'
|
835
|
+
end
|
836
|
+
it "should not allow assigning subclass accessors in the base class" do
|
837
|
+
@base_class.new.should_not respond_to(:reliant_image=)
|
838
|
+
end
|
839
|
+
it "should allow assigning base class accessors in the subclass" do
|
840
|
+
@subclass.create! :image => 'blah'
|
841
|
+
end
|
842
|
+
it "should allow assigning subclass accessors in the subclass" do
|
843
|
+
@subclass.create! :reliant_image => 'blah'
|
844
|
+
end
|
845
|
+
it "should allow assigning base class accessors in the subclass, even if it has mixins" do
|
846
|
+
@subclass_with_module.create! :image => 'blah'
|
847
|
+
end
|
848
|
+
it "should allow assigning subclass accessors in the subclass, even if it has mixins" do
|
849
|
+
@subclass_with_module.create! :reliant_image => 'blah'
|
850
|
+
end
|
851
|
+
it "should return the correct attachment classes for the base class" do
|
852
|
+
@base_class.dragonfly_attachment_classes.should match_attachment_classes([[Car, :image, @app]])
|
853
|
+
end
|
854
|
+
it "should return the correct attachment classes for the subclass" do
|
855
|
+
@subclass.dragonfly_attachment_classes.should match_attachment_classes([[ReliantRobin, :image, @app], [ReliantRobin, :reliant_image, @app]])
|
856
|
+
end
|
857
|
+
it "should return the correct attachment classes for the subclass with module" do
|
858
|
+
@subclass_with_module.dragonfly_attachment_classes.should match_attachment_classes([[ReliantRobinWithModule, :image, @app], [ReliantRobinWithModule, :reliant_image, @app]])
|
859
|
+
end
|
860
|
+
it "should return the correct attachment classes for a class from a different hierarchy" do
|
861
|
+
@unrelated_class.dragonfly_attachment_classes.should match_attachment_classes([[Photo, :image, @app2]])
|
862
|
+
end
|
863
|
+
end
|
864
|
+
|
865
|
+
describe "setting the url" do
|
866
|
+
before(:each) do
|
867
|
+
set_up_item_class
|
868
|
+
@item = Item.new
|
869
|
+
stub_request(:get, "http://some.url/yo.png").to_return(:body => "aaaaayo")
|
870
|
+
end
|
871
|
+
|
872
|
+
it "should allow setting the url" do
|
873
|
+
@item.preview_image_url = 'http://some.url/yo.png'
|
874
|
+
@item.preview_image.data.should == 'aaaaayo'
|
875
|
+
end
|
876
|
+
it "should return nil always for the reader" do
|
877
|
+
@item.preview_image_url = 'http://some.url/yo.png'
|
878
|
+
@item.preview_image_url.should be_nil
|
879
|
+
end
|
880
|
+
it "should have set the name" do
|
881
|
+
@item.preview_image_url = 'http://some.url/yo.png'
|
882
|
+
@item.preview_image_name.should == 'yo.png'
|
883
|
+
@item.preview_image.meta[:name].should == 'yo.png'
|
884
|
+
end
|
885
|
+
[nil, ""].each do |value|
|
886
|
+
it "should do nothing if set with #{value.inspect}" do
|
887
|
+
@item.preview_image_url = value
|
888
|
+
@item.preview_image.should be_nil
|
889
|
+
end
|
890
|
+
end
|
891
|
+
end
|
892
|
+
|
893
|
+
describe "removing the accessor with e.g. a form" do
|
894
|
+
before(:each) do
|
895
|
+
set_up_item_class
|
896
|
+
@item = Item.new
|
897
|
+
@item.preview_image = "something"
|
898
|
+
end
|
899
|
+
|
900
|
+
[
|
901
|
+
1,
|
902
|
+
"1",
|
903
|
+
true,
|
904
|
+
"true",
|
905
|
+
"blahblah"
|
906
|
+
].each do |value|
|
907
|
+
it "should remove the accessor if passed #{value.inspect}" do
|
908
|
+
@item.remove_preview_image = value
|
909
|
+
@item.preview_image.should be_nil
|
910
|
+
end
|
911
|
+
|
912
|
+
it "should return true when called if set with #{value.inspect}" do
|
913
|
+
@item.remove_preview_image = value
|
914
|
+
@item.remove_preview_image.should be_true
|
915
|
+
end
|
916
|
+
end
|
917
|
+
|
918
|
+
[
|
919
|
+
0,
|
920
|
+
"0",
|
921
|
+
false,
|
922
|
+
"false",
|
923
|
+
"",
|
924
|
+
nil
|
925
|
+
].each do |value|
|
926
|
+
it "should not remove the accessor if passed #{value.inspect}" do
|
927
|
+
@item.remove_preview_image = value
|
928
|
+
@item.preview_image.should_not be_nil
|
929
|
+
end
|
930
|
+
|
931
|
+
it "should return false when called if set with #{value.inspect}" do
|
932
|
+
@item.remove_preview_image = value
|
933
|
+
@item.remove_preview_image.should be_false
|
934
|
+
end
|
935
|
+
end
|
936
|
+
|
937
|
+
it "should return false by default for the getter" do
|
938
|
+
@item.remove_preview_image.should be_false
|
939
|
+
end
|
940
|
+
|
941
|
+
end
|
942
|
+
|
943
|
+
describe "callbacks" do
|
944
|
+
|
945
|
+
describe "after_assign" do
|
946
|
+
|
947
|
+
before(:each) do
|
948
|
+
@app = test_app
|
949
|
+
@app.define_macro(MyModel, :image_accessor)
|
950
|
+
end
|
951
|
+
|
952
|
+
describe "as a block" do
|
953
|
+
|
954
|
+
def set_after_assign(*args, &block)
|
955
|
+
Item.class_eval do
|
956
|
+
image_accessor :preview_image do
|
957
|
+
after_assign(*args, &block)
|
958
|
+
end
|
959
|
+
end
|
960
|
+
end
|
961
|
+
|
962
|
+
it "should call it after assign" do
|
963
|
+
x = nil
|
964
|
+
set_after_assign{ x = 3 }
|
965
|
+
Item.new.preview_image = "hello"
|
966
|
+
x.should == 3
|
967
|
+
end
|
968
|
+
|
969
|
+
it "should not call it after unassign" do
|
970
|
+
x = nil
|
971
|
+
set_after_assign{ x = 3 }
|
972
|
+
Item.new.preview_image = nil
|
973
|
+
x.should be_nil
|
974
|
+
end
|
975
|
+
|
976
|
+
it "should yield the attachment" do
|
977
|
+
x = nil
|
978
|
+
set_after_assign{|a| x = a.data }
|
979
|
+
Item.new.preview_image = "discussion"
|
980
|
+
x.should == "discussion"
|
981
|
+
end
|
982
|
+
|
983
|
+
it "should evaluate in the model context" do
|
984
|
+
x = nil
|
985
|
+
set_after_assign{ x = title.upcase }
|
986
|
+
item = Item.new
|
987
|
+
item.title = "big"
|
988
|
+
item.preview_image = "jobs"
|
989
|
+
x.should == "BIG"
|
990
|
+
end
|
991
|
+
|
992
|
+
it "should allow passing a symbol for calling a model method" do
|
993
|
+
set_after_assign :set_title
|
994
|
+
item = Item.new
|
995
|
+
def item.set_title; self.title = 'duggen'; end
|
996
|
+
item.preview_image = "jobs"
|
997
|
+
item.title.should == "duggen"
|
998
|
+
end
|
999
|
+
|
1000
|
+
it "should allow passing multiple symbols" do
|
1001
|
+
set_after_assign :set_title, :upcase_title
|
1002
|
+
item = Item.new
|
1003
|
+
def item.set_title; self.title = 'doobie'; end
|
1004
|
+
def item.upcase_title; self.title.upcase!; end
|
1005
|
+
item.preview_image = "jobs"
|
1006
|
+
item.title.should == "DOOBIE"
|
1007
|
+
end
|
1008
|
+
|
1009
|
+
it "should not re-trigger callbacks (causing an infinite loop)" do
|
1010
|
+
set_after_assign{|a| self.preview_image = 'dogman' }
|
1011
|
+
item = Item.new
|
1012
|
+
item.preview_image = "hello"
|
1013
|
+
end
|
1014
|
+
|
1015
|
+
end
|
1016
|
+
|
1017
|
+
end
|
1018
|
+
|
1019
|
+
describe "after_unassign" do
|
1020
|
+
before(:each) do
|
1021
|
+
@app = test_app
|
1022
|
+
@app.define_macro(MyModel, :image_accessor)
|
1023
|
+
Item.class_eval do
|
1024
|
+
image_accessor :preview_image do
|
1025
|
+
after_unassign{ self.title = 'unassigned' }
|
1026
|
+
end
|
1027
|
+
end
|
1028
|
+
@item = Item.new :title => 'yo'
|
1029
|
+
end
|
1030
|
+
|
1031
|
+
it "should not call it after assign" do
|
1032
|
+
@item.preview_image = 'suggs'
|
1033
|
+
@item.title.should == 'yo'
|
1034
|
+
end
|
1035
|
+
|
1036
|
+
it "should call it after unassign" do
|
1037
|
+
@item.preview_image = nil
|
1038
|
+
@item.title.should == 'unassigned'
|
1039
|
+
end
|
1040
|
+
end
|
1041
|
+
|
1042
|
+
describe "copy_to" do
|
1043
|
+
before(:each) do
|
1044
|
+
@app = test_app
|
1045
|
+
@app.define_macro(MyModel, :image_accessor)
|
1046
|
+
@app.processor.add(:append) do |temp_object, string|
|
1047
|
+
temp_object.data + string
|
1048
|
+
end
|
1049
|
+
Item.class_eval do
|
1050
|
+
image_accessor :preview_image do
|
1051
|
+
copy_to(:other_image){|a| a.process(:append, title) }
|
1052
|
+
copy_to(:yet_another_image)
|
1053
|
+
end
|
1054
|
+
image_accessor :other_image
|
1055
|
+
image_accessor :yet_another_image
|
1056
|
+
end
|
1057
|
+
@item = Item.new :title => 'yo'
|
1058
|
+
end
|
1059
|
+
|
1060
|
+
it "should copy to the other image when assigned" do
|
1061
|
+
@item.preview_image = 'hello bear'
|
1062
|
+
@item.other_image.data.should == 'hello bearyo'
|
1063
|
+
end
|
1064
|
+
|
1065
|
+
it "should remove the other image when unassigned" do
|
1066
|
+
@item.preview_image = 'hello bear'
|
1067
|
+
@item.preview_image = nil
|
1068
|
+
@item.other_image.should be_nil
|
1069
|
+
end
|
1070
|
+
|
1071
|
+
it "should allow simply copying over without args" do
|
1072
|
+
@item.preview_image = 'hello bear'
|
1073
|
+
@item.yet_another_image.data.should == 'hello bear'
|
1074
|
+
end
|
1075
|
+
|
1076
|
+
end
|
1077
|
+
|
1078
|
+
end
|
1079
|
+
|
1080
|
+
describe "storage_opts" do
|
1081
|
+
|
1082
|
+
def set_storage_opts(*args, &block)
|
1083
|
+
Item.class_eval do
|
1084
|
+
image_accessor :preview_image do
|
1085
|
+
storage_opts(*args, &block)
|
1086
|
+
end
|
1087
|
+
end
|
1088
|
+
end
|
1089
|
+
|
1090
|
+
before(:each) do
|
1091
|
+
@app = test_app
|
1092
|
+
@app.define_macro(MyModel, :image_accessor)
|
1093
|
+
end
|
1094
|
+
|
1095
|
+
it "should send the specified options to the datastore on store" do
|
1096
|
+
set_storage_opts :egg => 'head'
|
1097
|
+
item = Item.new :preview_image => 'hello'
|
1098
|
+
@app.datastore.should_receive(:store).with(anything, hash_including(:egg => 'head'))
|
1099
|
+
item.save!
|
1100
|
+
end
|
1101
|
+
|
1102
|
+
it "should allow putting in a proc" do
|
1103
|
+
set_storage_opts{ {:egg => 'numb'} }
|
1104
|
+
item = Item.new :preview_image => 'hello'
|
1105
|
+
@app.datastore.should_receive(:store).with(anything, hash_including(:egg => 'numb'))
|
1106
|
+
item.save!
|
1107
|
+
end
|
1108
|
+
|
1109
|
+
it "should yield the attachment and exec in model context" do
|
1110
|
+
set_storage_opts{|a| {:egg => (a.data + title)} }
|
1111
|
+
item = Item.new :title => 'lump', :preview_image => 'hello'
|
1112
|
+
@app.datastore.should_receive(:store).with(anything, hash_including(:egg => 'hellolump'))
|
1113
|
+
item.save!
|
1114
|
+
end
|
1115
|
+
|
1116
|
+
it "should allow giving it a method symbol" do
|
1117
|
+
set_storage_opts :special_ops
|
1118
|
+
item = Item.new :preview_image => 'hello'
|
1119
|
+
def item.special_ops; {:a => 1}; end
|
1120
|
+
@app.datastore.should_receive(:store).with(anything, hash_including(:a => 1))
|
1121
|
+
item.save!
|
1122
|
+
end
|
1123
|
+
|
1124
|
+
it "should allow setting more than once" do
|
1125
|
+
Item.class_eval do
|
1126
|
+
image_accessor :preview_image do
|
1127
|
+
storage_opts{{ :a => title, :b => 'dumple' }}
|
1128
|
+
storage_opts{{ :b => title.upcase, :c => 'digby' }}
|
1129
|
+
end
|
1130
|
+
end
|
1131
|
+
item = Item.new :title => 'lump', :preview_image => 'hello'
|
1132
|
+
@app.datastore.should_receive(:store).with(anything, hash_including(
|
1133
|
+
:a => 'lump', :b => 'LUMP', :c => 'digby'
|
1134
|
+
))
|
1135
|
+
item.save!
|
1136
|
+
end
|
1137
|
+
end
|
1138
|
+
|
1139
|
+
describe "storage_path, etc." do
|
1140
|
+
|
1141
|
+
def set_storage_path(path=nil, &block)
|
1142
|
+
Item.class_eval do
|
1143
|
+
image_accessor :preview_image do
|
1144
|
+
storage_path(path, &block)
|
1145
|
+
end
|
1146
|
+
def monkey
|
1147
|
+
"mr/#{title}/monkey"
|
1148
|
+
end
|
1149
|
+
end
|
1150
|
+
end
|
1151
|
+
|
1152
|
+
before(:each) do
|
1153
|
+
@app = test_app
|
1154
|
+
@app.define_macro(MyModel, :image_accessor)
|
1155
|
+
end
|
1156
|
+
|
1157
|
+
it "should allow setting as a string" do
|
1158
|
+
set_storage_path 'always/the/same'
|
1159
|
+
item = Item.new :preview_image => 'bilbo'
|
1160
|
+
@app.datastore.should_receive(:store).with(anything, hash_including(
|
1161
|
+
:path => 'always/the/same'
|
1162
|
+
))
|
1163
|
+
item.save!
|
1164
|
+
end
|
1165
|
+
|
1166
|
+
it "should allow setting as a symbol" do
|
1167
|
+
set_storage_path :monkey
|
1168
|
+
item = Item.new :title => 'billy'
|
1169
|
+
item.preview_image = 'bilbo'
|
1170
|
+
@app.datastore.should_receive(:store).with(anything, hash_including(
|
1171
|
+
:path => 'mr/billy/monkey'
|
1172
|
+
))
|
1173
|
+
item.save!
|
1174
|
+
end
|
1175
|
+
|
1176
|
+
it "should allow setting as a block" do
|
1177
|
+
set_storage_path{|a| "#{a.data}/megs/#{title}" }
|
1178
|
+
item = Item.new :title => 'billy'
|
1179
|
+
item.preview_image = 'bilbo'
|
1180
|
+
@app.datastore.should_receive(:store).with(anything, hash_including(
|
1181
|
+
:path => 'bilbo/megs/billy'
|
1182
|
+
))
|
1183
|
+
item.save!
|
1184
|
+
end
|
1185
|
+
|
1186
|
+
it "should work for other storage_xxx declarations" do
|
1187
|
+
Item.class_eval do
|
1188
|
+
image_accessor :preview_image do
|
1189
|
+
storage_eggs 23
|
1190
|
+
end
|
1191
|
+
end
|
1192
|
+
item = Item.new :preview_image => 'bilbo'
|
1193
|
+
@app.datastore.should_receive(:store).with(anything, hash_including(
|
1194
|
+
:eggs => 23
|
1195
|
+
))
|
1196
|
+
item.save!
|
1197
|
+
end
|
1198
|
+
end
|
1199
|
+
|
1200
|
+
describe "unknown config method" do
|
1201
|
+
it "should raise an error" do
|
1202
|
+
lambda{
|
1203
|
+
Item.class_eval do
|
1204
|
+
image_accessor :preview_image do
|
1205
|
+
what :now?
|
1206
|
+
end
|
1207
|
+
end
|
1208
|
+
}.should raise_error(NoMethodError)
|
1209
|
+
end
|
1210
|
+
end
|
1211
|
+
|
1212
|
+
describe "changed?" do
|
1213
|
+
before(:each) do
|
1214
|
+
set_up_item_class
|
1215
|
+
@item = Item.new
|
1216
|
+
end
|
1217
|
+
|
1218
|
+
it "should be changed when assigned" do
|
1219
|
+
@item.preview_image = 'ggg'
|
1220
|
+
@item.preview_image.should be_changed
|
1221
|
+
end
|
1222
|
+
|
1223
|
+
it "should not be changed when saved" do
|
1224
|
+
@item.preview_image = 'ggg'
|
1225
|
+
@item.save!
|
1226
|
+
@item.preview_image.should_not be_changed
|
1227
|
+
end
|
1228
|
+
|
1229
|
+
it "should not be changed when reloaded" do
|
1230
|
+
@item.preview_image = 'ggg'
|
1231
|
+
@item.save!
|
1232
|
+
item = Item.find(@item.id)
|
1233
|
+
item.preview_image.should_not be_changed
|
1234
|
+
end
|
1235
|
+
end
|
1236
|
+
|
1237
|
+
describe "retain and pending" do
|
1238
|
+
before(:each) do
|
1239
|
+
set_up_item_class(@app=test_app)
|
1240
|
+
@app.analyser.add :some_analyser_method do |temp_object|
|
1241
|
+
temp_object.data.upcase
|
1242
|
+
end
|
1243
|
+
@item = Item.new
|
1244
|
+
end
|
1245
|
+
|
1246
|
+
it "should return nil if there are no changes" do
|
1247
|
+
@item.retained_preview_image.should be_nil
|
1248
|
+
end
|
1249
|
+
|
1250
|
+
it "should return nil if assigned but not saved" do
|
1251
|
+
@item.preview_image = 'hello'
|
1252
|
+
@item.retained_preview_image.should be_nil
|
1253
|
+
end
|
1254
|
+
|
1255
|
+
it "should return nil if assigned and saved" do
|
1256
|
+
@item.preview_image = 'hello'
|
1257
|
+
@item.save!
|
1258
|
+
@item.retained_preview_image.should be_nil
|
1259
|
+
end
|
1260
|
+
|
1261
|
+
it "should return the saved stuff if assigned and retained" do
|
1262
|
+
@item.preview_image = 'hello'
|
1263
|
+
@item.preview_image.name = 'dog.biscuit'
|
1264
|
+
@app.datastore.should_receive(:store).with do |temp_object, opts|
|
1265
|
+
temp_object.data.should == 'hello'
|
1266
|
+
temp_object.meta.should == {
|
1267
|
+
:name => "dog.biscuit",
|
1268
|
+
:some_analyser_method => "HELLO",
|
1269
|
+
:size => 5,
|
1270
|
+
:model_class => "Item",
|
1271
|
+
:model_attachment => :preview_image
|
1272
|
+
}
|
1273
|
+
end.and_return('new/uid')
|
1274
|
+
@item.preview_image.retain!
|
1275
|
+
Dragonfly::Serializer.marshal_decode(@item.retained_preview_image).should == {
|
1276
|
+
:uid => 'new/uid',
|
1277
|
+
:some_analyser_method => 'HELLO',
|
1278
|
+
:size => 5,
|
1279
|
+
:name => 'dog.biscuit'
|
1280
|
+
}
|
1281
|
+
end
|
1282
|
+
|
1283
|
+
it "should return nil if assigned, retained and saved" do
|
1284
|
+
@item.preview_image = 'hello'
|
1285
|
+
@item.preview_image.retain!
|
1286
|
+
@item.save!
|
1287
|
+
@item.retained_preview_image.should be_nil
|
1288
|
+
end
|
1289
|
+
|
1290
|
+
it "should return nil if assigned, saved and retained" do
|
1291
|
+
@item.preview_image = 'hello'
|
1292
|
+
@item.save!
|
1293
|
+
@item.preview_image.retain!
|
1294
|
+
@item.retained_preview_image.should be_nil
|
1295
|
+
end
|
1296
|
+
|
1297
|
+
it "should return nil if no changes have been made" do
|
1298
|
+
@item.preview_image = 'hello'
|
1299
|
+
@item.save!
|
1300
|
+
item = Item.find(@item.id)
|
1301
|
+
item.preview_image.retain!
|
1302
|
+
item.retained_preview_image.should be_nil
|
1303
|
+
end
|
1304
|
+
end
|
1305
|
+
|
1306
|
+
describe "assigning from a pending state" do
|
1307
|
+
before(:each) do
|
1308
|
+
set_up_item_class(@app=test_app)
|
1309
|
+
@app.analyser.add :some_analyser_method do |temp_object|
|
1310
|
+
temp_object.data.upcase
|
1311
|
+
end
|
1312
|
+
@pending_string = Dragonfly::Serializer.marshal_encode(
|
1313
|
+
:uid => 'new/uid',
|
1314
|
+
:some_analyser_method => 'HELLO',
|
1315
|
+
:size => 5,
|
1316
|
+
:name => 'dog.biscuit'
|
1317
|
+
)
|
1318
|
+
@item = Item.new
|
1319
|
+
end
|
1320
|
+
|
1321
|
+
it "should be retained" do
|
1322
|
+
@item.dragonfly_attachments[:preview_image].should_receive(:retain!)
|
1323
|
+
@item.retained_preview_image = @pending_string
|
1324
|
+
end
|
1325
|
+
|
1326
|
+
it "should update the attributes" do
|
1327
|
+
@item.retained_preview_image = @pending_string
|
1328
|
+
@item.preview_image_uid.should == 'new/uid'
|
1329
|
+
@item.preview_image_some_analyser_method.should == 'HELLO'
|
1330
|
+
@item.preview_image_size.should == 5
|
1331
|
+
@item.preview_image_name.should == 'dog.biscuit'
|
1332
|
+
end
|
1333
|
+
|
1334
|
+
it "should be a normal fetch job" do
|
1335
|
+
@item.retained_preview_image = @pending_string
|
1336
|
+
@app.datastore.should_receive(:retrieve).with('new/uid').and_return(Dragonfly::TempObject.new('retrieved yo'))
|
1337
|
+
@item.preview_image.data.should == 'retrieved yo'
|
1338
|
+
end
|
1339
|
+
|
1340
|
+
it "should give the correct url" do
|
1341
|
+
@item.retained_preview_image = @pending_string
|
1342
|
+
@item.preview_image.url.should =~ %r{^/\w+/dog.biscuit$}
|
1343
|
+
end
|
1344
|
+
|
1345
|
+
it "should raise an error if the pending string contains a non-magic attr method" do
|
1346
|
+
pending_string = Dragonfly::Serializer.marshal_encode(
|
1347
|
+
:uid => 'new/uid',
|
1348
|
+
:some_analyser_method => 'HELLO',
|
1349
|
+
:size => 5,
|
1350
|
+
:name => 'dog.biscuit',
|
1351
|
+
:something => 'else'
|
1352
|
+
)
|
1353
|
+
item = @item
|
1354
|
+
lambda{
|
1355
|
+
item.retained_preview_image = pending_string
|
1356
|
+
}.should raise_error(Dragonfly::ActiveModelExtensions::Attachment::BadAssignmentKey)
|
1357
|
+
end
|
1358
|
+
|
1359
|
+
[nil, "", "asdfsad"].each do |value|
|
1360
|
+
it "should do nothing if assigned with #{value}" do
|
1361
|
+
@item.retained_preview_image = value
|
1362
|
+
@item.preview_image_uid.should be_nil
|
1363
|
+
end
|
1364
|
+
end
|
1365
|
+
|
1366
|
+
it "should return the pending string again" do
|
1367
|
+
@item.retained_preview_image = @pending_string
|
1368
|
+
Dragonfly::Serializer.marshal_decode(@item.retained_preview_image).should ==
|
1369
|
+
Dragonfly::Serializer.marshal_decode(@pending_string)
|
1370
|
+
end
|
1371
|
+
|
1372
|
+
it "should destroy the old one on save" do
|
1373
|
+
@item.preview_image = 'oldone'
|
1374
|
+
@app.datastore.should_receive(:store).with(a_temp_object_with_data('oldone'), anything).and_return('old/uid')
|
1375
|
+
@item.save!
|
1376
|
+
item = Item.find(@item.id)
|
1377
|
+
item.retained_preview_image = @pending_string
|
1378
|
+
@app.datastore.should_receive(:destroy).with('old/uid')
|
1379
|
+
item.save!
|
1380
|
+
end
|
1381
|
+
|
1382
|
+
describe "combinations of assignment" do
|
1383
|
+
it "should destroy the previously retained one if something new is then assigned" do
|
1384
|
+
@item.retained_preview_image = @pending_string
|
1385
|
+
@app.datastore.should_receive(:destroy).with('new/uid')
|
1386
|
+
@item.preview_image = 'yet another new thing'
|
1387
|
+
end
|
1388
|
+
|
1389
|
+
it "should destroy the previously retained one if something new is already assigned" do
|
1390
|
+
@item.preview_image = 'yet another new thing'
|
1391
|
+
@app.datastore.should_receive(:destroy).with('new/uid')
|
1392
|
+
@item.retained_preview_image = @pending_string
|
1393
|
+
end
|
1394
|
+
|
1395
|
+
it "should destroy the previously retained one if nil is then assigned" do
|
1396
|
+
@item.retained_preview_image = @pending_string
|
1397
|
+
@app.datastore.should_receive(:destroy).with('new/uid')
|
1398
|
+
@item.preview_image = nil
|
1399
|
+
end
|
1400
|
+
|
1401
|
+
it "should destroy the previously retained one if nil is already assigned" do
|
1402
|
+
@item.preview_image = nil
|
1403
|
+
@app.datastore.should_receive(:destroy).with('new/uid')
|
1404
|
+
@item.retained_preview_image = @pending_string
|
1405
|
+
end
|
1406
|
+
|
1407
|
+
describe "automatically retaining (hack to test for existence of hidden form field)" do
|
1408
|
+
it "should automatically retain if set as an empty string then changed" do
|
1409
|
+
@item.retained_preview_image = ""
|
1410
|
+
@item.dragonfly_attachments[:preview_image].should_receive(:retain!)
|
1411
|
+
@item.preview_image = "hello"
|
1412
|
+
end
|
1413
|
+
|
1414
|
+
it "should automatically retain if changed then set as an empty string" do
|
1415
|
+
@item.preview_image = "hello"
|
1416
|
+
@item.preview_image.should_receive(:retain!)
|
1417
|
+
@item.retained_preview_image = ""
|
1418
|
+
end
|
1419
|
+
|
1420
|
+
it "should retain if retained_string then accessor is assigned" do
|
1421
|
+
@item.retained_preview_image = @pending_string
|
1422
|
+
@item.preview_image.should_receive(:retain!)
|
1423
|
+
@item.preview_image = 'yet another new thing'
|
1424
|
+
end
|
1425
|
+
|
1426
|
+
it "should retain if accessor then retained_string is assigned" do
|
1427
|
+
@item.preview_image = 'yet another new thing'
|
1428
|
+
@item.preview_image.should_receive(:retain!)
|
1429
|
+
@item.retained_preview_image = @pending_string
|
1430
|
+
end
|
1431
|
+
end
|
1432
|
+
end
|
1433
|
+
|
1434
|
+
end
|
1435
|
+
|
1436
|
+
describe "format and mime type" do
|
1437
|
+
before(:each) do
|
1438
|
+
@app = test_app
|
1439
|
+
@app.analyser.add :mime_type do |temp_object|
|
1440
|
+
'some/type'
|
1441
|
+
end
|
1442
|
+
set_up_item_class(@app)
|
1443
|
+
@item = Item.new
|
1444
|
+
@content = "doggo"
|
1445
|
+
@content.stub!(:original_filename).and_return('egg.png')
|
1446
|
+
end
|
1447
|
+
it "should trust the file extension with format if configured to" do
|
1448
|
+
@item.preview_image = @content
|
1449
|
+
@item.preview_image.format.should == :png
|
1450
|
+
end
|
1451
|
+
it "should trust the file extension with mime_type if configured to" do
|
1452
|
+
@item.preview_image = @content
|
1453
|
+
@item.preview_image.mime_type.should == 'image/png'
|
1454
|
+
end
|
1455
|
+
it "should not trust the file extension with format if configured not to" do
|
1456
|
+
@app.trust_file_extensions = false
|
1457
|
+
@item.preview_image = @content
|
1458
|
+
@item.preview_image.format.should == nil
|
1459
|
+
end
|
1460
|
+
it "should not trust the file extension with mime_type if configured not to" do
|
1461
|
+
@app.trust_file_extensions = false
|
1462
|
+
@item.preview_image = @content
|
1463
|
+
@item.preview_image.mime_type.should == 'some/type'
|
1464
|
+
end
|
1465
|
+
end
|
1466
|
+
|
1467
|
+
describe "inspect" do
|
1468
|
+
before(:each) do
|
1469
|
+
set_up_item_class
|
1470
|
+
@item = Item.new :preview_image => 'blug'
|
1471
|
+
@item.save!
|
1472
|
+
end
|
1473
|
+
it "should be awesome" do
|
1474
|
+
@item.preview_image.inspect.should =~ %r{^<Dragonfly Attachment uid="[^"]+", app=:test[_\w]*>$}
|
1475
|
+
end
|
1476
|
+
end
|
1477
|
+
|
1478
|
+
end
|