svgeez 4.0.0 → 4.1.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: ca924e5f0fad11f4fdecab5e808ac801088f2f3a2f5d5399d1dd896e9d833f87
4
- data.tar.gz: c9983ad74b3c812fe5b47cb9a1b5de73bf4bea64a8fcab6f53cd38791c9795c3
3
+ metadata.gz: 39569e0fb1d9b64953a645003d68ac3e463960837697095050fd8bb14c7f946c
4
+ data.tar.gz: 1847211af2cd29865509668f514902809b7c96f9e146a7205cb44fa42737e811
5
5
  SHA512:
6
- metadata.gz: 845e9150fe2d51c6431ad1a9659a9ef90383675f11cfe2f1245568f271f8588402b112183c88f56e95b2e0c9342956b42ac92f1ead7e1993177cb143039279e5
7
- data.tar.gz: 21bc1821b63b4e3ed9d4b53c88e6d3e8db2dec382a3f3c2fd73bd1f47c5fd95ff5fce8ecd8981bab85baf5c596ba122a328b06b121f103885b4879285aa7e218
6
+ metadata.gz: 512552baeff7b25a90a095bf82f21abd15ad2084fda594a0f60e9bf6f44d3a4428830d796787e7b091a7fd4e474b5b5a53ac949a34e7d65adcdad1442fa7eed3
7
+ data.tar.gz: 16d366949f2b0726c572d7d97d03f513a8cec3cdd8f918445dbf6c34971b28e82c82005982bc8716bbc35d7be4f0983eb98b4dedac0736a37b352f5cb77a1c61
data/.circleci/config.yml CHANGED
@@ -45,3 +45,4 @@ workflows:
45
45
  - "2.6-node"
46
46
  - "2.7-node"
47
47
  - "3.0-node"
48
+ - "3.1-node"
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 4.1.0 / 2022-01-22
4
+
5
+ - Update required Ruby version to include versions less than 4 (47e2bdf)
6
+
3
7
  ## 4.0.0 / 2021-07-12
4
8
 
5
9
  - **Breaking Change:** Require SVGO version 1.3.2 (c108320)
data/CONTRIBUTING.md CHANGED
@@ -8,7 +8,7 @@ There are a couple ways you can help improve svgeez:
8
8
 
9
9
  ## Getting Started
10
10
 
11
- svgeez is developed using Ruby 2.5.9 and is additionally tested against Ruby 2.6, 2.7, and 3.0 using [CircleCI](https://app.circleci.com/pipelines/github/jgarber623/svgeez).
11
+ svgeez is developed using Ruby 2.5.9 and is additionally tested against Ruby 2.6, 2.7, 3.0, and 3.1 using [CircleCI](https://app.circleci.com/pipelines/github/jgarber623/svgeez).
12
12
 
13
13
  Before making changes to svgeez, you'll want to install Ruby 2.5.9. It's recommended that you use a Ruby version managment tool like [rbenv](https://github.com/rbenv/rbenv), [chruby](https://github.com/postmodern/chruby), or [rvm](https://github.com/rvm/rvm). Once you've installed Ruby 2.5.9 using your method of choice, install the project's gems by running:
14
14
 
data/README.md CHANGED
@@ -20,7 +20,7 @@ _For more on why SVG sprites are the bee's knees as far as icon systems go, give
20
20
 
21
21
  ## Getting Started
22
22
 
23
- Before installing and using svgeez, you'll want to have Ruby 2.5 (or newer) installed on your computer. There are plenty of ways to go about this, but my preference is [rbenv](https://github.com/sstephenson/rbenv). svgeez is developed using Ruby 2.5.9 and is additionally tested against Ruby 2.6, 2.7, and 3.0 using [CircleCI](https://app.circleci.com/pipelines/github/jgarber623/svgeez).
23
+ Before installing and using svgeez, you'll want to have Ruby 2.5 (or newer) installed on your computer. There are plenty of ways to go about this, but my preference is [rbenv](https://github.com/sstephenson/rbenv). svgeez is developed using Ruby 2.5.9 and is additionally tested against Ruby 2.6, 2.7, 3.0, and 3.1 using [CircleCI](https://app.circleci.com/pipelines/github/jgarber623/svgeez).
24
24
 
25
25
  ## Installation
26
26
 
@@ -29,7 +29,7 @@ If you're using [Bundler](http://bundler.io), add svgeez to your project's Gemfi
29
29
  ```rb
30
30
  source 'https://rubygems.org'
31
31
 
32
- gem 'svgeez', '~> 3.0'
32
+ gem 'svgeez', '~> 4.1'
33
33
  ```
34
34
 
35
35
  …and hop over to your command prompt and run…
@@ -1,3 +1,3 @@
1
1
  module Svgeez
2
- VERSION = '4.0.0'.freeze
2
+ VERSION = '4.1.0'.freeze
3
3
  end
data/svgeez.gemspec CHANGED
@@ -1,7 +1,7 @@
1
1
  require_relative 'lib/svgeez/version'
2
2
 
3
3
  Gem::Specification.new do |spec|
4
- spec.required_ruby_version = Gem::Requirement.new('>= 2.5', '< 3.1')
4
+ spec.required_ruby_version = '>= 2.5', '< 4'
5
5
 
6
6
  spec.name = 'svgeez'
7
7
  spec.version = Svgeez::VERSION
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: svgeez
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.0
4
+ version: 4.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jason Garber
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-07-12 00:00:00.000000000 Z
11
+ date: 2022-01-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: listen
@@ -81,8 +81,8 @@ licenses:
81
81
  - MIT
82
82
  metadata:
83
83
  bug_tracker_uri: https://github.com/jgarber623/svgeez/issues
84
- changelog_uri: https://github.com/jgarber623/svgeez/blob/v4.0.0/CHANGELOG.md
85
- post_install_message:
84
+ changelog_uri: https://github.com/jgarber623/svgeez/blob/v4.1.0/CHANGELOG.md
85
+ post_install_message:
86
86
  rdoc_options: []
87
87
  require_paths:
88
88
  - lib
@@ -93,15 +93,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
93
93
  version: '2.5'
94
94
  - - "<"
95
95
  - !ruby/object:Gem::Version
96
- version: '3.1'
96
+ version: '4'
97
97
  required_rubygems_version: !ruby/object:Gem::Requirement
98
98
  requirements:
99
99
  - - ">="
100
100
  - !ruby/object:Gem::Version
101
101
  version: '0'
102
102
  requirements: []
103
- rubygems_version: 3.2.16
104
- signing_key:
103
+ rubygems_version: 3.3.5
104
+ signing_key:
105
105
  specification_version: 4
106
106
  summary: Automatically generate an SVG sprite from a folder of SVG icons.
107
107
  test_files: []