koine-repository 1.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +16 -0
- data/README.md +5 -0
- data/lib/koine/repository/repository/id_aware_entity.rb +4 -0
- data/lib/koine/repository/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 191dadee48fdb91bd9bbf1c18d740928894091e9
|
|
4
|
+
data.tar.gz: 8e69a9cbf815dd4b625fa9a08c7b7f63dddd2925
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6db2c571eb18e344cf4fd19c88aa60039715bc54cb2cbae40ce8bd1f0a7f5020919d32f67b5a46743e99c47ce5a2f522dc8d4777a496fa43ae7c8538370e3c0a
|
|
7
|
+
data.tar.gz: 1ffb864769245e9dd9c97eedd4bab3a0ffc5433cd048c75e4bda142b6efb92860051056dbdb520ae2db62a17d23a709ef8b8d329535ed12520edf6b4abfc4b2d
|
data/CHANGELOG.md
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
Changelog
|
|
2
|
+
---------------
|
|
3
|
+
|
|
4
|
+
# 1.1
|
|
5
|
+
|
|
6
|
+
- Added method "#remove(entity)" to Koine::Repository::Repository::IdAwareEntity
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
# 1.0
|
|
10
|
+
|
|
11
|
+
- Moved Koine::Repository::IdAwareEntity to Koine::Repository::Repository::IdAwareEntity
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# 0.9.0
|
|
15
|
+
|
|
16
|
+
- Basic implementation
|
data/README.md
CHANGED
|
@@ -9,6 +9,11 @@ If you want to use repository pattern as your way into the database
|
|
|
9
9
|
[](https://gemnasium.com/mjacobus/koine-repository)
|
|
10
10
|
[](https://badge.fury.io/rb/koine-repository)
|
|
11
11
|
|
|
12
|
+
# Changelog
|
|
13
|
+
|
|
14
|
+
- [Here](CHANGELOG.md) you can find the changelog.
|
|
15
|
+
|
|
16
|
+
|
|
12
17
|
## Installation
|
|
13
18
|
|
|
14
19
|
Add this line to your application's Gemfile:
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: koine-repository
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: '1.
|
|
4
|
+
version: '1.1'
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Marcelo Jacobus
|
|
@@ -175,6 +175,7 @@ files:
|
|
|
175
175
|
- ".gitignore"
|
|
176
176
|
- ".scrutinizer.yml"
|
|
177
177
|
- ".travis.yml"
|
|
178
|
+
- CHANGELOG.md
|
|
178
179
|
- CODE_OF_CONDUCT.md
|
|
179
180
|
- Gemfile
|
|
180
181
|
- LICENSE.txt
|