volatiledb 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
data/README.md ADDED
@@ -0,0 +1,13 @@
1
+ #### Summary
2
+
3
+ The VolatileDB gem allows you to specify a key and an action yielding a particular piece of data.
4
+
5
+ This data will be stored in the /tmp folder of the file system you are currently running on. Data is accessible
6
+ by key. Data will be read and written to storage using File.read() and File.open() -- that's it. It's up to the
7
+ consuming application to serialize and deserialize data correctly. All VolatileDB does is push and pull data to
8
+ the FS.
9
+
10
+ If the underlying file supporting the data is found to be missing, it will be re-initialized.
11
+
12
+ This gets to the main idea behind VolatileDB: use it to persist data that is transient and can be re-seeded
13
+ periodically as conditions change.
@@ -1,3 +1,3 @@
1
1
  module Volatile
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
data/volatiledb.gemspec CHANGED
@@ -7,7 +7,7 @@ Gem::Specification.new do |s|
7
7
  s.version = Volatile::VERSION
8
8
  s.authors = ["Sebastian Wittenkamp (bitops)"]
9
9
  s.email = ["a.sebastian.w@gmail.com"]
10
- s.homepage = "http://rubygems.org/gems/volatiledb"
10
+ s.homepage = "https://github.com/bitops/volatiledb"
11
11
  s.summary = %q{VolatileDB is a simple stupid storage solution for transient data on transient filesystems.}
12
12
  s.description = <<DESC
13
13
  The VolatileDB gem allows you to specify a key and an action yielding a particular piece of data.
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: volatiledb
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.0.1
5
+ version: 0.0.2
6
6
  platform: ruby
7
7
  authors:
8
8
  - Sebastian Wittenkamp (bitops)
@@ -25,11 +25,12 @@ extra_rdoc_files: []
25
25
  files:
26
26
  - .gitignore
27
27
  - Gemfile
28
+ - README.md
28
29
  - Rakefile
29
30
  - lib/volatiledb.rb
30
31
  - lib/volatiledb/version.rb
31
32
  - volatiledb.gemspec
32
- homepage: http://rubygems.org/gems/volatiledb
33
+ homepage: https://github.com/bitops/volatiledb
33
34
  licenses: []
34
35
 
35
36
  post_install_message: