contracted_value 0.1.0.alpha.1 → 0.1.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1475b67e1a9de52ca20803fc2b32de21ce69a061b772c0d089bfc3e11dceea1f
4
- data.tar.gz: 8b80844c114b4224ac252cbcb5694d418a31b586ee69a12c22ef194cba05dc6e
3
+ metadata.gz: fec55efa08a60e3b4f73c1b8813af1a6a188493c6a870a08083d008dbff19a18
4
+ data.tar.gz: 70a611199db2edce337a2571b3a5ef22be515081c671ef64aff389658e6d3c39
5
5
  SHA512:
6
- metadata.gz: 5956bdb3fc30b074a6443bd014ab8be70e431676d5c4c3b552568539e364c8b2f2f53679991bd840035c8011364204de205cb22283ff5a8eac84988da81bbc3d
7
- data.tar.gz: a1ee38d4e9a23d95397133e6e6b1fe28884c122cf453a508ead4b1ffb49f2ee949e52d53a545a2410d14c3a1485a2d591df6352d13e0f40fe8ab4da1f35e9fdb
6
+ metadata.gz: b709ba4fd278372200a7b97379ba6fb69eb73099e9c13c0006537c6de921aa5228242b5d742f6c46c4969da89789b2edd40672a184fe5074d62101db5e3e09ac
7
+ data.tar.gz: efdd16b4cc5343a984105a3ac19e98caab7f88b5e399793cd99f94753f57711f4cf821d3ff9daeee864158248e3a47b7beeec3da058cfc3c3839d9973fc888ae
@@ -0,0 +1,27 @@
1
+ # Change Log
2
+ All notable changes to this project will be documented in this file.
3
+ This project adheres to [Semantic Versioning](http://semver.org/).
4
+
5
+
6
+ ## [Unreleased]
7
+
8
+ ### Added
9
+
10
+ - Nothing
11
+
12
+ ### Changed
13
+
14
+ - Nothing
15
+
16
+ ### Fixed
17
+
18
+ - Nothing
19
+
20
+
21
+ ## 0.1.0 - 2019-06-05
22
+
23
+ ### Added
24
+
25
+ - Initial release
26
+
27
+ [Unreleased]: https://github.com/PikachuEXE/contracted_value/compare/v0.1.0...HEAD
data/README.md CHANGED
@@ -2,11 +2,13 @@
2
2
 
3
3
  Library for creating contracted immutable(by default) value objects
4
4
 
5
+ [![Gem Version](http://img.shields.io/gem/v/contracted_value.svg?style=flat-square)](http://badge.fury.io/rb/contracted_value)
6
+ [![License](https://img.shields.io/github/license/PikachuEXE/contracted_value.svg?style=flat-square)](http://badge.fury.io/rb/contracted_value)
7
+
5
8
  [![Build Status](http://img.shields.io/travis/PikachuEXE/contracted_value.svg?style=flat-square)](https://travis-ci.org/PikachuEXE/contracted_value)
6
9
 
7
10
  [![Code Climate](https://img.shields.io/codeclimate/maintainability/PikachuEXE/contracted_value.svg?style=flat-square)](https://codeclimate.com/github/PikachuEXE/contracted_value)
8
11
  [![Coverage Status](https://img.shields.io/codecov/c/github/PikachuEXE/contracted_value.svg?style=flat-square)](https://codecov.io/gh/PikachuEXE/contracted_value)
9
- [![Inch CI](https://inch-ci.org/github/PikachuEXE/contracted_value.svg?branch=master)](https://inch-ci.org/github/PikachuEXE/contracted_value)
10
12
 
11
13
 
12
14
  This gem allows creation of value objects which are
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ContractedValue
4
- VERSION = "0.1.0.alpha.1"
4
+ VERSION = "0.1.0"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: contracted_value
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0.alpha.1
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - PikachuEXE
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-06-04 00:00:00.000000000 Z
11
+ date: 2019-06-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: contracts
@@ -212,6 +212,7 @@ files:
212
212
  - ".rubocop.yml"
213
213
  - ".travis.yml"
214
214
  - Appraisals
215
+ - CHANGELOG.md
215
216
  - Gemfile
216
217
  - LICENSE
217
218
  - README.md