sir_cachealot 0.6.4 → 0.6.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- OTNmODJhZjRhODc5OGMyOTllMDE0MzQ2NmQ0ZWEzZTgzYmQ2NTMwZA==
4
+ ZmRlNmUxM2YwMmNmZjExZWJlNTIwZDg0N2MyNzBhYmYzMzU2ZTQ3Ng==
5
5
  data.tar.gz: !binary |-
6
- NzY0NjQ1ZTZmMWM5ZDhlYmI2MGMyNjhiNjkyOTZlNTY1NDE1MDY5Mg==
6
+ ZmJiYzhmZTZjMmNmNDRjMmU0MmMzOTk3NzM1MjFlODQxODA0MDMwZQ==
7
7
  !binary "U0hBNTEy":
8
8
  metadata.gz: !binary |-
9
- ODgzYWQ0MDViZDkyN2UwMjYwMTAxZTAzZTc3OGMxODU5YmEwODQ2ZDY2Njhh
10
- YTNjNmU4NDcyZGQzNDIzYmZhODM1MjI4N2Y2YzA3YzA1MTRhNmYyYzA0YmVm
11
- ZGMxYWVlNzRlNDA3MmE1MTM2MDNiYTE1ODZlMTNhOGEwY2IzODk=
9
+ ZWIxOWIwMjI3MWE0YzUyODIxNDI3NTdkMzE2OTJiYmEzOGI2MWRiZWJjZGUx
10
+ MjUzZDhiOWQ2YmJmYmQzN2I1YmE3MzE5NDdkZTQ5Mzk5ZjU5MDRjOWMyNjRh
11
+ OTk5YzI5MGQ4NzlhNGY3YWExZTQ4YzMzNDE1YTkzNDJjODcyYWQ=
12
12
  data.tar.gz: !binary |-
13
- ZmUxNWJiMGRkNGZiNTQwZjBjNjFiOGJiNjllNTQ0NGMxNWFiZDQxZjIwZWNm
14
- ODExYTM2OGIxZDQ2ZDYzM2RkZjVjMTc2YzY1MWVhOTE4NzA5ZmIxYmExN2Ez
15
- NDc4MDNkY2ZiODgwNWM4YmI5YTg2MGFhMDQwNWYxZWI4OGQ2ZDY=
13
+ YmM4NjA2YTRmMzA3MmVjZTM0NDNiNjFiZDA0ZTIzZmM1OGUwZTEyYTk4YjFh
14
+ NjcyMTljNjc2ZGViMTRjNzY4NzQ5NmZkNmRhNzcxNDZlMWI5MmNiZmZhNmM3
15
+ YzNkNmE2OWViYzE0YjE2N2M5NDJiMTYyOTNiNDk1MDFiN2JkNTQ=
data/lib/sir/backends.rb CHANGED
@@ -1,8 +1,7 @@
1
+ $stderr.puts "required #{$0}"
1
2
  module Sir::Backends
2
-
3
-
4
3
  end
5
4
 
6
- required 'sir/backends/Base'
7
- required 'sir/backends/ram_cache'
8
- required 'sir/backends/redis_cache'
5
+ require 'sir/backends/Base'
6
+ require 'sir/backends/ram_cache'
7
+ require 'sir/backends/redis_cache'
data/lib/sir/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Sir
2
- VERSION = "0.6.4"
2
+ VERSION = "0.6.5"
3
3
  end
data/lib/sir.rb CHANGED
@@ -1,11 +1,13 @@
1
- require "rubygems"
1
+ #require "rubygems"
2
+ require "sir/version"
3
+ require "sir/backends"
4
+ # $stderr.puts "====================== Load path is:"
5
+ # $stderr.puts $LOAD_PATH
2
6
 
3
- def required(str)
4
- require File.dirname(__FILE__) + "/" + str
5
- end
7
+ # def required(str)
8
+ # require File.dirname(__FILE__) + "/" + str
9
+ # end
6
10
 
7
- required "sir/version"
8
- required "sir/backends"
9
11
 
10
12
  module Sir
11
13
 
@@ -0,0 +1 @@
1
+ require 'sir'
@@ -1,15 +1,10 @@
1
1
  # -*- encoding: utf-8 -*-
2
-
3
- # set up load paths for other modules
4
- lib = File.expand_path('../lib', __FILE__)
5
- $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
6
-
7
- require File.dirname(__FILE__) + "/lib/sir.rb"
2
+ require 'sir/version'
8
3
 
9
4
  Gem::Specification.new do |gem|
10
5
  gem.name = "sir_cachealot"
11
6
  gem.licenses = ["BSD-2-Clause"]
12
- gem.version = Sir::VERSION
7
+ gem.version = "0.6.5"
13
8
  gem.authors = ["Lyjia / Tom Corelis"]
14
9
  gem.email = ["tom@tomcorelis.com"]
15
10
  gem.description = %q{A dead simple RAM keystore}
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sir_cachealot
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.4
4
+ version: 0.6.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lyjia / Tom Corelis
@@ -70,7 +70,7 @@ files:
70
70
  - lib/sir/backends/ram_cache.rb
71
71
  - lib/sir/backends/redis_cache.rb
72
72
  - lib/sir/version.rb
73
- - lib/sircachealot.rb
73
+ - lib/sir_cachealot.rb
74
74
  - sir_cachealot.gemspec
75
75
  - sircachealot.png
76
76
  - spec/redis_spec.rb
data/lib/sircachealot.rb DELETED
@@ -1 +0,0 @@
1
- require './sir.rb'