camo 0.2.1 → 0.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/LICENSE.txt +1 -1
- data/README.md +1 -1
- data/lib/camo/version.rb +1 -1
- data/lib/camo.rb +2 -5
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 32a27bb525c18f8b970e7e7ad29c0dff1d26239b90d44da82390d7836aeae107
|
4
|
+
data.tar.gz: c3a18682fea7f40a1360f1fb3e5acb7fcc947ee149370f68281bbd4835669431
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2df01fe4b0e018de37ba1e464d67d56b8b1b0cd36d6892c2ef8cde366d43970d7d13c8e9715745a330415752a0e487369ecdeb1b7e3097de9f86c5629e1700cf
|
7
|
+
data.tar.gz: 1c15ad4d99c8ed8786ed1b26fcb693f79a9705e87928feeaea0a03699135289929b0dd00ec512dd8da25d1e43b7a0de847cf20877d46bf5a735e7504900e6b8f
|
data/CHANGELOG.md
CHANGED
data/LICENSE.txt
CHANGED
data/README.md
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
Ruby client for [Camo](https://github.com/atmos/camo) and [Go-Camo](https://github.com/cactus/go-camo) - the SSL image proxy :lock:
|
4
4
|
|
5
|
-
[![Build Status](https://github.com/ankane/camo-ruby/workflows/build/badge.svg
|
5
|
+
[![Build Status](https://github.com/ankane/camo-ruby/actions/workflows/build.yml/badge.svg)](https://github.com/ankane/camo-ruby/actions)
|
6
6
|
|
7
7
|
## Installation
|
8
8
|
|
data/lib/camo/version.rb
CHANGED
data/lib/camo.rb
CHANGED
@@ -2,8 +2,8 @@
|
|
2
2
|
require "openssl"
|
3
3
|
|
4
4
|
# modules
|
5
|
-
|
6
|
-
|
5
|
+
require_relative "camo/helper"
|
6
|
+
require_relative "camo/version"
|
7
7
|
|
8
8
|
module Camo
|
9
9
|
class << self
|
@@ -17,9 +17,6 @@ module Camo
|
|
17
17
|
@key ||= ENV["CAMO_KEY"]
|
18
18
|
end
|
19
19
|
end
|
20
|
-
|
21
|
-
# TODO remove in 0.3.0
|
22
|
-
include Helper
|
23
20
|
end
|
24
21
|
|
25
22
|
if defined?(ActiveSupport)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: camo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Andrew Kane
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-10-23 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description:
|
14
14
|
email: andrew@ankane.org
|
@@ -34,14 +34,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
34
34
|
requirements:
|
35
35
|
- - ">="
|
36
36
|
- !ruby/object:Gem::Version
|
37
|
-
version: '
|
37
|
+
version: '3.1'
|
38
38
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
39
39
|
requirements:
|
40
40
|
- - ">="
|
41
41
|
- !ruby/object:Gem::Version
|
42
42
|
version: '0'
|
43
43
|
requirements: []
|
44
|
-
rubygems_version: 3.
|
44
|
+
rubygems_version: 3.5.16
|
45
45
|
signing_key:
|
46
46
|
specification_version: 4
|
47
47
|
summary: Ruby client for Camo - the SSL image proxy
|