swipebox 0.0.1
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/MIT-LICENSE +20 -0
- data/Rakefile +32 -0
- data/lib/swipebox.rb +4 -0
- data/lib/swipebox/version.rb +3 -0
- data/lib/tasks/swipebox_tasks.rake +4 -0
- data/test/dummy/README.rdoc +28 -0
- data/test/dummy/Rakefile +6 -0
- data/test/dummy/app/assets/javascripts/application.js +14 -0
- data/test/dummy/app/assets/stylesheets/application.css +13 -0
- data/test/dummy/app/controllers/application_controller.rb +5 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/bin/bundle +3 -0
- data/test/dummy/bin/rails +4 -0
- data/test/dummy/bin/rake +4 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/config/application.rb +23 -0
- data/test/dummy/config/boot.rb +5 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +29 -0
- data/test/dummy/config/environments/production.rb +80 -0
- data/test/dummy/config/environments/test.rb +36 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/dummy/config/initializers/inflections.rb +16 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/secret_token.rb +12 -0
- data/test/dummy/config/initializers/session_store.rb +3 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +23 -0
- data/test/dummy/config/routes.rb +56 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +56 -0
- data/test/dummy/log/test.log +24 -0
- data/test/dummy/public/404.html +58 -0
- data/test/dummy/public/422.html +58 -0
- data/test/dummy/public/500.html +57 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/f9c6a267bff4dbc4c014a32d65f455fee642ff7f/swipebox.css.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/2417663820f12194df84f901aeddf205 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/299e5c3e6fe902ee2248d4f551e2a736 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/39a4691fbee5b5d7a15a61d39e8298c9 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/52844af88f25171d8b2bd9b3841fc531 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/58b5fb0ecf84f52f0afa100b0b4c8cba +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/7cad4e0f6c155aee86ff849175d87485 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/9540837ee939a819ff3def6208986d2b +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/ad7154cc55f39a227d2bc6415f58932d +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/f8832e909e8abc5a5f26e98546d2f7ca +0 -0
- data/test/integration/swipebox_integration_test.rb +13 -0
- data/test/test_helper.rb +14 -0
- data/vendor/assets/images/icons.png +0 -0
- data/vendor/assets/images/icons.svg +1 -0
- data/vendor/assets/images/loader.gif +0 -0
- data/vendor/assets/javascripts/swipebox.js +595 -0
- data/vendor/assets/stylesheets/swipebox.css.scss +265 -0
- metadata +244 -0
| @@ -0,0 +1,265 @@ | |
| 1 | 
            +
            html.swipebox {
         | 
| 2 | 
            +
              overflow: hidden!important;
         | 
| 3 | 
            +
            }
         | 
| 4 | 
            +
             | 
| 5 | 
            +
            #swipebox-overlay img {
         | 
| 6 | 
            +
              border: none!important;
         | 
| 7 | 
            +
            }
         | 
| 8 | 
            +
             | 
| 9 | 
            +
            #swipebox-overlay {
         | 
| 10 | 
            +
              width: 100%;
         | 
| 11 | 
            +
              height: 100%;
         | 
| 12 | 
            +
              position: fixed;
         | 
| 13 | 
            +
              top: 0;
         | 
| 14 | 
            +
              left: 0;
         | 
| 15 | 
            +
              z-index: 99999!important;
         | 
| 16 | 
            +
              overflow: hidden;
         | 
| 17 | 
            +
              -webkit-user-select: none;
         | 
| 18 | 
            +
              -moz-user-select: none;
         | 
| 19 | 
            +
              user-select: none;
         | 
| 20 | 
            +
            }
         | 
| 21 | 
            +
             | 
| 22 | 
            +
            #swipebox-slider {
         | 
| 23 | 
            +
              height: 100%;
         | 
| 24 | 
            +
              left: 0;
         | 
| 25 | 
            +
              top: 0;
         | 
| 26 | 
            +
              width: 100%;
         | 
| 27 | 
            +
              white-space: nowrap;
         | 
| 28 | 
            +
              position: absolute;
         | 
| 29 | 
            +
              display: none;
         | 
| 30 | 
            +
            }
         | 
| 31 | 
            +
             | 
| 32 | 
            +
            #swipebox-slider .slide {
         | 
