svgeez 1.0.1 → 1.0.2

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
  SHA1:
3
- metadata.gz: ea565ea4e30cd6c39b4527c93b97be473c65c5f3
4
- data.tar.gz: 94cf2839e99ab3d83eba4a4ef5149bcd9202488f
3
+ metadata.gz: 0c36326d5848bbca6e2cad29119a27e1c20b8f31
4
+ data.tar.gz: 8d2e00d295b978f00321b649c9e3032b15aa671b
5
5
  SHA512:
6
- metadata.gz: f127e80f1d452b638e9342c0bb47109f53325bb9fe727ac1b48ce70c358776850bff4ee844f4b5a44973663d11d710ef72bd6d29e7e36be9223620b8d91c740b
7
- data.tar.gz: 2fa385b708e00500453cbf0a59938dcb9b39d0f5a09ab888c8938bd4beaf587d11beae6f119dcd753e4a1ff6877ccd05ecf7245708f6174867f06b0dcb3811db
6
+ metadata.gz: 44b7acb9b4d0949341df569e959f680ba4f1fe1ca5989d2cd04c1022d354b77550b3be8dcf7f758a37a8e929d01a73f85fc2d49b40f01eb4ac25f7ee3229197b
7
+ data.tar.gz: d9211e89a0a1314cf89281780d4ee7a2f02a061eeb2aae34071d670f86e6112f615b4f2f3039dcaf2f94f3f33c1ec9f7f9759184c94a104ffea9264b619c3dc3
@@ -1 +1 @@
1
- 2.2.5
1
+ 2.2.6
@@ -1,6 +1,8 @@
1
1
  language: ruby
2
2
  rvm:
3
- - 2.2.5
3
+ - 2.2.6
4
+ - 2.3.3
5
+ - 2.4.0
4
6
  before_install:
5
7
  - npm install -g svgo
6
8
  notifications:
@@ -11,9 +11,9 @@ I definitely appreciate your interest in (and help improving) svgeez. Thanks!
11
11
 
12
12
  ## Installation
13
13
 
14
- svgeez is written in [Ruby](https://www.ruby-lang.org/en/) (version 2.2.5) and development dependencies are managed using the [Bundler](http://bundler.io/) gem.
14
+ svgeez is written in [Ruby](https://www.ruby-lang.org/en/) (version 2.2.6) and development dependencies are managed using the [Bundler](http://bundler.io/) gem. [Travis CI builds](https://travis-ci.org/jgarber623/svgeez) are done using Ruby 2.2.6, 2.3.3, and 2.4.0.
15
15
 
16
- I manage Ruby versions with [rbenv](https://github.com/rbenv/rbenv). I'd recommend you do the same or use a similar Ruby version manager ([chruby](https://github.com/postmodern/chruby/) or [RVM](https://rvm.io/) come to mind). Once you've installed Ruby 2.2.5 using your method of choice, install the project's gems by running:
16
+ I manage Ruby versions with [rbenv](https://github.com/rbenv/rbenv). I'd recommend you do the same or use a similar Ruby version manager ([chruby](https://github.com/postmodern/chruby/) or [RVM](https://rvm.io/) come to mind). Once you've installed Ruby 2.2.6 using your method of choice, install the project's gems by running:
17
17
 
18
18
  ```sh
19
19
  bundle install
data/README.md CHANGED
@@ -19,16 +19,16 @@ _For more on why SVG sprites are the bee's knees as far as icon systems go, give
19
19
 
20
20
  ## Getting Started
21
21
 
22
- Before installing and using svgeez, you'll want to have Ruby 2.2.5 installed on your computer. There are plenty of ways to go about this, but my preference is [rbenv](https://github.com/sstephenson/rbenv). If you're developing on a Mac and using [Homebrew](http://brew.sh/), installing rbenv is [super easy](https://github.com/sstephenson/rbenv#homebrew-on-mac-os-x).
22
+ Before installing and using svgeez, you'll want to have Ruby 2.2.6 (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). If you're developing on a Mac and using [Homebrew](http://brew.sh/), installing rbenv is [super easy](https://github.com/sstephenson/rbenv#homebrew-on-mac-os-x).
23
23
 
24
- svgeez _might_ work with other versions of Ruby, but it's developed in 2.2.5.
24
+ svgeez _might_ work with other versions of Ruby, but it's developed in 2.2.6.
25
25
 
26
26
  ## Installation
27
27
 
28
28
  If you're using Bundler, add svgeez to your project's Gemfile:
29
29
 
30
30
  ```rb
31
- ruby '2.2.5'
31
+ ruby '2.2.6'
32
32
 
33
33
  source 'https://rubygems.org' do
34
34
  gem 'svgeez'
@@ -217,6 +217,7 @@ svgeez is written and maintained by [Jason Garber](https://github.com/jgarber623
217
217
 
218
218
  - [Brett Wilkins](https://github.com/bwilkins)
219
219
  - [danny](https://github.com/f96q)
220
+ - [Denis Hovart](https://github.com/dhovart)
220
221
 
221
222
  ## License
222
223
 
@@ -1,3 +1,3 @@
1
1
  module Svgeez
2
- VERSION = '1.0.1'.freeze
2
+ VERSION = '1.0.2'.freeze
3
3
  end
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
  require 'svgeez/version'
5
5
 
6
6
  Gem::Specification.new do |spec|
7
- spec.required_ruby_version = '>= 2.2.5'
7
+ spec.required_ruby_version = '>= 2.2.6'
8
8
 
9
9
  spec.name = 'svgeez'
10
10
  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: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jason Garber
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-11-06 00:00:00.000000000 Z
11
+ date: 2016-12-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -149,7 +149,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
149
149
  requirements:
150
150
  - - ">="
151
151
  - !ruby/object:Gem::Version
152
- version: 2.2.5
152
+ version: 2.2.6
153
153
  required_rubygems_version: !ruby/object:Gem::Requirement
154
154
  requirements:
155
155
  - - ">="
@@ -157,7 +157,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
157
157
  version: '0'
158
158
  requirements: []
159
159
  rubyforge_project:
160
- rubygems_version: 2.4.5.1
160
+ rubygems_version: 2.4.5.2
161
161
  signing_key:
162
162
  specification_version: 4
163
163
  summary: Automatically generate an SVG sprite from a folder of SVG icons.