persist 0.1.2 → 0.1.3
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 +4 -4
- data/README.md +1 -1
- data/lib/persist/version.rb +1 -1
- data/persist.gemspec +4 -4
- metadata +6 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6686f9e03bc568726a4b310ebb2cb12c693880c5
|
4
|
+
data.tar.gz: 291a2145c4a8f9f55e2899c47685bda5192c75e5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: de36b300b6aefb79592d977c0889ae5710084bc762212794a9d459c1dfb19ea8f4eb1c87c5e2f548aec937df22a963d139f8e917c58ca4bba3057c89e8ee3962
|
7
|
+
data.tar.gz: 8c00b35d60532253eba60127a0144de0686f7775a7cd5c116c3dfaa30670e259e451d91288025f4f3d07b0172c8afb7bfbd28331d319ebf77c15a0b675b3b6a7
|
data/README.md
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# Persist
|
2
2
|
[](https://travis-ci.org/havenwood/persist)
|
3
3
|
|
4
|
-
The Persist gem makes it simple to persist Ruby objects to disk. Persist uses Ruby's PStore class to serialize Ruby objects with Marshal and transactionally save them for retrieval later.
|
4
|
+
The Persist gem makes it really, really simple to persist Ruby objects to disk. Persist uses Ruby's PStore class to serialize Ruby objects with Marshal and transactionally save them for retrieval later.
|
5
5
|
|
6
6
|
## Installation
|
7
7
|
Install the gem from the command line:
|
data/lib/persist/version.rb
CHANGED
data/persist.gemspec
CHANGED
@@ -4,17 +4,17 @@ require File.expand_path('../lib/persist/version', __FILE__)
|
|
4
4
|
Gem::Specification.new do |gem|
|
5
5
|
gem.authors = ['Shannon Skipper']
|
6
6
|
gem.email = ['shannonskipper@gmail.com']
|
7
|
-
gem.description = %q{
|
7
|
+
gem.description = %q{The Persist gem makes it really, really simple to persist Ruby objects to disk.}
|
8
8
|
gem.summary = %q{Persist Ruby objects to a transactional file store using Ruby's Pstore.}
|
9
|
-
gem.homepage = 'https://github.com/
|
10
|
-
|
9
|
+
gem.homepage = 'https://github.com/havenwood/persist'
|
10
|
+
gem.license = 'MIT'
|
11
11
|
gem.files = `git ls-files`.split($\)
|
12
12
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
13
13
|
gem.test_files = gem.files.grep(%r{^test/})
|
14
14
|
gem.name = 'persist'
|
15
15
|
gem.require_paths = ['lib']
|
16
16
|
gem.version = Persist::VERSION
|
17
|
-
|
17
|
+
|
18
18
|
gem.add_development_dependency 'minitest'
|
19
19
|
gem.add_development_dependency 'rake'
|
20
20
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: persist
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Shannon Skipper
|
@@ -38,8 +38,8 @@ dependencies:
|
|
38
38
|
- - '>='
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '0'
|
41
|
-
description:
|
42
|
-
to
|
41
|
+
description: The Persist gem makes it really, really simple to persist Ruby objects
|
42
|
+
to disk.
|
43
43
|
email:
|
44
44
|
- shannonskipper@gmail.com
|
45
45
|
executables: []
|
@@ -58,8 +58,9 @@ files:
|
|
58
58
|
- persist.gemspec
|
59
59
|
- test/helper.rb
|
60
60
|
- test/persist_test.rb
|
61
|
-
homepage: https://github.com/
|
62
|
-
licenses:
|
61
|
+
homepage: https://github.com/havenwood/persist
|
62
|
+
licenses:
|
63
|
+
- MIT
|
63
64
|
metadata: {}
|
64
65
|
post_install_message:
|
65
66
|
rdoc_options: []
|