Skip to content

jhw-dev/paperclip-upyun

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

paperclip-upyun

RubyGems Build status

This is a Paperclip plugin, which use upyun storage.

Dependency upyun-ruby sdk.

Install

gem install paperclip-upyun

or

gem 'paperclip-upyun' in you Gemfile.

Usage

  • create config/initializers/paperclip.rb or your program initializer. code configation as follow:
Paperclip::Attachment.default_options[:storage] = :upyun
Paperclip::Attachment.default_options[:bucket] = ENV["UPYUN_BUCKET"]
Paperclip::Attachment.default_options[:operator] = ENV["UPYUN_OPERATOR"]
Paperclip::Attachment.default_options[:password] = ENV["UPYUN_PASSWORD"]
Paperclip::Attachment.default_options[:upyun_host] = ENV["UPYUN_HOST"]
Paperclip::Attachment.default_options[:use_timestamp] = false
  • add paperclip config in your model:
class User < ActiveRecord::Base

  	has_attached_file :avatar,
                    :path => ":class/:attachment/:id/:fingerprint/:filename:version",
                    :default_url => ":upyun_host/:class/:attachment/default_avatar.png:version"

  	# validates :avatar, :attachment_presence => true
  	validates_attachment_content_type :avatar, :content_type => /\Aimage\/.*\Z/

end

  • happy code with

    User.avatar.url or add :version parameter like User.avatar.url(64)

About :version Parameter

  • This gem use clip image function with upyun, default separator is !, more information you can see http://docs.upyun.com/guide/#_9
  • if you do not want this function, just don't use :version parameter in :path model configration.

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Added some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

CHANGELOG

###0.1.2(2016-1-3)

  • perfect REAM.md
  • fix require issue
  • test passing

0.1.1 (2015-12-27)

  • first version

License

The MIT License (MIT)

Copyright (c) 2016 聚会玩

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.

聚会玩,游戏就要一起玩

聚会玩

About

paperclip storage upyun plugin

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages

  • Ruby 100.0%