carrierwave-crop 0.0.10.alpha
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +19 -0
- data/.rspec +2 -0
- data/.travis.yml +5 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +108 -0
- data/Rakefile +6 -0
- data/carrierwave-crop.gemspec +28 -0
- data/lib/carrierwave/crop.rb +8 -0
- data/lib/carrierwave/crop/engine.rb +6 -0
- data/lib/carrierwave/crop/helpers.rb +46 -0
- data/lib/carrierwave/crop/model_additions.rb +67 -0
- data/lib/carrierwave/crop/railtie.rb +12 -0
- data/lib/carrierwave/crop/version.rb +5 -0
- data/lib/generators/cropper_generator.rb +12 -0
- data/lib/generators/templates/carrierwave_cropper.js.coffee +24 -0
- data/spec/crop/model_additions_spec.rb +12 -0
- data/spec/crop_spec.rb +2 -0
- data/spec/spec_helper.rb +2 -0
- data/vendor/assets/images/Jcrop.gif +0 -0
- data/vendor/assets/javascripts/jquery.jcrop.js +1694 -0
- data/vendor/assets/stylesheets/jquery.jcrop.css +165 -0
- metadata +161 -0
| @@ -0,0 +1,165 @@ | |
| 1 | 
            +
            /* jquery.Jcrop.css v0.9.12 - MIT License */
         | 
| 2 | 
            +
            /*
         | 
| 3 | 
            +
              The outer-most container in a typical Jcrop instance
         | 
| 4 | 
            +
              If you are having difficulty with formatting related to styles
         | 
| 5 | 
            +
              on a parent element, place any fixes here or in a like selector
         | 
| 6 | 
            +
             | 
| 7 | 
            +
              You can also style this element if you want to add a border, etc
         | 
| 8 | 
            +
              A better method for styling can be seen below with .jcrop-light
         | 
| 9 | 
            +
              (Add a class to the holder and style elements for that extended class)
         | 
| 10 | 
            +
            */
         | 
| 11 | 
            +
            .jcrop-holder {
         | 
| 12 | 
            +
              direction: ltr;
         | 
| 13 | 
            +
              text-align: left;
         | 
| 14 | 
            +
            }
         | 
| 15 | 
            +
            /* Selection Border */
         | 
| 16 | 
            +
            .jcrop-vline,
         | 
| 17 | 
            +
            .jcrop-hline {
         | 
| 18 | 
            +
              background: #ffffff url("Jcrop.gif");
         | 
| 19 | 
            +
              font-size: 0;
         | 
| 20 | 
            +
              position: absolute;
         | 
| 21 | 
            +
            }
         | 
| 22 | 
            +
            .jcrop-vline {
         | 
| 23 | 
            +
              height: 100%;
         | 
| 24 | 
            +
              width: 1px !important;
         | 
| 25 | 
            +
            }
         | 
| 26 | 
            +
            .jcrop-vline.right {
         | 
| 27 | 
            +
              right: 0;
         | 
| 28 | 
            +
            }
         | 
| 29 | 
            +
            .jcrop-hline {
         | 
| 30 | 
            +
              height: 1px !important;
         | 
| 31 | 
            +
              width: 100%;
         | 
| 32 | 
            +
            }
         | 
| 33 | 
            +
            .jcrop-hline.bottom {
         | 
| 34 | 
            +
              bottom: 0;
         | 
| 35 | 
            +
            }
         | 
| 36 | 
            +
            /* Invisible click targets */
         | 
| 37 | 
            +
            .jcrop-tracker {
         | 
| 38 | 
            +
              height: 100%;
         | 
| 39 | 
            +
              width: 100%;
         | 
| 40 | 
            +
              /* "turn off" link highlight */
         | 
| 41 | 
            +
              -webkit-tap-highlight-color: transparent;
         | 
| 42 | 
            +
              /* disable callout, image save panel */
         | 
| 43 | 
            +
              -webkit-touch-callout: none;
         | 
| 44 | 
            +
              /* disable cut copy paste */
         | 
| 45 | 
            +
              -webkit-user-select: none;
         | 
| 46 | 
            +
            }
         | 
| 47 | 
            +
            /* Selection Handles */
         | 
| 48 | 
            +
            .jcrop-handle {
         | 
| 49 | 
            +
              background-color: #333333;
         | 
| 50 | 
            +
              border: 1px #eeeeee solid;
         | 
| 51 | 
            +
              width: 7px;
         | 
| 52 | 
            +
              height: 7px;
         | 
| 53 | 
            +
              font-size: 1px;
         | 
| 54 | 
            +
            }
         | 
| 55 | 
            +
            .jcrop-handle.ord-n {
         | 
| 56 | 
            +
              left: 50%;
         | 
| 57 | 
            +
              margin-left: -4px;
         | 
| 58 | 
            +
              margin-top: -4px;
         | 
| 59 | 
            +
              top: 0;
         | 
| 60 | 
            +
            }
         | 
| 61 | 
            +
            .jcrop-handle.ord-s {
         | 
| 62 | 
            +
              bottom: 0;
         | 
| 63 | 
            +
              left: 50%;
         | 
| 64 | 
            +
              margin-bottom: -4px;
         | 
| 65 | 
            +
              margin-left: -4px;
         | 
| 66 | 
            +
            }
         | 
| 67 | 
            +
            .jcrop-handle.ord-e {
         | 
| 68 | 
            +
              margin-right: -4px;
         | 
| 69 | 
            +
              margin-top: -4px;
         | 
| 70 | 
            +
              right: 0;
         | 
| 71 | 
            +
              top: 50%;
         | 
| 72 | 
            +
            }
         | 
| 73 | 
            +
            .jcrop-handle.ord-w {
         | 
| 74 | 
            +
              left: 0;
         | 
| 75 | 
            +
              margin-left: -4px;
         | 
| 76 | 
            +
              margin-top: -4px;
         | 
| 77 | 
            +
              top: 50%;
         | 
| 78 | 
            +
            }
         | 
| 79 | 
            +
            .jcrop-handle.ord-nw {
         | 
| 80 | 
            +
              left: 0;
         | 
| 81 | 
            +
              margin-left: -4px;
         | 
| 82 | 
            +
              margin-top: -4px;
         | 
| 83 | 
            +
              top: 0;
         | 
| 84 | 
            +
            }
         | 
| 85 | 
            +
            .jcrop-handle.ord-ne {
         | 
| 86 | 
            +
              margin-right: -4px;
         | 
| 87 | 
            +
              margin-top: -4px;
         | 
| 88 | 
            +
              right: 0;
         | 
| 89 | 
            +
              top: 0;
         | 
| 90 | 
            +
            }
         | 
| 91 | 
            +
            .jcrop-handle.ord-se {
         | 
| 92 | 
            +
              bottom: 0;
         | 
| 93 | 
            +
              margin-bottom: -4px;
         | 
| 94 | 
            +
              margin-right: -4px;
         | 
| 95 | 
            +
              right: 0;
         | 
| 96 | 
            +
            }
         | 
| 97 | 
            +
            .jcrop-handle.ord-sw {
         | 
| 98 | 
            +
              bottom: 0;
         | 
| 99 | 
            +
              left: 0;
         | 
| 100 | 
            +
              margin-bottom: -4px;
         | 
| 101 | 
            +
              margin-left: -4px;
         | 
| 102 | 
            +
            }
         | 
| 103 | 
            +
            /* Dragbars */
         | 
| 104 | 
            +
            .jcrop-dragbar.ord-n,
         | 
| 105 | 
            +
            .jcrop-dragbar.ord-s {
         | 
| 106 | 
            +
              height: 7px;
         | 
| 107 | 
            +
              width: 100%;
         | 
| 108 | 
            +
            }
         | 
| 109 | 
            +
            .jcrop-dragbar.ord-e,
         | 
| 110 | 
            +
            .jcrop-dragbar.ord-w {
         | 
| 111 | 
            +
              height: 100%;
         | 
| 112 | 
            +
              width: 7px;
         | 
| 113 | 
            +
            }
         | 
| 114 | 
            +
            .jcrop-dragbar.ord-n {
         | 
| 115 | 
            +
              margin-top: -4px;
         | 
| 116 | 
            +
            }
         | 
| 117 | 
            +
            .jcrop-dragbar.ord-s {
         | 
| 118 | 
            +
              bottom: 0;
         | 
| 119 | 
            +
              margin-bottom: -4px;
         | 
| 120 | 
            +
            }
         | 
| 121 | 
            +
            .jcrop-dragbar.ord-e {
         | 
| 122 | 
            +
              margin-right: -4px;
         | 
| 123 | 
            +
              right: 0;
         | 
| 124 | 
            +
            }
         | 
| 125 | 
            +
            .jcrop-dragbar.ord-w {
         | 
| 126 | 
            +
              margin-left: -4px;
         | 
| 127 | 
            +
            }
         | 
| 128 | 
            +
            /* The "jcrop-light" class/extension */
         | 
| 129 | 
            +
            .jcrop-light .jcrop-vline,
         | 
| 130 | 
            +
            .jcrop-light .jcrop-hline {
         | 
| 131 | 
            +
              background: #ffffff;
         | 
| 132 | 
            +
              filter: alpha(opacity=70) !important;
         | 
| 133 | 
            +
              opacity: .70!important;
         | 
| 134 | 
            +
            }
         | 
| 135 | 
            +
            .jcrop-light .jcrop-handle {
         | 
| 136 | 
            +
              -moz-border-radius: 3px;
         | 
| 137 | 
            +
              -webkit-border-radius: 3px;
         | 
| 138 | 
            +
              background-color: #000000;
         | 
| 139 | 
            +
              border-color: #ffffff;
         | 
| 140 | 
            +
              border-radius: 3px;
         | 
| 141 | 
            +
            }
         | 
| 142 | 
            +
            /* The "jcrop-dark" class/extension */
         | 
| 143 | 
            +
            .jcrop-dark .jcrop-vline,
         | 
| 144 | 
            +
            .jcrop-dark .jcrop-hline {
         | 
| 145 | 
            +
              background: #000000;
         | 
| 146 | 
            +
              filter: alpha(opacity=70) !important;
         | 
| 147 | 
            +
              opacity: 0.7 !important;
         | 
| 148 | 
            +
            }
         | 
| 149 | 
            +
            .jcrop-dark .jcrop-handle {
         | 
| 150 | 
            +
              -moz-border-radius: 3px;
         | 
| 151 | 
            +
              -webkit-border-radius: 3px;
         | 
| 152 | 
            +
              background-color: #ffffff;
         | 
| 153 | 
            +
              border-color: #000000;
         | 
| 154 | 
            +
              border-radius: 3px;
         | 
| 155 | 
            +
            }
         | 
| 156 | 
            +
            /* Simple macro to turn off the antlines */
         | 
| 157 | 
            +
            .solid-line .jcrop-vline,
         | 
| 158 | 
            +
            .solid-line .jcrop-hline {
         | 
| 159 | 
            +
              background: #ffffff;
         | 
| 160 | 
            +
            }
         | 
| 161 | 
            +
            /* Fix for twitter bootstrap et al. */
         | 
| 162 | 
            +
            .jcrop-holder img,
         | 
| 163 | 
            +
            img.jcrop-preview {
         | 
| 164 | 
            +
              max-width: none;
         | 
| 165 | 
            +
            }
         | 
    
        metadata
    ADDED
    
    | @@ -0,0 +1,161 @@ | |
| 1 | 
            +
            --- !ruby/object:Gem::Specification
         | 
| 2 | 
            +
            name: carrierwave-crop
         | 
| 3 | 
            +
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            +
              version: 0.0.10.alpha
         | 
| 5 | 
            +
            platform: ruby
         | 
| 6 | 
            +
            authors:
         | 
