Use a version of Ruby >= 2.4. In this repo, we are using version 2.5.7 as indicated in the ./scripts/.ruby-version file. If you are using a different version of Ruby, you can change the value in that file.
If you are unsure of whether you have Ruby installed or what version it may be, you can type ruby -v on the command line or rvm current if you are using RVM.
Mac comes with Ruby installed. To install the latest version of Ruby, use HomeBrew. You can install Homebrew
brew install rubyThe scripts are run from the scripts directory.
-
Clone this repo.
-
Install Cloudinary gem.
gem install cloudinary- Set up credentials.
Create a ./scripts/config.rb file and copy the value from the CLOUDINARY_URL located in the Cloudinary Management Console into the file as an argument for the config_from_url command. See the config.rb.sample. The code below shows two alternatives for adding credentials.
There are two ways you can make the credentials available.
# Cloudinary.config do |config|
# config.cloud_name = "CLOUD_NAME"
# config.api_key = "API_KEY"
# config.api_secret = "API_SECRET"
# end
Cloudinary.config_from_url("cloudinary://API_KEY:API_SECRET@CLOUD_NAME")You'll see this code in the training scripts for importing the config file. If an environment variable has been set up, it will override this code.
if Cloudinary.config.api_key.blank?
require './config'
endIf you are using environment variables and want the external config.rb file to override the environment variable, the code below can help with that. The use case for this might be if you are working locally with this code.
USE_CONFIG_FILE = true
if Cloudinary.config.api_key.blank? || USE_CONFIG_FILE
require './config'
endYou will see that the images and video to be used in the exercises are in the assets directory. Scripts access assets relative to the scripts directory, so navigate to the scripts directory.
cd scriptsCommands are commented out in each script. You can uncomment and run script or copy and paste to run in Ruby/IRB.
- Uncomment commands and run
ruby upload.rbto exercise storage commands. - Uncomment commands and run
ruby preset.rbto exercise preset commands. - Uncomment commands and run
ruby autoupload-fetch.rbto exercise auto-upload and fetch commands. - Uncomment commands and run
ruby manage.rbto exercise management commands. - Uncomment commands and run
ruby upload-for-transformations.rbto load assets used in transformation scripts. - Uncomment commands and run
ruby optimize-transformation.rbto exercise transformations that optimize. - Uncomment commands and run
ruby aesthetics-transform.rbto exercise transformations that enhance aesthetics. - Uncomment commands and run
ruby named-transformation.rbto exercise creating and using named transformations.
You need version 2.4 or higher of Ruby to use Ruby/IRB. This will allow you to experiment with your own commands interactively. Once you have set up the config.rb, the scripts/bin/console.rb will be able to access your credentials. From the scripts directory, run the following:
ruby bin/console.rbNote: Commands are wrapped in JSON.pretty_generate() abbreviated as jj to make the results easier to read.
The directory /server is a bonus that contains code to run a Rails server.