ruby_multiton 0.1.0 → 0.1.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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +5 -5
  3. data/lib/multiton/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b09a888c86f4a490b21626aaaa65fbdf56c02601
4
- data.tar.gz: 2032127455f95cd0bea8241904ab7e15f6cb0540
3
+ metadata.gz: 9a812ca7a43770abfdfc13392af7f488579453d7
4
+ data.tar.gz: a291f4b5a980d76c27547c710ea968a83d18b9aa
5
5
  SHA512:
6
- metadata.gz: 873d5db93295bce4710d317cf9ec9fe52631cdb7c320758d71cf69933e9426c829a6e6c91f0fd8a9bed83081c941e6464569d88447d83f2de66d39bbacdad164
7
- data.tar.gz: a64f1a3a9e871e35337afd85aeb6b5365960edc6cd7b56d3ca78c74f13a9a7539688e7ed63d6e1a72acb23f7da59f14d6ca7e6d70b9e7925487e6b18e0913eef
6
+ metadata.gz: d14e17cc08d3a1b08276fb55cce8ebcdd480b563177b6a16151d23d7b84884cf5243960bbdee42c6080676cdc4100a0e5f0dba8d62f825ed0ec475d444c1dfd8
7
+ data.tar.gz: 551a524e3d4d02d87bd1565bf87da57ed42eb5be54e5c404ae28e8cd4fd5459ec9211ab49c5d2fc93bf6aeffa534de40884d781d0c48fc82847fe765e144fd47
data/README.md CHANGED
@@ -8,11 +8,11 @@
8
8
 
9
9
  Multiton is an implementation of the [multiton pattern][multiton] in pure Ruby. Some its features include:
10
10
 
11
- - Can be used to implement the [singleton pattern][singleton] in a very straightforwad way
12
- - Transparent interface that makes designing multiton classes as easy as designing regular ones
13
- - Support for [serializing][marshal_dump] and [deserializing][marshal_load] multiton instances
14
- - Clonning, duplicating and inheriting from a multiton class will create a *new* multiton class
15
- - Thread safety, implemented via [shared/exclusive locks][sync]
11
+ - Can be used to implement the [singleton pattern][singleton] in a very straightforwad way.
12
+ - Transparent interface that makes designing multiton classes as easy as designing regular ones.
13
+ - Support for [serializing][marshal_dump] and [deserializing][marshal_load] multiton instances.
14
+ - Clonning, duplicating and inheriting from a multiton class will create a *new* multiton class.
15
+ - Thread safety, implemented via [shared/exclusive locks][sync].
16
16
  - [Compatible with MRI, JRuby and other Ruby implementations][travis].
17
17
 
18
18
  ## Installation
@@ -1,5 +1,5 @@
1
1
  module Multiton
2
2
  ##
3
3
  # Current version of Multiton.
4
- VERSION = "0.1.0".freeze
4
+ VERSION = "0.1.1".freeze
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby_multiton
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gabriel de Oliveira