persist 0.0.1
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.
- data/.gitignore +17 -0
- data/.persistent_store +3 -0
- data/Gemfile +2 -0
- data/LICENSE +22 -0
- data/README.md +50 -0
- data/Rakefile +2 -0
- data/lib/persist/version.rb +3 -0
- data/lib/persist.rb +30 -0
- data/persist.gemspec +17 -0
- metadata +56 -0
data/.gitignore
ADDED
data/.persistent_store
ADDED
data/Gemfile
ADDED
data/LICENSE
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Copyright (c) 2012 Shannon
|
|
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,50 @@
|
|
|
1
|
+
# Persist
|
|
2
|
+
|
|
3
|
+
Persist is a simple gem that allows you to painlessly save Ruby objects in a NoSQL persistent store.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
Add this line to your application's Gemfile:
|
|
8
|
+
|
|
9
|
+
gem 'persist'
|
|
10
|
+
|
|
11
|
+
And then execute:
|
|
12
|
+
|
|
13
|
+
$ bundle
|
|
14
|
+
|
|
15
|
+
Or install it yourself as:
|
|
16
|
+
|
|
17
|
+
$ gem install persist
|
|
18
|
+
|
|
19
|
+
## Usage
|
|
20
|
+
|
|
21
|
+
Example in IRB:
|
|
22
|
+
|
|
23
|
+
```ruby
|
|
24
|
+
require 'persist'
|
|
25
|
+
|
|
26
|
+
db = Persist.new
|
|
27
|
+
#=> #<Persist:0x007fa5ca29f258 @stash={}>
|
|
28
|
+
|
|
29
|
+
db.stash[:siblings] = ["Katie", "Molly", "Shannnon"]
|
|
30
|
+
#=> {:siblings=>["Katie", "Molly", "Shannnon"]}
|
|
31
|
+
|
|
32
|
+
db.push # This saves your Stash to the persistent store.
|
|
33
|
+
#=> <File:.persistent_store (closed)>
|
|
34
|
+
|
|
35
|
+
# You can now quit IRB and your stash will persist.
|
|
36
|
+
|
|
37
|
+
db = Persist.new # In a new Irb session.
|
|
38
|
+
#=> #<Persist:0x007fb8c519e7d8 @stash={:siblings=>["Katie", "Molly", "Shannnon"]}
|
|
39
|
+
|
|
40
|
+
db.stash[:siblings]
|
|
41
|
+
#=> ["Katie", "Molly", "Shannnon"]
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
## Contributing
|
|
45
|
+
|
|
46
|
+
1. Fork it
|
|
47
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
|
48
|
+
3. Commit your changes (`git commit -am 'Added some feature'`)
|
|
49
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
|
50
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
data/lib/persist.rb
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
require "persist/version"
|
|
2
|
+
|
|
3
|
+
class Persist
|
|
4
|
+
STORE = '.persistent_store'
|
|
5
|
+
|
|
6
|
+
attr_accessor :stash
|
|
7
|
+
|
|
8
|
+
def initialize
|
|
9
|
+
unless File.exists? STORE
|
|
10
|
+
self.reset!
|
|
11
|
+
end
|
|
12
|
+
self.pull
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
def pull
|
|
16
|
+
@stash = Marshal.load File.read(STORE)
|
|
17
|
+
end
|
|
18
|
+
|
|
19
|
+
def push
|
|
20
|
+
File.open STORE, 'w' do |store|
|
|
21
|
+
store << Marshal.dump(@stash)
|
|
22
|
+
end
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
def reset!
|
|
26
|
+
File.open STORE, 'w' do |store|
|
|
27
|
+
store << Marshal.dump({})
|
|
28
|
+
end
|
|
29
|
+
end
|
|
30
|
+
end
|
data/persist.gemspec
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
|
2
|
+
require File.expand_path('../lib/persist/version', __FILE__)
|
|
3
|
+
|
|
4
|
+
Gem::Specification.new do |gem|
|
|
5
|
+
gem.authors = ["Shannon"]
|
|
6
|
+
gem.email = ["shannonskipper@gmail.com"]
|
|
7
|
+
gem.description = %q{Simple NoSQL Persistent Object Store for Ruby}
|
|
8
|
+
gem.summary = %q{This gem allows you to save Ruby Objects to a persistent store and recover them later.}
|
|
9
|
+
gem.homepage = "https://github.com/Havenwood/persist"
|
|
10
|
+
|
|
11
|
+
gem.files = `git ls-files`.split($\)
|
|
12
|
+
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
|
13
|
+
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
|
14
|
+
gem.name = "persist"
|
|
15
|
+
gem.require_paths = ["lib"]
|
|
16
|
+
gem.version = Persist::VERSION
|
|
17
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: persist
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1
|
|
5
|
+
prerelease:
|
|
6
|
+
platform: ruby
|
|
7
|
+
authors:
|
|
8
|
+
- Shannon
|
|
9
|
+
autorequire:
|
|
10
|
+
bindir: bin
|
|
11
|
+
cert_chain: []
|
|
12
|
+
date: 2012-05-08 00:00:00.000000000 Z
|
|
13
|
+
dependencies: []
|
|
14
|
+
description: Simple NoSQL Persistent Object Store for Ruby
|
|
15
|
+
email:
|
|
16
|
+
- shannonskipper@gmail.com
|
|
17
|
+
executables: []
|
|
18
|
+
extensions: []
|
|
19
|
+
extra_rdoc_files: []
|
|
20
|
+
files:
|
|
21
|
+
- .gitignore
|
|
22
|
+
- .persistent_store
|
|
23
|
+
- Gemfile
|
|
24
|
+
- LICENSE
|
|
25
|
+
- README.md
|
|
26
|
+
- Rakefile
|
|
27
|
+
- lib/persist.rb
|
|
28
|
+
- lib/persist/version.rb
|
|
29
|
+
- persist.gemspec
|
|
30
|
+
homepage: https://github.com/Havenwood/persist
|
|
31
|
+
licenses: []
|
|
32
|
+
post_install_message:
|
|
33
|
+
rdoc_options: []
|
|
34
|
+
require_paths:
|
|
35
|
+
- lib
|
|
36
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
37
|
+
none: false
|
|
38
|
+
requirements:
|
|
39
|
+
- - ! '>='
|
|
40
|
+
- !ruby/object:Gem::Version
|
|
41
|
+
version: '0'
|
|
42
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
43
|
+
none: false
|
|
44
|
+
requirements:
|
|
45
|
+
- - ! '>='
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: '0'
|
|
48
|
+
requirements: []
|
|
49
|
+
rubyforge_project:
|
|
50
|
+
rubygems_version: 1.8.24
|
|
51
|
+
signing_key:
|
|
52
|
+
specification_version: 3
|
|
53
|
+
summary: This gem allows you to save Ruby Objects to a persistent store and recover
|
|
54
|
+
them later.
|
|
55
|
+
test_files: []
|
|
56
|
+
has_rdoc:
|