picture_tag-rails
文件大小: unknow
源码售价: 5 个金币 积分规则     积分充值
资源说明:Ruby gem with helpers to generate tag markup
# Picture-Tag Rails
[![Build Status](https://travis-ci.org/G5/picture_tag-rails.png?branch=master)](https://travis-ci.org/G5/picture_tag-rails)
[![Code Climate](https://codeclimate.com/github/G5/picture_tag-rails.png)](https://codeclimate.com/github/G5/picture_tag-rails)

A Rails view helper extension to generate HTML5 `` tag markup
from the W3C HTML Responsive Images Extension Proposal.

[w3.org/community/respimg](http://www.w3.org/community/respimg)


## Current Version

0.0.6


## Requirements

* [Ruby on Rails](http://rubyonrails.org) > 3.0 and < 4.0



## Installation

### Gemfile

Add this line to your application's Gemfile.

```ruby
gem 'picture_tag-rails'
```

### Manual

Or install it yourself.

```bash
gem install picture_tag-rails
```


## Usage

Add to some Ruby file in your Rails app.

Use it in your views as you would the `image_tag()` helper.

```erb
<%= picture_tag(image_path, options) %>
```


## Examples

The vanilla usage with default sizes and media queries:

```erb
<%= picture_tag("cat.jpg", alt: "Kitty cat!") %>
```

produces:

```html

  
  
  
  
  
  Kitty cat!

```

### Options

To exclude certain `` elements with media queries above a max width:

```erb
<%= picture_tag(image_path, max_width: "600px") %>
```

To override the default media queries and names:

```erb
<%= picture_tag(image_path, sizes: { itty_bitty: "(min-width: 10px)" }) %>
```

To prefix (opposed to suffix) the filename with size ('/images/small-kitty.jpg'):

```erb
<%= picture_tag(image_path, prefix_size: true}) %>
```

To preload a custom default placeholder image:

```erb
<%= picture_tag(image_path, default_image: '/images/placeholder.png'}) %>
```


All `image_tag` options are valid for `picture_tag`.
See [image_tag Docs](http://api.rubyonrails.org/classes/ActionView/Helpers/AssetTagHelper.html)


## Paperclip

Paperclip options for default media queries and sizes.

```ruby
has_attached_file :image, {
  styles: {
    tiny:   "320x",
    small:  "480x",
    medium: "768x",
    large:  "1000x",
    huge:   "1600x",
    %s(tiny@2x)   => "640x",
    %s(small@2x)  => "960x",
    %s(medium@2x) => "1536x",
    %s(large@2x)  => "2000x",
    %s(huge@2x)  => "3200x"
  }
```

## Configuration
- Retina support can be disabled by adding a configure block to your config
```ruby
PictureTag.configure do |config|
  config.display_high_def = false
end
```


## TODO

- Add optional paperclip integration functionality
- Intergrate with Travis.ci
- Implement Rails 4 support


## Authors

* Bookis Smuin / [@bookis](https://github.com/bookis)
* Chad Crissman / [@crissmancd](https://github.com/crissmancd)
* John Lucia / [@johnlucia](https://github.com/johnlucia)
* Levi Brown / [@levibrown](https://github.com/levibrown)
* Colton Fent / [@colto](https://github.com/colto)


## Contributions

1. Fork it
2. Get it running (see Installation above)
3. Create your feature branch (`git checkout -b my-new-feature`)
4. Write your code and **specs**
5. Commit your changes (`git commit -am 'Add some feature'`)
6. Push to the branch (`git push origin my-new-feature`)
7. Create new Pull Request

If you find bugs, have feature requests or questions, please
[file an issue](https://github.com/G5/picture_tag-rails/issues).

### Specs

```bash
rake spec
```

### Releases

```bash
TODO how do you do a release?
```


## License

Copyright (c) 2012 G5

MIT License

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

本源码包内暂不包含可直接显示的源代码文件,请下载源码包。