blunt-cache 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fa23a41b5b4323f62abb654de3248b0284d53f39
4
- data.tar.gz: 39d07e022f2c23a94dc970140ce9caa009b41335
3
+ metadata.gz: bf46d74e7e4652dfef6b3f3b8a17ab2be7d6632f
4
+ data.tar.gz: 299867f1138432a5de57407172c2388a57e13a70
5
5
  SHA512:
6
- metadata.gz: a3446dc8ab676bcf121f8e6dae706f41dc815238711ddfaa3adf48941d6b96f57d25fd6bf72f48d8667deed52742f8a0dfd6566ea2d2a8bf513915c8be0685d2
7
- data.tar.gz: da6241b12fd898a9feb20ac033e94100d85800c1dce0773aa6b785415c31f82eee3d81e6cbc22a04a405c83ec287a9d1f2bbfadfb9bcb03697286c283bd0d975
6
+ metadata.gz: 6b6338db292321ea9f87384b4282e073285c331af8c66f2f7774bca89ffd1e5171524931ef952b3287739794a2ec421daf19296c296febf783b8e3d8db240801
7
+ data.tar.gz: 27287a69808fb856764928b0105d24f91a055ab5b9b86b5a0ed907d3f59db0f8b0e62b698980616a0e4e6b5dac9436579d6e4627428fc2cb110501b40ec27d9a
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- blunt_cache (0.1.0)
4
+ blunt-cache (0.1.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -26,7 +26,7 @@ PLATFORMS
26
26
  ruby
27
27
 
28
28
  DEPENDENCIES
29
- blunt_cache!
29
+ blunt-cache!
30
30
  bundler (~> 1.6)
31
- rake
31
+ rake (>= 10.0)
32
32
  rspec (~> 3.1)
data/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  # BluntCache
2
- Simple in-memory cache service for ruby.
2
+ Simple in-memory cache service for Ruby.
3
3
 
4
4
  ## Usage
5
5
 
@@ -30,10 +30,10 @@ Simple in-memory cache service for ruby.
30
30
  ## Why? When to use?
31
31
 
32
32
  * It is fast.
33
- * Use it when you don't want to execute seralization-deseralization cycle with real cache (Redis or Memcache).
33
+ * Use it when you don't want to execute serialization-deserialization cycle with real cache (Redis or Memcache).
34
34
  * Use it when you not able (or don't want) to use external cache service (you or your admin are lazy, when using Heroku or other cloud services, etc).
35
35
 
36
36
  ## Limitations
37
37
 
38
38
  * Keep in mind that values are stored in memory even if they are expired. As for replaced values, let's just belive in Ruby GC abilities. So, Ruby workers can bloat.
39
- * Keep in mind that Cache IS NOT shared between workers (e.g. Unicorn, Puma cluster workers) and IS shared between threads (Puma).
39
+ * Keep in mind that Cache IS NOT shared between workers (e.g. Unicorn, Puma cluster workers) and IS shared between threads (Puma).
@@ -1,15 +1,15 @@
1
1
  # coding: utf-8
2
2
  lib = File.expand_path('../lib', __FILE__)
3
3
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'blunt_cache/version'
4
+ require 'blunt-cache/version'
5
5
 
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = "blunt-cache"
8
8
  spec.version = BluntCache::VERSION
9
9
  spec.authors = ["Roman Exempliarov"]
10
10
  spec.email = ["urvala@gmail.com"]
11
- spec.summary = %q{Simple in-memory cache service for ruby.}
12
- spec.description = %q{Simple in-memory cache service for ruby.}
11
+ spec.summary = %q{Simple in-memory cache service for Ruby.}
12
+ spec.description = %q{Simple in-memory cache service for Ruby.}
13
13
  spec.homepage = "https://github.com/appelsin/blunt_cache"
14
14
  spec.license = "MIT"
15
15
 
@@ -0,0 +1,3 @@
1
+ class BluntCache
2
+ VERSION = "0.1.1"
3
+ end
File without changes
data/spec/spec_helper.rb CHANGED
@@ -1 +1 @@
1
- require 'blunt_cache'
1
+ require 'blunt-cache'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: blunt-cache
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Roman Exempliarov
@@ -52,7 +52,7 @@ dependencies:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
54
  version: '3.1'
55
- description: Simple in-memory cache service for ruby.
55
+ description: Simple in-memory cache service for Ruby.
56
56
  email:
57
57
  - urvala@gmail.com
58
58
  executables: []
@@ -64,9 +64,9 @@ files:
64
64
  - Gemfile.lock
65
65
  - LICENSE
66
66
  - README.md
67
- - blunt_cache.gemspec
68
- - lib/blunt_cache.rb
69
- - lib/blunt_cache/version.rb
67
+ - blunt-cache.gemspec
68
+ - lib/blunt-cache.rb
69
+ - lib/blunt-cache/version.rb
70
70
  - spec/blunt_cache_spec.rb
71
71
  - spec/spec_helper.rb
72
72
  homepage: https://github.com/appelsin/blunt_cache
@@ -92,7 +92,7 @@ rubyforge_project:
92
92
  rubygems_version: 2.4.7
93
93
  signing_key:
94
94
  specification_version: 4
95
- summary: Simple in-memory cache service for ruby.
95
+ summary: Simple in-memory cache service for Ruby.
96
96
  test_files:
97
97
  - spec/blunt_cache_spec.rb
98
98
  - spec/spec_helper.rb
@@ -1,3 +0,0 @@
1
- class BluntCache
2
- VERSION = "0.1.0"
3
- end