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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7f9d615b8d94009e7ec746874527a8a56529d2c27d7d24af586e01adf0a8cab0
4
- data.tar.gz: ba444423761f620a91d0a86821310ce7377e5b46fd376f5dd7629989462b88cf
3
+ metadata.gz: 32a27bb525c18f8b970e7e7ad29c0dff1d26239b90d44da82390d7836aeae107
4
+ data.tar.gz: c3a18682fea7f40a1360f1fb3e5acb7fcc947ee149370f68281bbd4835669431
5
5
  SHA512:
6
- metadata.gz: 0440adf94048d1b3ec14c5b0b6f6546ac9adb0d97fd5e6b88458dc4a02c394f793931054f3c2a54e5b14f6b4c8c31194b973daae13a0fe4060378c9bf49ec443
7
- data.tar.gz: e194661a571e4ca51871ebcd2229bb28dc26d982076f4eff07b565eba520d16d8cd1b1e83f65b588f6a65a4a76c3af8e99be0f41f2da36a3b888ed56e7ddf874
6
+ metadata.gz: 2df01fe4b0e018de37ba1e464d67d56b8b1b0cd36d6892c2ef8cde366d43970d7d13c8e9715745a330415752a0e487369ecdeb1b7e3097de9f86c5629e1700cf
7
+ data.tar.gz: 1c15ad4d99c8ed8786ed1b26fcb693f79a9705e87928feeaea0a03699135289929b0dd00ec512dd8da25d1e43b7a0de847cf20877d46bf5a735e7504900e6b8f
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 0.3.0 (2024-10-22)
2
+
3
+ - Dropped support for Ruby < 3.1
4
+
1
5
  ## 0.2.1 (2022-10-09)
2
6
 
3
7
  - Added `key` option to `camo` method
data/LICENSE.txt CHANGED
@@ -1,5 +1,5 @@
1
1
  Copyright (c) 2010 Corey Donohoe, Rick Olson
2
- Copyright (c) 2013-2022 Andrew Kane
2
+ Copyright (c) 2013-2024 Andrew Kane
3
3
 
4
4
  MIT License
5
5
 
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?branch=master)](https://github.com/ankane/camo-ruby/actions)
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
@@ -1,3 +1,3 @@
1
1
  module Camo
2
- VERSION = "0.2.1"
2
+ VERSION = "0.3.0"
3
3
  end
data/lib/camo.rb CHANGED
@@ -2,8 +2,8 @@
2
2
  require "openssl"
3
3
 
4
4
  # modules
5
- require "camo/helper"
6
- require "camo/version"
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.2.1
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: 2022-10-10 00:00:00.000000000 Z
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: '2.7'
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.3.7
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