cloudinary

THIS VERSION IS DEVELOPING

Module that allows uploading images to cloudinary in an easy way

Installation

Add this to your application's shard.yml:

dependencies:
  cloudinary:
    github: kimvex/cloudinary

Usage

require "cloudinary"
  CLOUDINARY = Cloudinary::Connect.new("api_key", "cloud_name", "preset")

  server = HTTP::Server.new do |context|
    response = CLOUDINARY.upload(
      context,
      "test"
    )

    context.response << response
  end

  server.bind_tcp 8085
  server.listen

Development

To upload images are authentication problems, you have to add a presets that give you that freedom

Go to documentation of cloudinary add-new-preset

Contributing

  1. Fork it (https://github.com/kimvex/cloudinary/fork)
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

Contributors