svgeez 0.2.3 → 0.2.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.codeclimate.yml +8 -0
- data/.rubocop.yml +5 -0
- data/.ruby-version +1 -1
- data/.travis.yml +1 -2
- data/CONTRIBUTING.md +2 -2
- data/README.md +5 -5
- data/Rakefile +3 -1
- data/lib/svgeez/version.rb +1 -1
- data/svgeez.gemspec +1 -0
- metadata +18 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c1bce20ebd93334034c81f289bc0afbccafa602f
|
4
|
+
data.tar.gz: 00257096f8f4c43218dcfe2cc40324bd545a26f9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bed9d3d9ecb1e777a2f7cbb9b2141d9bd28e13993b63981fee1af710f5447746bcc601f59197b3c339beddadb540aabe611eb41f397835269a1ca85848abf16d
|
7
|
+
data.tar.gz: 631d6f71da3b8f25169ddf41ec68041827cdac54b8a8ace6a22c59f967d7004817a6ddff05cdf2f44e8a8a09ce53f331517dca849b0c7cd3c5336b64fcb2df5b
|
data/.codeclimate.yml
ADDED
data/.rubocop.yml
ADDED
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.2.
|
1
|
+
2.2.5
|
data/.travis.yml
CHANGED
data/CONTRIBUTING.md
CHANGED
@@ -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 a written in [Ruby](https://www.ruby-lang.org/en/) (version 2.2.
|
14
|
+
svgeez is a 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.
|
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.
|
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:
|
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.
|
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).
|
23
23
|
|
24
|
-
svgeez _might_ work with other versions of Ruby, but it's developed in 2.2.
|
24
|
+
svgeez _might_ work with other versions of Ruby, but it's developed in 2.2.5.
|
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.
|
31
|
+
ruby '2.2.5'
|
32
32
|
|
33
33
|
source 'https://rubygems.org' do
|
34
34
|
gem 'svgeez'
|
@@ -170,12 +170,12 @@ You want to help make svgeez better? Hell yeah! I like your enthusiasm. For more
|
|
170
170
|
|
171
171
|
### Donations
|
172
172
|
|
173
|
-
If diving into Ruby isn't your thing, but you'd still like to support svgeez, consider making a donation! Any amount—large or small—is greatly appreciated. As a token of my gratitude, I'll add your name to the [
|
173
|
+
If diving into Ruby isn't your thing, but you'd still like to support svgeez, consider making a donation! Any amount—large or small—is greatly appreciated. As a token of my gratitude, I'll add your name to the [Acknowledgments](#acknowledgments) below.
|
174
174
|
|
175
175
|
[![Donate via Square Cash](https://img.shields.io/badge/square%20cash-$jgarber-28c101.svg)](https://cash.me/$jgarber)
|
176
176
|
[![Donate via Paypal](https://img.shields.io/badge/paypal-jgarber-009cde.svg)](https://www.paypal.me/jgarber)
|
177
177
|
|
178
|
-
##
|
178
|
+
## Acknowledgments
|
179
179
|
|
180
180
|
svgeez benefited greatly from the hard work done by the folks working on the following projects:
|
181
181
|
|
data/Rakefile
CHANGED
data/lib/svgeez/version.rb
CHANGED
data/svgeez.gemspec
CHANGED
@@ -22,6 +22,7 @@ Gem::Specification.new do |spec|
|
|
22
22
|
spec.add_development_dependency 'codeclimate-test-reporter'
|
23
23
|
spec.add_development_dependency 'rake', '~> 10.0'
|
24
24
|
spec.add_development_dependency 'rspec'
|
25
|
+
spec.add_development_dependency 'rubocop', '~> 0.42.0'
|
25
26
|
|
26
27
|
spec.add_runtime_dependency 'listen', '~> 3.0'
|
27
28
|
spec.add_runtime_dependency 'mercenary', '~> 0.3'
|
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: 0.2.
|
4
|
+
version: 0.2.4
|
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
|
+
date: 2016-08-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -66,6 +66,20 @@ dependencies:
|
|
66
66
|
- - ">="
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: rubocop
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: 0.42.0
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: 0.42.0
|
69
83
|
- !ruby/object:Gem::Dependency
|
70
84
|
name: listen
|
71
85
|
requirement: !ruby/object:Gem::Requirement
|
@@ -102,9 +116,11 @@ executables:
|
|
102
116
|
extensions: []
|
103
117
|
extra_rdoc_files: []
|
104
118
|
files:
|
119
|
+
- ".codeclimate.yml"
|
105
120
|
- ".editorconfig"
|
106
121
|
- ".gitignore"
|
107
122
|
- ".rspec"
|
123
|
+
- ".rubocop.yml"
|
108
124
|
- ".ruby-version"
|
109
125
|
- ".travis.yml"
|
110
126
|
- CODE_OF_CONDUCT.md
|