| 33 | 
            +
              background: url('loader.gif') no-repeat center center;
         | 
| 34 | 
            +
              height: 100%;
         | 
| 35 | 
            +
              width: 100%;
         | 
| 36 | 
            +
              line-height: 1px;
         | 
| 37 | 
            +
              text-align: center;
         | 
| 38 | 
            +
              display: inline-block;
         | 
| 39 | 
            +
            }
         | 
| 40 | 
            +
             | 
| 41 | 
            +
            #swipebox-slider .slide:before {
         | 
| 42 | 
            +
              content: "";
         | 
| 43 | 
            +
              display: inline-block;
         | 
| 44 | 
            +
              height: 50%;
         | 
| 45 | 
            +
              width: 1px;
         | 
| 46 | 
            +
              margin-right: -1px;
         | 
| 47 | 
            +
            }
         | 
| 48 | 
            +
             | 
| 49 | 
            +
            #swipebox-slider .slide img,
         | 
| 50 | 
            +
            #swipebox-slider .slide .swipebox-video-container {
         | 
| 51 | 
            +
              display: inline-block;
         | 
| 52 | 
            +
              max-height: 100%;
         | 
| 53 | 
            +
              max-width: 100%;
         | 
| 54 | 
            +
              margin: 0;
         | 
| 55 | 
            +
              padding: 0;
         | 
| 56 | 
            +
              width: auto;
         | 
| 57 | 
            +
              height: auto;
         | 
| 58 | 
            +
              vertical-align: middle;
         | 
| 59 | 
            +
            }
         | 
| 60 | 
            +
             | 
| 61 | 
            +
            #swipebox-slider .slide .swipebox-video-container {
         | 
| 62 | 
            +
              background:none;
         | 
| 63 | 
            +
              max-width: 1140px;
         | 
| 64 | 
            +
              max-height: 100%;
         | 
| 65 | 
            +
              width: 100%;
         | 
| 66 | 
            +
              padding:5%;
         | 
| 67 | 
            +
              box-sizing: border-box;
         | 
| 68 | 
            +
              -webkit-box-sizing: border-box;
         | 
| 69 | 
            +
              -moz-box-sizing: border-box;
         | 
| 70 | 
            +
            }
         | 
| 71 | 
            +
             | 
| 72 | 
            +
             | 
| 73 | 
            +
            #swipebox-slider .slide .swipebox-video-container .swipebox-video{
         | 
| 74 | 
            +
              width: 100%;
         | 
| 75 | 
            +
              height: 0;
         | 
| 76 | 
            +
              padding-bottom: 56.25%;
         | 
| 77 | 
            +
              overflow: hidden;
         | 
| 78 | 
            +
              position: relative;
         | 
| 79 | 
            +
            }
         | 
| 80 | 
            +
             | 
| 81 | 
            +
            #swipebox-slider .slide .swipebox-video-container .swipebox-video iframe{
         | 
| 82 | 
            +
              width: 100%!important;
         | 
| 83 | 
            +
              height: 100%!important;
         | 
| 84 | 
            +
              position: absolute;
         | 
| 85 | 
            +
              top: 0; left: 0;
         | 
| 86 | 
            +
            }
         | 
| 87 | 
            +
             | 
| 88 | 
            +
            #swipebox-action, #swipebox-caption {
         | 
| 89 | 
            +
              position: absolute;
         | 
| 90 | 
            +
              left: 0;
         | 
| 91 | 
            +
              z-index: 999;
         | 
| 92 | 
            +
              height: 50px;
         | 
| 93 | 
            +
              width: 100%;
         | 
| 94 | 
            +
            }
         | 
| 95 | 
            +
             | 
| 96 | 
            +
            #swipebox-action {
         | 
| 97 | 
            +
              bottom: -50px;
         | 
| 98 | 
            +
            }
         | 
| 99 | 
            +
            #swipebox-action.visible-bars {
         | 
| 100 | 
            +
              bottom: 0;
         | 
| 101 | 
            +
            }
         | 
| 102 | 
            +
             | 
| 103 | 
            +
            #swipebox-action.force-visible-bars {
         | 
| 104 | 
            +
              bottom: 0!important;
         | 
| 105 | 
            +
            }
         | 
