Skip to content

Commit

Permalink
Upd
Browse files Browse the repository at this point in the history
  • Loading branch information
avelicka committed Sep 1, 2023
1 parent e141d3f commit b03f386
Show file tree
Hide file tree
Showing 7 changed files with 41 additions and 32 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_release_pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ jobs:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: 2.5.0
rubygems: 2.7.3
ruby-version: 2.7.2
rubygems: 3.1.4
bundler-cache: true
# - name: Setup
# run: |
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.5.0
2.7.2
12 changes: 6 additions & 6 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ gemspec

gem 'echoe', '>= 4.6.5'

group :benchmark do
gem "remix-stash", '~> 1.1.3'
gem "dalli", '~> 2.6.4'
gem "memcache", '= 1.4.1'
gem "memcache-client", '~> 1.8.5'
end
# group :benchmark do
# gem "remix-stash", '~> 1.1.3'
# gem "dalli", '~> 2.6.4'
# gem "memcache", '= 1.4.1'
# gem "memcache-client", '~> 1.8.5'
# end
49 changes: 27 additions & 22 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,45 +1,50 @@
PATH
remote: .
specs:
memcached (1.8.0)
vinted-memcached (1.8.0)

GEM
remote: https://rubygems.org/
specs:
activesupport (3.2.6)
i18n (~> 0.6)
multi_json (~> 1.0)
activesupport (7.0.7.2)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 1.6, < 2)
minitest (>= 5.1)
tzinfo (~> 2.0)
allison (2.0.3)
dalli (2.6.4)
echoe (4.6.5)
concurrent-ruby (1.2.2)
echoe (4.6.6)
allison (>= 2.0.3)
rake (>= 0.9.2)
rdoc (>= 2.5.11)
rubyforge (>= 2.0.4)
i18n (0.6.0)
json_pure (1.8.1)
memcache (1.4.1)
memcache-client (1.8.5)
metaclass (0.0.4)
mocha (1.0.0)
metaclass (~> 0.0.1)
multi_json (1.3.6)
rake (0.9.2.2)
rdoc (4.1.0)
remix-stash (1.1.3)
i18n (1.14.1)
concurrent-ruby (~> 1.0)
json_pure (2.6.3)
minitest (5.19.0)
mocha (2.1.0)
ruby2_keywords (>= 0.0.5)
psych (5.1.0)
stringio
rake (13.0.6)
rdoc (6.5.0)
psych (>= 4.0.0)
ruby2_keywords (0.0.5)
rubyforge (2.0.4)
json_pure (>= 1.1.7)
stringio (3.0.8)
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)

PLATFORMS
ruby

DEPENDENCIES
activesupport
dalli (~> 2.6.4)
echoe (>= 4.6.5)
memcache (= 1.4.1)
memcache-client (~> 1.8.5)
memcached!
mocha
rake
remix-stash (~> 1.1.3)
vinted-memcached!

BUNDLED WITH
2.3.26
1 change: 1 addition & 0 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -132,5 +132,6 @@ def run(cmd, reason)
end

task :version do |t|
require 'memcached/version'
puts Memcached::VERSION
end
2 changes: 1 addition & 1 deletion lib/memcached.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ module Rlibmemcached
class Memcached
Lib = Rlibmemcached
raise "libmemcached 0.32 required; you somehow linked to #{Lib.memcached_lib_version}." unless "0.32" == Lib.memcached_lib_version
VERSION = File.read("#{File.dirname(__FILE__)}/../CHANGELOG")[/v([\d\.]+)\./, 1]
end

require 'memcached/exceptions'
Expand All @@ -31,3 +30,4 @@ class Memcached
require 'memcached/memcached'
require 'memcached/rails'
require 'memcached/experimental'
require 'memcached/version'
3 changes: 3 additions & 0 deletions lib/memcached/version.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
class Memcached
VERSION = '1.8.0'
end

0 comments on commit b03f386

Please sign in to comment.