| 7 | 
            +
            - kirtithorat
         | 
| 8 | 
            +
            autorequire: 
         | 
| 9 | 
            +
            bindir: bin
         | 
| 10 | 
            +
            cert_chain: []
         | 
| 11 | 
            +
            date: 2014-04-13 00:00:00.000000000 Z
         | 
| 12 | 
            +
            dependencies:
         | 
| 13 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 14 | 
            +
              name: rails
         | 
| 15 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 16 | 
            +
                requirements:
         | 
| 17 | 
            +
                - - ">="
         | 
| 18 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 19 | 
            +
                    version: '3.1'
         | 
| 20 | 
            +
              type: :runtime
         | 
| 21 | 
            +
              prerelease: false
         | 
| 22 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 23 | 
            +
                requirements:
         | 
| 24 | 
            +
                - - ">="
         | 
| 25 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 26 | 
            +
                    version: '3.1'
         | 
| 27 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 28 | 
            +
              name: jquery-rails
         | 
| 29 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 30 | 
            +
                requirements:
         | 
| 31 | 
            +
                - - ">="
         | 
| 32 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 33 | 
            +
                    version: '0'
         | 
| 34 | 
            +
              type: :runtime
         | 
| 35 | 
            +
              prerelease: false
         | 
| 36 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 37 | 
            +
                requirements:
         | 
| 38 | 
            +
                - - ">="
         | 
| 39 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 40 | 
            +
                    version: '0'
         | 
| 41 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 42 | 
            +
              name: carrierwave
         | 
| 43 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 44 | 
            +
                requirements:
         | 
| 45 | 
            +
                - - ">="
         | 
| 46 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 47 | 
            +
                    version: 0.8.0
         | 
| 48 | 
            +
                - - "<"
         | 
| 49 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 50 | 
            +
                    version: 0.11.0
         | 
| 51 | 
            +
              type: :runtime
         | 
| 52 | 
            +
              prerelease: false
         | 
| 53 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 54 | 
            +
                requirements:
         | 
| 55 | 
            +
                - - ">="
         | 
| 56 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 57 | 
            +
                    version: 0.8.0
         | 
| 58 | 
            +
                - - "<"
         | 
| 59 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 60 | 
            +
                    version: 0.11.0
         | 
| 61 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 62 | 
            +
              name: bundler
         | 
| 63 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 64 | 
            +
                requirements:
         | 
| 65 | 
            +
                - - "~>"
         | 
| 66 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 67 | 
            +
                    version: '1.5'
         | 
| 68 | 
            +
              type: :development
         | 
| 69 | 
            +
              prerelease: false
         | 
| 70 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 71 | 
            +
                requirements:
         | 
| 72 | 
            +
                - - "~>"
         | 
| 73 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 74 | 
            +
                    version: '1.5'
         | 
| 75 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 76 | 
            +
              name: rake
         | 
| 77 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 78 | 
            +
                requirements:
         | 
| 79 | 
            +
                - - ">="
         | 
| 80 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 81 | 
            +
                    version: '0'
         | 
| 82 | 
            +
              type: :development
         | 
| 83 | 
            +
              prerelease: false
         | 
| 84 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 85 | 
            +
                requirements:
         | 
| 86 | 
            +
                - - ">="
         | 
| 87 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 88 | 
            +
                    version: '0'
         | 
| 89 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 90 | 
            +
              name: rspec
         | 
| 91 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 92 | 
            +
                requirements:
         | 
| 93 | 
            +
                - - ">="
         | 
| 94 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 95 | 
            +
                    version: '0'
         | 
| 96 | 
            +
              type: :development
         | 
| 97 | 
            +
              prerelease: false
         | 
| 98 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 99 | 
            +
                requirements:
         | 
| 100 | 
            +
                - - ">="
         | 
| 101 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 102 | 
            +
                    version: '0'
         | 
| 103 | 
            +
            description: Carrierwave extension to crop uploaded images using Jcrop plugin.
         | 