| 106 | 
            +
             | 
| 107 | 
            +
            #swipebox-caption {
         | 
| 108 | 
            +
              top: -50px;
         | 
| 109 | 
            +
              border-bottom: 1px solid rgba(255, 255, 255, 0.2);
         | 
| 110 | 
            +
            }
         | 
| 111 | 
            +
            #swipebox-caption.visible-bars {
         | 
| 112 | 
            +
              top: 0;
         | 
| 113 | 
            +
            }
         | 
| 114 | 
            +
             | 
| 115 | 
            +
            #swipebox-caption.force-visible-bars {
         | 
| 116 | 
            +
              top: 0!important;
         | 
| 117 | 
            +
            }
         | 
| 118 | 
            +
             | 
| 119 | 
            +
            #swipebox-action #swipebox-prev, #swipebox-action #swipebox-next,
         | 
| 120 | 
            +
            #swipebox-action #swipebox-close {
         | 
| 121 | 
            +
              background-image: url('icons.png');
         | 
| 122 | 
            +
              background-repeat: no-repeat;
         | 
| 123 | 
            +
              border: none!important;
         | 
| 124 | 
            +
              text-decoration: none!important;
         | 
| 125 | 
            +
              cursor: pointer;
         | 
| 126 | 
            +
              position: absolute;
         | 
| 127 | 
            +
              width: 50px;
         | 
| 128 | 
            +
              height: 50px;
         | 
| 129 | 
            +
              top: 0;
         | 
| 130 | 
            +
              &.svg {
         | 
| 131 | 
            +
                background-image: url('icons.svg');
         | 
| 132 | 
            +
              }
         | 
| 133 | 
            +
            }
         | 
| 134 | 
            +
             | 
| 135 | 
            +
            #swipebox-action #swipebox-close {
         | 
| 136 | 
            +
              background-position: 15px 12px;
         | 
| 137 | 
            +
              left: 40px;
         | 
| 138 | 
            +
            }
         | 
| 139 | 
            +
             | 
| 140 | 
            +
            #swipebox-action #swipebox-prev {
         | 
| 141 | 
            +
              background-position: -32px 13px;
         | 
| 142 | 
            +
              right: 100px;
         | 
| 143 | 
            +
            }
         | 
| 144 | 
            +
             | 
| 145 | 
            +
            #swipebox-action #swipebox-next {
         | 
| 146 | 
            +
              background-position: -78px 13px;
         | 
| 147 | 
            +
              right: 40px;
         | 
| 148 | 
            +
            }
         | 
| 149 | 
            +
             | 
| 150 | 
            +
            #swipebox-action #swipebox-prev.disabled,
         | 
| 151 | 
            +
            #swipebox-action #swipebox-next.disabled {
         | 
| 152 | 
            +
              filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
         | 
| 153 | 
            +
              opacity: 0.3;
         | 
| 154 | 
            +
            }
         | 
| 155 | 
            +
             | 
| 156 | 
            +
            #swipebox-slider.rightSpring {
         | 
| 157 | 
            +
              -moz-animation: rightSpring 0.3s;
         | 
| 158 | 
            +
              -webkit-animation: rightSpring 0.3s;
         | 
| 159 | 
            +
            }
         | 
| 160 | 
            +
             | 
| 161 | 
            +
            #swipebox-slider.leftSpring {
         | 
| 162 | 
            +
              -moz-animation: leftSpring 0.3s;
         | 
| 163 | 
            +
              -webkit-animation: leftSpring 0.3s;
         | 
| 164 | 
            +
            }
         | 
| 165 | 
            +
             | 
| 166 | 
            +
            @-moz-keyframes rightSpring {
         | 
| 167 | 
            +
              0% {
         | 
| 168 | 
            +
                margin-left: 0px;
         | 
| 169 | 
            +
              }
         | 
| 170 | 
            +
             | 
| 171 | 
            +
              50% {
         | 
| 172 | 
            +
                margin-left: -30px;
         | 
| 173 | 
            +
              }
         | 
| 174 | 
            +
             | 
| 175 | 
            +
              100% {
         | 
| 176 | 
            +
                margin-left: 0px;
         | 
| 177 | 
            +
              }
         | 
| 178 | 
            +
            }
         | 
| 179 | 
            +
             | 
| 180 | 
            +
            @-moz-keyframes leftSpring {
         | 
| 181 | 
            +
              0% {
         | 
| 182 | 
            +
                margin-left: 0px;
         | 
| 183 | 
            +
              }
         | 
| 184 | 
            +
             | 
| 185 | 
            +
              50% {
         | 
| 186 | 
            +
                margin-left: 30px;
         | 
| 187 | 
            +
              }
         | 
| 188 | 
            +
             | 
| 189 | 
            +
              100% {
         | 
| 190 | 
            +
                margin-left: 0px;
         | 
| 191 | 
            +
              }
         | 
| 192 | 
            +
            }
         | 
| 193 | 
            +
             | 
| 194 | 
            +
            @-webkit-keyframes rightSpring {
         | 
| 195 | 
            +
              0% {
         | 
| 196 | 
            +
                margin-left: 0px;
         | 
| 197 | 
            +
              }
         | 
| 198 | 
            +
             | 
| 199 | 
            +
              50% {
         | 
| 200 | 
            +
                margin-left: -30px;
         | 
| 201 | 
            +
              }
         | 
| 202 | 
            +
             | 
| 203 | 
            +
              100% {
         | 
| 204 | 
            +
                margin-left: 0px;
         | 
| 205 | 
            +
              }
         | 
| 206 | 
            +
            }
         | 
| 207 | 
            +
             | 
| 208 | 
            +
            @-webkit-keyframes leftSpring {
         | 
| 209 | 
            +
              0% {
         | 
| 210 | 
            +
                margin-left: 0px;
         | 
| 211 | 
            +
              }
         | 
| 212 | 
            +
             | 
| 213 | 
            +
              50% {
         | 
| 214 | 
            +
                margin-left: 30px;
         | 
| 215 | 
            +
              }
         | 
| 216 | 
            +
             | 
| 217 | 
            +
              100% {
         | 
| 218 | 
            +
                margin-left: 0px;
         | 
| 219 | 
            +
              }
         | 
| 220 | 
            +
            }
         | 
| 221 | 
            +
             | 
| 222 | 
            +
            @media screen and (max-width: 800px) {
         | 
| 223 | 
            +
              #swipebox-action #swipebox-close {
         | 
| 224 | 
            +
                left: 0;
         | 
| 225 | 
            +
              }
         | 
| 226 | 
            +
             | 
| 227 | 
            +
              #swipebox-action #swipebox-prev {
         | 
| 228 | 
            +
                right: 60px;
         | 
| 229 | 
            +
              }
         | 
| 230 | 
            +
             | 
| 231 | 
            +
              #swipebox-action #swipebox-next {
         | 
| 232 | 
            +
                right: 0;
         | 
| 233 | 
            +
              }
         | 
| 234 | 
            +
            }
         | 
| 235 | 
            +
             | 
| 236 | 
            +
             | 
| 237 | 
            +
            /* Skin
         | 
| 238 | 
            +
            --------------------------*/
         | 
| 239 | 
            +
            #swipebox-overlay {
         | 
| 240 | 
            +
              background: #0d0d0d;
         | 
| 241 | 
            +
            }
         | 
| 242 | 
            +
             | 
| 243 | 
            +
            #swipebox-action, #swipebox-caption {
         | 
| 244 | 
            +
              text-shadow: 1px 1px 1px black;
         | 
| 245 | 
            +
              background-color: #0d0d0d;
         | 
| 246 | 
            +
              background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #0d0d0d), color-stop(100%, #000000));
         | 
| 247 | 
            +
              background-image: -webkit-linear-gradient(#0d0d0d, #000000);
         | 
| 248 | 
            +
              background-image: -moz-linear-gradient(#0d0d0d, #000000);
         | 
| 249 | 
            +
              background-image: -o-linear-gradient(#0d0d0d, #000000);
         | 
| 250 | 
            +
              background-image: linear-gradient(#0d0d0d, #000000);
         | 
| 251 | 
            +
              filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=95);
         | 
| 252 | 
            +
              opacity: 0.95;
         | 
| 253 | 
            +
            }
         | 
| 254 | 
            +
             | 
| 255 | 
            +
            #swipebox-action {
         | 
| 256 | 
            +
              border-top: 1px solid rgba(255, 255, 255, 0.2);
         | 
| 257 | 
            +
            }
         | 
| 258 | 
            +
             | 
| 259 | 
            +
            #swipebox-caption, #swipebox-count {
         | 
| 260 | 
            +
              text-align: center;
         | 
| 261 | 
            +
              color: white!important;
         | 
| 262 | 
            +
              font-size: 15px;
         | 
| 263 | 
            +
              line-height: 43px;
         | 
| 264 | 
            +
              font-family: Helvetica, Arial, sans-serif;
         | 
| 265 | 
            +
            }
         | 
    
        metadata
    ADDED
    
    | @@ -0,0 +1,244 @@ | |
| 1 | 
            +
            --- !ruby/object:Gem::Specification
         | 
| 2 | 
            +
            name: swipebox
         | 
| 3 | 
            +
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            +
              version: 0.0.1
         | 
| 5 | 
            +
            platform: ruby
         | 
| 6 | 
            +
            authors:
         | 
| 7 | 
            +
            - Miha Rekar
         | 
| 8 | 
            +
            autorequire: 
         | 
| 9 | 
            +
            bindir: bin
         | 
| 10 | 
            +
            cert_chain: []
         | 
| 11 | 
            +
            date: 2013-10-20 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: 4.0.0
         | 
| 20 | 
            +
              type: :runtime
         | 
| 21 | 
            +
              prerelease: false
         | 
| 22 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 23 | 
            +
                requirements:
         | 
| 24 | 
            +
                - - ~>
         | 
| 25 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 26 | 
            +
                    version: 4.0.0
         | 
| 27 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 28 | 
            +
              name: railties
         | 
| 29 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 30 | 
            +
                requirements:
         | 
| 31 | 
            +
                - - ~>
         | 
| 32 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 33 | 
            +
                    version: '4.0'
         | 
| 34 | 
            +
              type: :runtime
         | 
| 35 | 
            +
              prerelease: false
         | 
| 36 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 37 | 
            +
                requirements:
         | 
| 38 | 
            +
                - - ~>
         | 
| 39 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 40 | 
            +
                    version: '4.0'
         | 
| 41 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 42 | 
            +
              name: sass-rails
         | 
| 43 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 44 | 
            +
                requirements:
         | 
| 45 | 
            +
                - - ~>
         | 
| 46 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 47 | 
            +
                    version: '4.0'
         | 
| 48 | 
            +
              type: :runtime
         | 
| 49 | 
            +
              prerelease: false
         | 
| 50 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 51 | 
            +
                requirements:
         | 
| 52 | 
            +
                - - ~>
         | 
| 53 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 54 | 
            +
                    version: '4.0'
         | 
| 55 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 56 | 
            +
              name: sqlite3
         | 
| 57 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 58 | 
            +
                requirements:
         | 
| 59 | 
            +
                - - '>='
         | 
| 60 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 61 | 
            +
                    version: '0'
         | 
| 62 | 
            +
              type: :development
         | 
| 63 | 
            +
              prerelease: false
         | 
| 64 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 65 | 
            +
                requirements:
         | 
| 66 | 
            +
                - - '>='
         | 
| 67 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 68 | 
            +
                    version: '0'
         | 
| 69 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 70 | 
            +
              name: minitest
         | 
| 71 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 72 | 
            +
                requirements:
         | 
| 73 | 
            +
                - - '>='
         | 
| 74 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 75 | 
            +
                    version: '0'
         | 
| 76 | 
            +
              type: :development
         | 
| 77 | 
            +
              prerelease: false
         | 
| 78 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 79 | 
            +
                requirements:
         | 
| 80 | 
            +
                - - '>='
         | 
| 81 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 82 | 
            +
                    version: '0'
         | 
| 83 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 84 | 
            +
              name: capybara
         | 
| 85 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 86 | 
            +
                requirements:
         | 
| 87 | 
            +
                - - '>='
         | 
| 88 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 89 | 
            +
                    version: '0'
         | 
| 90 | 
            +
              type: :development
         | 
| 91 | 
            +
              prerelease: false
         | 
| 92 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 93 | 
            +
                requirements:
         | 
