persist 0.1.2 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: cfd5a6e8d039461b96ccc4dcb50ffdceb19e3a26
4
- data.tar.gz: 80c53c2651cd2d090102cd822161930c6d73f777
3
+ metadata.gz: 6686f9e03bc568726a4b310ebb2cb12c693880c5
4
+ data.tar.gz: 291a2145c4a8f9f55e2899c47685bda5192c75e5
5
5
  SHA512:
6
- metadata.gz: 3a75c9089a8ae144036e3ed0bfc396744f76a910959cf66035bcae76762c01186eb6cc3266a3ddf013038805beeefe541011d2efcc18f4ec78444d57dced0b5e
7
- data.tar.gz: d29dfbdb9730f17297867438e979fb00374b54fa0412bdc9c01f28d868f06e6811173d272c11e555ae286bbb93f5bc03d12db93f5c400f08b77f4e018e775fd4
6
+ metadata.gz: de36b300b6aefb79592d977c0889ae5710084bc762212794a9d459c1dfb19ea8f4eb1c87c5e2f548aec937df22a963d139f8e917c58ca4bba3057c89e8ee3962
7
+ data.tar.gz: 8c00b35d60532253eba60127a0144de0686f7775a7cd5c116c3dfaa30670e259e451d91288025f4f3d07b0172c8afb7bfbd28331d319ebf77c15a0b675b3b6a7
data/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # Persist
2
2
  [![Build Status](https://travis-ci.org/havenwood/persist.png?branch=master)](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:
@@ -1,3 +1,3 @@
1
1
  module Persist
2
- VERSION = '0.1.2'
2
+ VERSION = '0.1.3'
3
3
  end
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{A wrapper around Ruby's PStore that allows you to persist Ruby objects to a transactional file store.}
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/Havenwood/persist'
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.2
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: A wrapper around Ruby's PStore that allows you to persist Ruby objects
42
- to a transactional file store.
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/Havenwood/persist
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: []