| 104 | 
            +
            email:
         | 
| 105 | 
            +
            - kirti.brenz@gmail.com
         | 
| 106 | 
            +
            executables: []
         | 
| 107 | 
            +
            extensions: []
         | 
| 108 | 
            +
            extra_rdoc_files: []
         | 
| 109 | 
            +
            files:
         | 
| 110 | 
            +
            - ".gitignore"
         | 
| 111 | 
            +
            - ".rspec"
         | 
| 112 | 
            +
            - ".travis.yml"
         | 
| 113 | 
            +
            - Gemfile
         | 
| 114 | 
            +
            - LICENSE.txt
         | 
| 115 | 
            +
            - README.md
         | 
| 116 | 
            +
            - Rakefile
         | 
| 117 | 
            +
            - carrierwave-crop.gemspec
         | 
| 118 | 
            +
            - lib/carrierwave/crop.rb
         | 
| 119 | 
            +
            - lib/carrierwave/crop/engine.rb
         | 
| 120 | 
            +
            - lib/carrierwave/crop/helpers.rb
         | 
| 121 | 
            +
            - lib/carrierwave/crop/model_additions.rb
         | 
| 122 | 
            +
            - lib/carrierwave/crop/railtie.rb
         | 
| 123 | 
            +
            - lib/carrierwave/crop/version.rb
         | 
| 124 | 
            +
            - lib/generators/cropper_generator.rb
         | 
| 125 | 
            +
            - lib/generators/templates/carrierwave_cropper.js.coffee
         | 
| 126 | 
            +
            - spec/crop/model_additions_spec.rb
         | 
| 127 | 
            +
            - spec/crop_spec.rb
         | 
| 128 | 
            +
            - spec/spec_helper.rb
         | 
| 129 | 
            +
            - vendor/assets/images/Jcrop.gif
         | 
| 130 | 
            +
            - vendor/assets/javascripts/.keep
         | 
| 131 | 
            +
            - vendor/assets/javascripts/jquery.jcrop.js
         | 
| 132 | 
            +
            - vendor/assets/stylesheets/.keep
         | 
| 133 | 
            +
            - vendor/assets/stylesheets/jquery.jcrop.css
         | 
| 134 | 
            +
            homepage: https://github.com/kirtithorat/carrierwave-crop
         | 
| 135 | 
            +
            licenses:
         | 
| 136 | 
            +
            - MIT
         | 
| 137 | 
            +
            metadata: {}
         | 
| 138 | 
            +
            post_install_message: 
         | 
| 139 | 
            +
            rdoc_options: []
         | 
| 140 | 
            +
            require_paths:
         | 
| 141 | 
            +
            - lib
         | 
| 142 | 
            +
            required_ruby_version: !ruby/object:Gem::Requirement
         | 
| 143 | 
            +
              requirements:
         | 
| 144 | 
            +
              - - ">="
         | 
| 145 | 
            +
                - !ruby/object:Gem::Version
         | 
| 146 | 
            +
                  version: '0'
         | 
| 147 | 
            +
            required_rubygems_version: !ruby/object:Gem::Requirement
         | 
| 148 | 
            +
              requirements:
         | 
| 149 | 
            +
              - - ">"
         | 
| 150 | 
            +
                - !ruby/object:Gem::Version
         | 
| 151 | 
            +
                  version: 1.3.1
         | 
| 152 | 
            +
            requirements: []
         | 
| 153 | 
            +
            rubyforge_project: 
         | 
| 154 | 
            +
            rubygems_version: 2.2.0
         | 
| 155 | 
            +
            signing_key: 
         | 
| 156 | 
            +
            specification_version: 4
         | 
| 157 | 
            +
            summary: Carrierwave extension for cropping images with preview.
         | 
| 158 | 
            +
            test_files:
         | 
| 159 | 
            +
            - spec/crop/model_additions_spec.rb
         | 
| 160 | 
            +
            - spec/crop_spec.rb
         | 
| 161 | 
            +
            - spec/spec_helper.rb
         |