Skip to content
This repository has been archived by the owner on Feb 29, 2024. It is now read-only.

Commit

Permalink
Update minimum required Ruby version to 2.2.6.
Browse files Browse the repository at this point in the history
  • Loading branch information
jgarber623 committed Dec 26, 2016
1 parent ec99035 commit c59f9bc
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.2.5
2.2.6
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
language: ruby
rvm:
- 2.2.5
- 2.2.6
before_install:
- npm install -g svgo
notifications:
Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ I definitely appreciate your interest in (and help improving) svgeez. Thanks!

## Installation

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.
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.

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:
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:

```sh
bundle install
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,16 @@ _For more on why SVG sprites are the bee's knees as far as icon systems go, give

## Getting Started

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).
Before installing and using svgeez, you'll want to have Ruby 2.2.6 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).

svgeez _might_ work with other versions of Ruby, but it's developed in 2.2.5.
svgeez _might_ work with other versions of Ruby, but it's developed in 2.2.6.

## Installation

If you're using Bundler, add svgeez to your project's Gemfile:

```rb
ruby '2.2.5'
ruby '2.2.6'

source 'https://rubygems.org' do
gem 'svgeez'
Expand Down
2 changes: 1 addition & 1 deletion lib/svgeez/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Svgeez
VERSION = '1.0.1'.freeze
VERSION = '1.0.2'.freeze
end
2 changes: 1 addition & 1 deletion svgeez.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'svgeez/version'

Gem::Specification.new do |spec|
spec.required_ruby_version = '>= 2.2.5'
spec.required_ruby_version = '>= 2.2.6'

spec.name = 'svgeez'
spec.version = Svgeez::VERSION
Expand Down

0 comments on commit c59f9bc

Please sign in to comment.