diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index d6f11ff..186752a 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -9,7 +9,7 @@ jobs: strategy: matrix: ruby: - - '3.2.0' + - '3.3.6' steps: - uses: actions/checkout@v4 - uses: ruby/setup-ruby@v1 diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 613ba25..3f7014a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,7 +9,7 @@ jobs: strategy: matrix: ruby: - - '3.2.0' + - '3.3.6' steps: - uses: actions/checkout@v4 - uses: ruby/setup-ruby@v1 diff --git a/.github/workflows/rspec.yml b/.github/workflows/rspec.yml index 5793428..844abd1 100644 --- a/.github/workflows/rspec.yml +++ b/.github/workflows/rspec.yml @@ -9,7 +9,7 @@ jobs: strategy: matrix: ruby: - - '3.2.0' + - '3.3.6' services: redis: image: redis diff --git a/.github/workflows/rubocop.yml b/.github/workflows/rubocop.yml index 19d095a..c2d10f6 100644 --- a/.github/workflows/rubocop.yml +++ b/.github/workflows/rubocop.yml @@ -9,7 +9,7 @@ jobs: strategy: matrix: ruby: - - '3.2.0' + - '3.3.6' steps: - uses: actions/checkout@v4 - uses: ruby/setup-ruby@v1 diff --git a/.ruby-version b/.ruby-version new file mode 100644 index 0000000..9c25013 --- /dev/null +++ b/.ruby-version @@ -0,0 +1 @@ +3.3.6 diff --git a/redis-single-file.gemspec b/redis-single-file.gemspec index c4fc997..157b7f1 100644 --- a/redis-single-file.gemspec +++ b/redis-single-file.gemspec @@ -13,10 +13,11 @@ Gem::Specification.new do |spec| spec.homepage = 'https://github.com/lifeBCE/redis-single-file' spec.license = 'MIT' - # Build Requiremenrs + # Build Requirements spec.require_paths = ['lib'] spec.required_ruby_version = '>= 3.2.0' + # Resource Location Configuration spec.metadata['homepage_uri'] = spec.homepage spec.metadata['allowed_push_host'] = 'https://rubygems.org' spec.metadata['changelog_uri'] = 'https://github.com/lifeBCE/redis-single-file/blob/main/CHANGELOG.md' @@ -27,7 +28,6 @@ Gem::Specification.new do |spec| # NOTE: Grabs list of files to include in gem from git. New files/directories # will not be picked up until running 'git add' prior to building gem. - # spec.files = IO.popen(%w[git ls-files -z], chdir: __dir__, err: IO::NULL) do |ls| # reject self and rejected paths defined above