memory_record 0.0.5 → 0.0.6
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.org +2 -2
- data/lib/memory_record/version.rb +1 -1
- data/memory_record.gemspec +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 28d393f4158db4b87f4ff47fff3e41f74fee5fe1
|
|
4
|
+
data.tar.gz: faae8c034176557fa2801db2ffdefa3901e3be7c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 91b6037af4116785da396b0c3fcf3745e53e4216a405a939ceb1c62d6b226c16ae9f21ea22b7da142e91c5c142ad1a22dc7a49013b3a2bf04f895befe713aaa2
|
|
7
|
+
data.tar.gz: bcb80fe6c691cb7924c45b4cd28b6ab3b0e6ec60e4d104d191332c479872c5f8f3c4fa8cf703d63a7c0e9e0456f36660b45c610f5931eb5a45fb1122dc4f6b31
|
data/README.org
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
* MemoryRecord
|
|
2
2
|
|
|
3
|
-
A small number of records
|
|
3
|
+
A small number of records easy handling library
|
|
4
4
|
|
|
5
5
|
** Installation
|
|
6
6
|
|
|
@@ -165,7 +165,7 @@ Foo.first.y rescue $! # => 1
|
|
|
165
165
|
Foo.first.z rescue $! # => #<NoMethodError: undefined method `z' for #<Foo:0x007fcc861ff108>>
|
|
166
166
|
#+END_SRC
|
|
167
167
|
|
|
168
|
-
**** attr_reader: {except: :
|
|
168
|
+
**** attr_reader: {except: :y}
|
|
169
169
|
|
|
170
170
|
#+BEGIN_SRC ruby
|
|
171
171
|
class Foo
|
data/memory_record.gemspec
CHANGED
|
@@ -7,8 +7,8 @@ Gem::Specification.new do |spec|
|
|
|
7
7
|
spec.version = MemoryRecord::VERSION
|
|
8
8
|
spec.authors = ['akicho8']
|
|
9
9
|
spec.email = ['akicho8@gmail.com']
|
|
10
|
-
spec.description = %q{A small number of records
|
|
11
|
-
spec.summary = %q{A small number of records
|
|
10
|
+
spec.description = %q{A small number of records easy handling library}
|
|
11
|
+
spec.summary = %q{A small number of records easy handling library}
|
|
12
12
|
spec.homepage = ''
|
|
13
13
|
spec.license = 'MIT'
|
|
14
14
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: memory_record
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- akicho8
|
|
@@ -80,7 +80,7 @@ dependencies:
|
|
|
80
80
|
- - ">="
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
82
|
version: '0'
|
|
83
|
-
description: A small number of records
|
|
83
|
+
description: A small number of records easy handling library
|
|
84
84
|
email:
|
|
85
85
|
- akicho8@gmail.com
|
|
86
86
|
executables: []
|
|
@@ -138,7 +138,7 @@ rubyforge_project:
|
|
|
138
138
|
rubygems_version: 2.6.11
|
|
139
139
|
signing_key:
|
|
140
140
|
specification_version: 4
|
|
141
|
-
summary: A small number of records
|
|
141
|
+
summary: A small number of records easy handling library
|
|
142
142
|
test_files:
|
|
143
143
|
- spec/memory_record_spec.rb
|
|
144
144
|
- spec/spec_helper.rb
|