| 94 | 
            +
                - - '>='
         | 
| 95 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 96 | 
            +
                    version: '0'
         | 
| 97 | 
            +
            description: Adds Swipebox http://brutaldesign.github.io/swipebox/ to Rails app.
         | 
| 98 | 
            +
            email:
         | 
| 99 | 
            +
            - info@mr.si
         | 
| 100 | 
            +
            executables: []
         | 
| 101 | 
            +
            extensions: []
         | 
| 102 | 
            +
            extra_rdoc_files: []
         | 
| 103 | 
            +
            files:
         | 
| 104 | 
            +
            - lib/swipebox/version.rb
         | 
| 105 | 
            +
            - lib/swipebox.rb
         | 
| 106 | 
            +
            - lib/tasks/swipebox_tasks.rake
         | 
| 107 | 
            +
            - vendor/assets/images/icons.png
         | 
| 108 | 
            +
            - vendor/assets/images/icons.svg
         | 
| 109 | 
            +
            - vendor/assets/images/loader.gif
         | 
| 110 | 
            +
            - vendor/assets/javascripts/swipebox.js
         | 
| 111 | 
            +
            - vendor/assets/stylesheets/swipebox.css.scss
         | 
| 112 | 
            +
            - MIT-LICENSE
         | 
| 113 | 
            +
            - Rakefile
         | 
| 114 | 
            +
            - test/dummy/app/assets/javascripts/application.js
         | 
| 115 | 
            +
            - test/dummy/app/assets/stylesheets/application.css
         | 
| 116 | 
            +
            - test/dummy/app/controllers/application_controller.rb
         | 
| 117 | 
            +
            - test/dummy/app/helpers/application_helper.rb
         | 
| 118 | 
            +
            - test/dummy/app/views/layouts/application.html.erb
         | 
| 119 | 
            +
            - test/dummy/bin/bundle
         | 
| 120 | 
            +
            - test/dummy/bin/rails
         | 
| 121 | 
            +
            - test/dummy/bin/rake
         | 
| 122 | 
            +
            - test/dummy/config/application.rb
         | 
| 123 | 
            +
            - test/dummy/config/boot.rb
         | 
| 124 | 
            +
            - test/dummy/config/database.yml
         | 
| 125 | 
            +
            - test/dummy/config/environment.rb
         | 
| 126 | 
            +
            - test/dummy/config/environments/development.rb
         | 
| 127 | 
            +
            - test/dummy/config/environments/production.rb
         | 
| 128 | 
            +
            - test/dummy/config/environments/test.rb
         | 
| 129 | 
            +
            - test/dummy/config/initializers/backtrace_silencers.rb
         | 
| 130 | 
            +
            - test/dummy/config/initializers/filter_parameter_logging.rb
         | 
| 131 | 
            +
            - test/dummy/config/initializers/inflections.rb
         | 
| 132 | 
            +
            - test/dummy/config/initializers/mime_types.rb
         | 
| 133 | 
            +
            - test/dummy/config/initializers/secret_token.rb
         | 
| 134 | 
            +
            - test/dummy/config/initializers/session_store.rb
         | 
| 135 | 
            +
            - test/dummy/config/initializers/wrap_parameters.rb
         | 
| 136 | 
            +
            - test/dummy/config/locales/en.yml
         | 
| 137 | 
            +
            - test/dummy/config/routes.rb
         | 
| 138 | 
            +
            - test/dummy/config.ru
         | 
| 139 | 
            +
            - test/dummy/db/development.sqlite3
         | 
| 140 | 
            +
            - test/dummy/db/test.sqlite3
         | 
| 141 | 
            +
            - test/dummy/log/development.log
         | 
| 142 | 
            +
            - test/dummy/log/test.log
         | 
| 143 | 
            +
            - test/dummy/public/404.html
         | 
| 144 | 
            +
            - test/dummy/public/422.html
         | 
| 145 | 
            +
            - test/dummy/public/500.html
         | 
| 146 | 
            +
            - test/dummy/public/favicon.ico
         | 
| 147 | 
            +
            - test/dummy/Rakefile
         | 
| 148 | 
            +
            - test/dummy/README.rdoc
         | 
| 149 | 
            +
            - test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705
         | 
