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

Update project Ruby version to 3.0.6 #105

Merged
merged 1 commit into from
Dec 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading