Skip to content

Commit

Permalink
Update supported ruby versions
Browse files Browse the repository at this point in the history
  • Loading branch information
malvads committed Feb 29, 2024
1 parent d06cb06 commit 9270110
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['3.3', '3.2', '3.1', '3.0', '2.7']
ruby-version: ['3.3', '3.2', '3.1', '3.0', '2.7', '2.1']
name: Test with Ruby ${{ matrix.ruby-version }}
steps:
- uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions easycache.gemspec
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
Gem::Specification.new do |s|
s.name = "easycache"
s.version = "0.0.1"
s.version = "0.0.2"
s.summary = "Easy to use in-mem cache system for ruby"
s.description = "A simple gem for store and manage data in mem"
s.authors = ["Miguel Álvarez"]
s.email = "thegexi@gmail.com"
s.files = Dir['lib/**/*', 'LICENSE', 'README.md']
s.required_ruby_version = '>= 2.7.0'
s.required_ruby_version = '>= 2.1.2'
s.homepage = "https://github.com/malvads/easy-cache"
s.license = "AGPL-3.0"
end

0 comments on commit 9270110

Please sign in to comment.