| 150 | 
            +
            - test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af
         | 
| 151 | 
            +
            - test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953
         | 
| 152 | 
            +
            - test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994
         | 
| 153 | 
            +
            - test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6
         | 
| 154 | 
            +
            - test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655
         | 
| 155 | 
            +
            - test/dummy/tmp/cache/assets/test/sass/f9c6a267bff4dbc4c014a32d65f455fee642ff7f/swipebox.css.scssc
         | 
| 156 | 
            +
            - test/dummy/tmp/cache/assets/test/sprockets/2417663820f12194df84f901aeddf205
         | 
| 157 | 
            +
            - test/dummy/tmp/cache/assets/test/sprockets/299e5c3e6fe902ee2248d4f551e2a736
         | 
| 158 | 
            +
            - test/dummy/tmp/cache/assets/test/sprockets/39a4691fbee5b5d7a15a61d39e8298c9
         | 
| 159 | 
            +
            - test/dummy/tmp/cache/assets/test/sprockets/52844af88f25171d8b2bd9b3841fc531
         | 
| 160 | 
            +
            - test/dummy/tmp/cache/assets/test/sprockets/58b5fb0ecf84f52f0afa100b0b4c8cba
         | 
| 161 | 
            +
            - test/dummy/tmp/cache/assets/test/sprockets/7cad4e0f6c155aee86ff849175d87485
         | 
| 162 | 
            +
            - test/dummy/tmp/cache/assets/test/sprockets/9540837ee939a819ff3def6208986d2b
         | 
| 163 | 
            +
            - test/dummy/tmp/cache/assets/test/sprockets/ad7154cc55f39a227d2bc6415f58932d
         | 
| 164 | 
            +
            - test/dummy/tmp/cache/assets/test/sprockets/f8832e909e8abc5a5f26e98546d2f7ca
         | 
| 165 | 
            +
            - test/integration/swipebox_integration_test.rb
         | 
| 166 | 
            +
            - test/test_helper.rb
         | 
| 167 | 
            +
            homepage: https://github.com/mrfoto/swipebox
         | 
| 168 | 
            +
            licenses: []
         | 
| 169 | 
            +
            metadata: {}
         | 
| 170 | 
            +
            post_install_message: 
         | 
| 171 | 
            +
            rdoc_options: []
         | 
| 172 | 
            +
            require_paths:
         | 
| 173 | 
            +
            - lib
         | 
| 174 | 
            +
            required_ruby_version: !ruby/object:Gem::Requirement
         | 
| 175 | 
            +
              requirements:
         | 
| 176 | 
            +
              - - '>='
         | 
| 177 | 
            +
                - !ruby/object:Gem::Version
         | 
| 178 | 
            +
                  version: '0'
         | 
| 179 | 
            +
            required_rubygems_version: !ruby/object:Gem::Requirement
         | 
| 180 | 
            +
              requirements:
         | 
| 181 | 
            +
              - - '>='
         | 
| 182 | 
            +
                - !ruby/object:Gem::Version
         | 
| 183 | 
            +
                  version: '0'
         | 
| 184 | 
            +
            requirements: []
         | 
| 185 | 
            +
            rubyforge_project: 
         | 
| 186 | 
            +
            rubygems_version: 2.1.9
         | 
| 187 | 
            +
            signing_key: 
         | 
| 188 | 
            +
            specification_version: 4
         | 
| 189 | 
            +
            summary: Gem for Swipebox by @brutaldesign
         | 
| 190 | 
            +
            test_files:
         | 
| 191 | 
            +
            - test/dummy/app/assets/javascripts/application.js
         | 
| 192 | 
            +
            - test/dummy/app/assets/stylesheets/application.css
         | 
| 193 | 
            +
            - test/dummy/app/controllers/application_controller.rb
         | 
| 194 | 
            +
            - test/dummy/app/helpers/application_helper.rb
         | 
| 195 | 
            +
            - test/dummy/app/views/layouts/application.html.erb
         | 
| 196 | 
            +
            - test/dummy/bin/bundle
         | 
| 197 | 
            +
            - test/dummy/bin/rails
         | 
| 198 | 
            +
            - test/dummy/bin/rake
         | 
| 199 | 
            +
            - test/dummy/config/application.rb
         | 
| 200 | 
            +
            - test/dummy/config/boot.rb
         | 
| 201 | 
            +
            - test/dummy/config/database.yml
         | 
| 202 | 
            +
            - test/dummy/config/environment.rb
         | 
| 203 | 
            +
            - test/dummy/config/environments/development.rb
         | 
| 204 | 
            +
            - test/dummy/config/environments/production.rb
         | 
| 205 | 
            +
            - test/dummy/config/environments/test.rb
         | 
| 206 | 
            +
            - test/dummy/config/initializers/backtrace_silencers.rb
         | 
| 207 | 
            +
            - test/dummy/config/initializers/filter_parameter_logging.rb
         | 
| 208 | 
            +
            - test/dummy/config/initializers/inflections.rb
         | 
| 209 | 
            +
            - test/dummy/config/initializers/mime_types.rb
         | 
| 210 | 
            +
            - test/dummy/config/initializers/secret_token.rb
         | 
| 211 | 
            +
            - test/dummy/config/initializers/session_store.rb
         | 
| 212 | 
            +
            - test/dummy/config/initializers/wrap_parameters.rb
         | 
| 213 | 
            +
            - test/dummy/config/locales/en.yml
         | 
| 214 | 
            +
            - test/dummy/config/routes.rb
         | 
| 215 | 
            +
            - test/dummy/config.ru
         | 
| 216 | 
            +
            - test/dummy/db/development.sqlite3
         | 
| 217 | 
            +
            - test/dummy/db/test.sqlite3
         | 
| 218 | 
            +
            - test/dummy/log/development.log
         | 
| 219 | 
            +
            - test/dummy/log/test.log
         | 
| 220 | 
            +
            - test/dummy/public/404.html
         | 
| 221 | 
            +
            - test/dummy/public/422.html
         | 
| 222 | 
            +
            - test/dummy/public/500.html
         | 
| 223 | 
            +
            - test/dummy/public/favicon.ico
         | 
| 224 | 
            +
            - test/dummy/Rakefile
         | 
| 225 | 
            +
            - test/dummy/README.rdoc
         | 
| 226 | 
            +
            - test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705
         | 
| 227 | 
            +
            - test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af
         | 
| 228 | 
            +
            - test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953
         | 
| 229 | 
            +
            - test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994
         | 
| 230 | 
            +
            - test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6
         | 
| 231 | 
            +
            - test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655
         | 
| 232 | 
            +
            - test/dummy/tmp/cache/assets/test/sass/f9c6a267bff4dbc4c014a32d65f455fee642ff7f/swipebox.css.scssc
         | 
| 233 | 
            +
            - test/dummy/tmp/cache/assets/test/sprockets/2417663820f12194df84f901aeddf205
         | 
| 234 | 
            +
            - test/dummy/tmp/cache/assets/test/sprockets/299e5c3e6fe902ee2248d4f551e2a736
         | 
| 235 | 
            +
            - test/dummy/tmp/cache/assets/test/sprockets/39a4691fbee5b5d7a15a61d39e8298c9
         | 
| 236 | 
            +
            - test/dummy/tmp/cache/assets/test/sprockets/52844af88f25171d8b2bd9b3841fc531
         | 
| 237 | 
            +
            - test/dummy/tmp/cache/assets/test/sprockets/58b5fb0ecf84f52f0afa100b0b4c8cba
         | 
| 238 | 
            +
            - test/dummy/tmp/cache/assets/test/sprockets/7cad4e0f6c155aee86ff849175d87485
         | 
| 239 | 
            +
            - test/dummy/tmp/cache/assets/test/sprockets/9540837ee939a819ff3def6208986d2b
         | 
| 240 | 
            +
            - test/dummy/tmp/cache/assets/test/sprockets/ad7154cc55f39a227d2bc6415f58932d
         | 
| 241 | 
            +
            - test/dummy/tmp/cache/assets/test/sprockets/f8832e909e8abc5a5f26e98546d2f7ca
         | 
| 242 | 
            +
            - test/integration/swipebox_integration_test.rb
         | 
| 243 | 
            +
            - test/test_helper.rb
         | 
| 244 | 
            +
            has_rdoc: 
         |