Skip to content

Commit

Permalink
Updating to Ruby 3.0.1
Browse files Browse the repository at this point in the history
Updating to Ruby 3.0.1
  • Loading branch information
marciofrayze committed Jun 22, 2021
1 parent 8a1143d commit 22efdd8
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
source 'https://rubygems.org'
ruby '2.7.2'
ruby '3.0.1'

group :test do
gem 'rake' # Used for task execution.
Expand Down
16 changes: 8 additions & 8 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
GEM
remote: https://rubygems.org/
specs:
docile (1.3.2)
minitest (5.14.2)
docile (1.4.0)
minitest (5.14.4)
rack (2.2.3)
rack-test (1.1.0)
rack (>= 1.0, < 3)
rake (13.0.1)
simplecov (0.20.0)
rake (13.0.3)
simplecov (0.21.2)
docile (~> 1.1)
simplecov-html (~> 0.11)
simplecov_json_formatter (~> 0.1)
simplecov-html (0.12.3)
simplecov_json_formatter (0.1.2)
simplecov_json_formatter (0.1.3)

PLATFORMS
ruby
x86_64-darwin-20

DEPENDENCIES
minitest
Expand All @@ -24,7 +24,7 @@ DEPENDENCIES
simplecov

RUBY VERSION
ruby 2.7.2p137
ruby 3.0.1p64

BUNDLED WITH
2.1.4
2.2.15
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,15 +62,15 @@ The service will be available at */time* path and will return the current date a

## Dependancies

RackStep is developed and tested with Ruby 2.7.2. The only hard dependency is
RackStep is developed and tested with Ruby 3.0.1. The only hard dependency is
Rack itself, but there are a few recommended gems:
- puma: fast rack-compatible server that can be used for production.
- simplecov: a simple way to generate statistics about your unit tests coverage.


## How to use RackStep

Make sure you have ruby 2.7.2 installed (ruby --version). If you don't, we recommend you to use [rbenv](https://github.com/sstephenson/rbenv#installation) to install it. RackStep may work with older ruby implementations but we always develop and test with the latest Ruby MRI stable version.
Make sure you have ruby 3.0.1 installed (ruby --version). If you don't, we recommend you to use [rbenv](https://github.com/sstephenson/rbenv#installation) to install it. RackStep may work with older ruby implementations but we always develop and test with the latest Ruby MRI stable version.

Install the bundle gem if you don't have it already:
```
Expand Down

0 comments on commit 22efdd8

Please sign in to comment.