File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,17 +4,17 @@ cloudconvert-ruby
44> This is the official Ruby SDK for the [ CloudConvert] ( https://cloudconvert.com/api/v2 ) API v2.
55
66[ ![ Build Status] ( https://github.com/cloudconvert/cloudconvert-ruby/workflows/Tests/badge.svg )] ( https://github.com/cloudconvert/cloudconvert-ruby/actions?query=workflow%3ATests )
7- [ ![ Latest Stable Version] ( https://img.shields.io/gem/v/cloudconvert-sdk ?label=stable )] ( https://rubygems.org/gems/cloudconvert-sdk )
8- [ ![ Total Downloads] ( https://img.shields.io/gem/dt/cloudconvert-sdk )] ( https://rubygems.org/gems/cloudconvert-sdk )
9- [ ![ License] ( https://img.shields.io/github/license/cloudconvert/cloudconvert-ruby )] ( https://rubygems.org/gems/cloudconvert-sdk )
7+ [ ![ Latest Stable Version] ( https://img.shields.io/gem/v/cloudconvert?label=stable )] ( https://rubygems.org/gems/cloudconvert )
8+ [ ![ Total Downloads] ( https://img.shields.io/gem/dt/cloudconvert )] ( https://rubygems.org/gems/cloudconvert )
9+ [ ![ License] ( https://img.shields.io/github/license/cloudconvert/cloudconvert-ruby )] ( https://rubygems.org/gems/cloudconvert )
1010
1111Installation
1212------------
1313
1414Add this line to your application's Gemfile:
1515
1616``` rb
17- gem " cloudconvert-sdk "
17+ gem " cloudconvert"
1818```
1919
2020And then execute:
@@ -26,7 +26,7 @@ bundle install
2626Or install it yourself as:
2727
2828``` sh
29- gem install cloudconvert-sdk
29+ gem install cloudconvert
3030```
3131
3232
Original file line number Diff line number Diff line change 22# frozen_string_literal: true
33
44require "bundler/setup"
5- require "cloudconvert/sdk "
5+ require "cloudconvert"
66require "dotenv/load"
77
88# You can add fixtures and/or initialization code here to make experimenting
Original file line number Diff line number Diff line change 11require_relative "lib/cloudconvert/version"
22
33Gem ::Specification . new do |spec |
4- spec . name = "cloudconvert-sdk "
4+ spec . name = "cloudconvert"
55 spec . version = CloudConvert ::VERSION
66 spec . authors = [ "Josias Montag" , "Steve Lacey" ]
77 spec . email = %w[ josias@montag.info steve@steve.ly ]
File renamed without changes.
Original file line number Diff line number Diff line change 11require "bundler/setup"
22require "climate_control"
3- require "cloudconvert/sdk "
3+ require "cloudconvert"
44require "pry"
55require "rack"
66require "rspec"
You can’t perform that action at this time.
0 commit comments