camo 0.2.1 → 0.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7f9d615b8d94009e7ec746874527a8a56529d2c27d7d24af586e01adf0a8cab0
4
- data.tar.gz: ba444423761f620a91d0a86821310ce7377e5b46fd376f5dd7629989462b88cf
3
+ metadata.gz: 75146934bdc8406c6250901f9a0ab539f37fa92959870f82eb0d10c0b5f0e1d0
4
+ data.tar.gz: 36bd7df7fd6e82983d5c2c36379f6e008d69c16f7bc94d4075e02f5863e01b1c
5
5
  SHA512:
6
- metadata.gz: 0440adf94048d1b3ec14c5b0b6f6546ac9adb0d97fd5e6b88458dc4a02c394f793931054f3c2a54e5b14f6b4c8c31194b973daae13a0fe4060378c9bf49ec443
7
- data.tar.gz: e194661a571e4ca51871ebcd2229bb28dc26d982076f4eff07b565eba520d16d8cd1b1e83f65b588f6a65a4a76c3af8e99be0f41f2da36a3b888ed56e7ddf874
6
+ metadata.gz: 99bffef0f72a13024883f7ad9e1609ecd901bd07c7322abb850e0692b7a8c0e243a9d390837a283feaa8c736046a8950444cf9df06b6d77a6408f24e4c3aa717
7
+ data.tar.gz: 78d936d5db26321150e037c7bcb73bb56a10024f401ade1a2c39c7e80a3eac134f315d9944b6342a4ef08497d8b9036dbd0769090fe95a7c5c7f1deea68f9d28
data/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ ## 0.4.0 (2026-04-07)
2
+
3
+ - Dropped support for Ruby < 3.3
4
+
5
+ ## 0.3.0 (2024-10-22)
6
+
7
+ - Dropped support for Ruby < 3.1
8
+
1
9
  ## 0.2.1 (2022-10-09)
2
10
 
3
11
  - 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-2026 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.4.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,16 +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.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Kane
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2022-10-10 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies: []
13
- description:
14
12
  email: andrew@ankane.org
15
13
  executables: []
16
14
  extensions: []
@@ -26,7 +24,6 @@ homepage: https://github.com/ankane/camo-ruby
26
24
  licenses:
27
25
  - MIT
28
26
  metadata: {}
29
- post_install_message:
30
27
  rdoc_options: []
31
28
  require_paths:
32
29
  - lib
@@ -34,15 +31,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
34
31
  requirements:
35
32
  - - ">="
36
33
  - !ruby/object:Gem::Version
37
- version: '2.7'
34
+ version: '3.3'
38
35
  required_rubygems_version: !ruby/object:Gem::Requirement
39
36
  requirements:
40
37
  - - ">="
41
38
  - !ruby/object:Gem::Version
42
39
  version: '0'
43
40
  requirements: []
44
- rubygems_version: 3.3.7
45
- signing_key:
41
+ rubygems_version: 4.0.6
46
42
  specification_version: 4
47
43
  summary: Ruby client for Camo - the SSL image proxy
48
44
  test_files: []