Import Upstream version 2.7.11
parents
No related branches found
No related tags found
Showing
- .gitignore 36 additions, 0 deletions.gitignore
- .travis.yml 29 additions, 0 deletions.travis.yml
- Appraisals 12 additions, 0 deletionsAppraisals
- Gemfile 15 additions, 0 deletionsGemfile
- History.md 491 additions, 0 deletionsHistory.md
- LICENSE 20 additions, 0 deletionsLICENSE
- Performance.md 42 additions, 0 deletionsPerformance.md
- README.md 224 additions, 0 deletionsREADME.md
- Rakefile 14 additions, 0 deletionsRakefile
- code_of_conduct.md 50 additions, 0 deletionscode_of_conduct.md
- dalli.gemspec 19 additions, 0 deletionsdalli.gemspec
- gemfiles/rails5.0.gemfile 17 additions, 0 deletionsgemfiles/rails5.0.gemfile
- gemfiles/rails5.1.gemfile 17 additions, 0 deletionsgemfiles/rails5.1.gemfile
- gemfiles/rails5.2.gemfile 17 additions, 0 deletionsgemfiles/rails5.2.gemfile
- gemfiles/rails5.gemfile 9 additions, 0 deletionsgemfiles/rails5.gemfile
- gemfiles/rails6.0.gemfile 17 additions, 0 deletionsgemfiles/rails6.0.gemfile
- lib/action_dispatch/middleware/session/dalli_store.rb 82 additions, 0 deletionslib/action_dispatch/middleware/session/dalli_store.rb
- lib/active_support/cache/dalli_store.rb 441 additions, 0 deletionslib/active_support/cache/dalli_store.rb
- lib/dalli.rb 49 additions, 0 deletionslib/dalli.rb
- lib/dalli/cas/client.rb 59 additions, 0 deletionslib/dalli/cas/client.rb
.gitignore
0 → 100644
.travis.yml
0 → 100644
Appraisals
0 → 100644
Gemfile
0 → 100644
source 'https://rubygems.org' | ||
gemspec | ||
gem 'appraisal' | ||
gem 'kgio', :platform => :mri | ||
gem 'rails' | ||
group :test do | ||
gem 'minitest' | ||
gem 'mocha' | ||
gem 'rake' | ||
gem 'connection_pool' | ||
gem 'simplecov' | ||
end |
History.md
0 → 100644
LICENSE
0 → 100644
Performance.md
0 → 100644
README.md
0 → 100644
Rakefile
0 → 100644
code_of_conduct.md
0 → 100644
dalli.gemspec
0 → 100644
require './lib/dalli/version' | ||
Gem::Specification.new do |s| | ||
s.name = "dalli" | ||
s.version = Dalli::VERSION | ||
s.license = "MIT" | ||
s.authors = ['Peter M. Goldstein', 'Mike Perham'] | ||
s.description = s.summary = 'High performance memcached client for Ruby' | ||
s.email = ['peter.m.goldstein@gmail.com', 'mperham@gmail.com'] | ||
s.files = Dir.glob('lib/**/*') + [ | ||
'LICENSE', | ||
'README.md', | ||
'History.md', | ||
'Gemfile' | ||
] | ||
s.homepage = 'https://github.com/petergoldstein/dalli' | ||
end | ||
gemfiles/rails5.0.gemfile
0 → 100644
gemfiles/rails5.1.gemfile
0 → 100644
gemfiles/rails5.2.gemfile
0 → 100644
gemfiles/rails5.gemfile
0 → 100644
gemfiles/rails6.0.gemfile
0 → 100644
lib/active_support/cache/dalli_store.rb
0 → 100644
lib/dalli.rb
0 → 100644
lib/dalli/cas/client.rb
0 → 100644
Please register or sign in to comment