From cf5a179c7a758012a59a7dc9b192cec28a9bebd6 Mon Sep 17 00:00:00 2001 From: fartem Date: Mon, 6 Jan 2025 14:55:32 +0300 Subject: [PATCH] 2025-01-06 v. 7.7.3.1: updated LCSC --- lcsp/counter.rb | 4 ++-- leetcode-ruby.gemspec | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lcsp/counter.rb b/lcsp/counter.rb index a050c7a9..8aeba65a 100644 --- a/lcsp/counter.rb +++ b/lcsp/counter.rb @@ -6,8 +6,8 @@ module LCSC # Solutions counter. class LCSCCounter # @param {String} path - def initialize - @path = './' + def initialize(path) + @path = path end # @return {Integer} diff --git a/leetcode-ruby.gemspec b/leetcode-ruby.gemspec index fee7fb61..caf25728 100644 --- a/leetcode-ruby.gemspec +++ b/leetcode-ruby.gemspec @@ -5,7 +5,7 @@ require 'English' ::Gem::Specification.new do |s| s.required_ruby_version = '>= 3.0' s.name = 'leetcode-ruby' - s.version = '7.7.3' + s.version = '7.7.3.1' s.license = 'MIT' s.files = ::Dir['lib/**/*.rb'] + %w[README.md] s.executable = 'leetcode-ruby'