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

Commit

Permalink
Update project Ruby version to 3.0.6 (#105)
Browse files Browse the repository at this point in the history
  • Loading branch information
jgarber623 authored Dec 13, 2023
1 parent 90e84de commit 6f68239
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.5.9
3.0.6
20 changes: 8 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,25 +18,21 @@ _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.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 [GitHub Actions](https://github.com/jgarber623/svgeez/actions).
Before installing and using svgeez, you'll want to have [Ruby](https://www.ruby-lang.org) 3.0 (or newer) installed. Using 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) is recommended.

## Installation
svgeez is developed using Ruby 3.0.6 and is tested against additional Ruby versions using [GitHub Actions](https://github.com/jgarber623/svgeez/actions).

If you're using [Bundler](http://bundler.io), add svgeez to your project's Gemfile:
## Installation

```rb
source 'https://rubygems.org'
Add svgeez to your project's `Gemfile` and run `bundle install`:

gem 'svgeez', '~> 4.1'
```
```ruby
source "https://rubygems.org"

…and hop over to your command prompt and run…

```sh
bundle install
gem "svgeez"
```

You may also install svgeez directly by issuing the following command:
You may also install svgeez directly for use as a standalone tool:

```sh
gem install svgeez
Expand Down

0 comments on commit 6f68239

Please sign in to comment.