ruboty-redis 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 51e1fea6967cb7f434750ed6effa3499ee9dd808
4
+ data.tar.gz: 23d41bb2363317716008721d8a1f0417f2879483
5
+ SHA512:
6
+ metadata.gz: 3e033d88bb51c0f416db1bf68a3c0ade539c1cd003dd8dd8a2023604bc646d3563c509a79a8ab5d2800a78b32a12fd18e8948a82d14c7dd282f1aea79eff0036
7
+ data.tar.gz: 39d10312618201ede035010007ffe72ffedcea209e1f2cb6d6d0333be3b59ab5cbb461b80567a372c87accb6334fcee689fcebbcbd5439ff1ab84a04004f4505
data/.gitignore ADDED
@@ -0,0 +1,22 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
18
+ *.bundle
19
+ *.so
20
+ *.o
21
+ *.a
22
+ mkmf.log
data/CHANGELOG.md ADDED
@@ -0,0 +1,11 @@
1
+ ## 0.0.4
2
+ * Rename: Ellen -> Ruboty
3
+
4
+ ## 0.0.3
5
+ * Change stored memory format from JSON to Marshal
6
+
7
+ ## 0.0.2
8
+ * Fix data import :bug:
9
+
10
+ ## 0.0.1
11
+ * 1st Release
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in ruboty-redis.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Ryo Nakamura
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,17 @@
1
+ # Ruboty::Redis
2
+ Store [Ruboty](https://github.com/r7kamura/ruboty/)'s memory in Redis.
3
+
4
+ ## Usage
5
+ ```ruby
6
+ # Gemfile
7
+ gem "ruboty-redis"
8
+ ```
9
+
10
+ ## ENV
11
+ ```
12
+ REDIS_URL - Redis URL (e.g. redis://foo:bar@example.com:6379/)
13
+ REDIS_SAVE_INTERVAL - Interval sec to push data to Redis (default: 5)
14
+ ```
15
+
16
+ ## Screenshot
17
+ ![](https://raw.githubusercontent.com/r7kamura/ruboty-redis/master/images/screenshot.png)
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+
Binary file
@@ -0,0 +1,67 @@
1
+ require "redis"
2
+ require "redis/namespace"
3
+
4
+ module Ruboty
5
+ module Brains
6
+ class Redis < Base
7
+ NAMESPACE = "ruboty"
8
+
9
+ KEY = "brain"
10
+
11
+ attr_reader :thread
12
+
13
+ env :REDIS_URL, "Redis URL (e.g. redis://foo:bar@example.com:6379/)"
14
+ env :REDIS_SAVE_INTERVAL, "Interval sec to push data to Redis (default: 5)", optional: true
15
+
16
+ def initialize
17
+ super
18
+ @thread = Thread.new { sync }
19
+ @thread.abort_on_exception = true
20
+ end
21
+
22
+ def data
23
+ @data ||= pull || {}
24
+ end
25
+
26
+ private
27
+
28
+ def push
29
+ client.set(KEY, Marshal.dump(data))
30
+ end
31
+
32
+ def pull
33
+ if str = client.get(KEY)
34
+ Marshal.load(str)
35
+ end
36
+ rescue TypeError
37
+ end
38
+
39
+ def sync
40
+ loop do
41
+ wait
42
+ push
43
+ end
44
+ end
45
+
46
+ def wait
47
+ sleep(interval)
48
+ end
49
+
50
+ def client
51
+ @client ||= ::Redis::Namespace.new(NAMESPACE, redis: redis)
52
+ end
53
+
54
+ def redis
55
+ ::Redis.new(url: url)
56
+ end
57
+
58
+ def url
59
+ ENV["REDIS_URL"]
60
+ end
61
+
62
+ def interval
63
+ (ENV["REDIS_SAVE_INTERVAL"] || 5).to_i
64
+ end
65
+ end
66
+ end
67
+ end
@@ -0,0 +1,5 @@
1
+ module Ruboty
2
+ module Redis
3
+ VERSION = "0.0.4"
4
+ end
5
+ end
@@ -0,0 +1,2 @@
1
+ require "ruboty/brains/redis"
2
+ require "ruboty/redis/version"
@@ -0,0 +1,24 @@
1
+ lib = File.expand_path("../lib", __FILE__)
2
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
+ require "ruboty/redis/version"
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "ruboty-redis"
7
+ spec.version = Ruboty::Redis::VERSION
8
+ spec.authors = ["Ryo Nakamura"]
9
+ spec.email = ["r7kamura@gmail.com"]
10
+ spec.summary = "Store Ruboty's memory in Redis."
11
+ spec.homepage = "https://github.com/r7kamura/ruboty-redis"
12
+ spec.license = "MIT"
13
+
14
+ spec.files = `git ls-files -z`.split("\x0")
15
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
16
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
17
+ spec.require_paths = ["lib"]
18
+
19
+ spec.add_dependency "ruboty"
20
+ spec.add_dependency "redis"
21
+ spec.add_dependency "redis-namespace"
22
+ spec.add_development_dependency "bundler", "~> 1.6"
23
+ spec.add_development_dependency "rake"
24
+ end
metadata ADDED
@@ -0,0 +1,126 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ruboty-redis
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.4
5
+ platform: ruby
6
+ authors:
7
+ - Ryo Nakamura
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-05-31 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: ruboty
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: redis
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: redis-namespace
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: bundler
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '1.6'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '1.6'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rake
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ description:
84
+ email:
85
+ - r7kamura@gmail.com
86
+ executables: []
87
+ extensions: []
88
+ extra_rdoc_files: []
89
+ files:
90
+ - ".gitignore"
91
+ - CHANGELOG.md
92
+ - Gemfile
93
+ - LICENSE.txt
94
+ - README.md
95
+ - Rakefile
96
+ - images/screenshot.png
97
+ - lib/ruboty/brains/redis.rb
98
+ - lib/ruboty/redis.rb
99
+ - lib/ruboty/redis/version.rb
100
+ - ruboty-redis.gemspec
101
+ homepage: https://github.com/r7kamura/ruboty-redis
102
+ licenses:
103
+ - MIT
104
+ metadata: {}
105
+ post_install_message:
106
+ rdoc_options: []
107
+ require_paths:
108
+ - lib
109
+ required_ruby_version: !ruby/object:Gem::Requirement
110
+ requirements:
111
+ - - ">="
112
+ - !ruby/object:Gem::Version
113
+ version: '0'
114
+ required_rubygems_version: !ruby/object:Gem::Requirement
115
+ requirements:
116
+ - - ">="
117
+ - !ruby/object:Gem::Version
118
+ version: '0'
119
+ requirements: []
120
+ rubyforge_project:
121
+ rubygems_version: 2.2.2
122
+ signing_key:
123
+ specification_version: 4
124
+ summary: Store Ruboty's memory in Redis.
125
+ test_files: []
126
+ has_rdoc: