minimodel 2.0.1 → 2.0.2

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 (6) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGES.md +4 -0
  3. data/LICENSE.txt +1 -1
  4. data/README.md +1 -4
  5. data/minimodel.gemspec +5 -11
  6. metadata +8 -15
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e3103b9d7124f91936f1ad70da337f999f230a4463a6a7933f7566d5997837ad
4
- data.tar.gz: d4f57fd1224b32b6ab488b8365457cef1263e119252f38287eb02760c194ba28
3
+ metadata.gz: f525174a4efc0a89d2112ee2115c21f264bd4e970ba8e0470fd6626163820362
4
+ data.tar.gz: 1cb004c63d3cdee0f7a092e207fd45b5b0f957a6ca1b365c591688994fe9e099
5
5
  SHA512:
6
- metadata.gz: 13d65ca6e41549bb006fd737b3592c0095f03fbea9badf9f2512611cdaf3860e06579e77d51107da7adc71506ddd81fbbe95ff1e892749ba98f50b3ebad1494d
7
- data.tar.gz: ef6cbce222f3fa1ebf1e9088e32a824a92ab4250cf6e73bacd880a56910d6d43706f94cb1b99899eac58e507527c1f098bf3ef450de18acd5962a31e14641bf9
6
+ metadata.gz: 1d8662f466252efa12378bd16a5a45ff25c8976568541302414b34cda50724ceb9957d39fb16bf7a02848afd4cb7065b29158f2ea2d4db98943b35d51188dd60
7
+ data.tar.gz: '08ae08463bf5fc4b7562a8f6e2a61b98e5e4a2a46981cf1da91be221d39a7134a4d883b4eb250eae3b7f4c653cac263fc214dbdb7b7b37a07a53760fb8248560'
data/CHANGES.md CHANGED
@@ -1,3 +1,7 @@
1
+ # 2.0.2
2
+
3
+ * Updated gemspec metadata
4
+
1
5
  # 2.0.1
2
6
 
3
7
  * Added CHANGES.md to gem files
data/LICENSE.txt CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2011-2020 TIMCRAFT
1
+ Copyright (c) 2011-2026 TIMCRAFT
2
2
 
3
3
  This is an Open Source project licensed under the terms of the LGPLv3 license.
4
4
  Please see <http://www.gnu.org/licenses/lgpl-3.0.html> for license text.
data/README.md CHANGED
@@ -1,9 +1,6 @@
1
1
  # minimodel
2
2
 
3
- [![Gem Version](https://badge.fury.io/rb/minimodel.svg)](https://badge.fury.io/rb/minimodel) [![Build Status](https://api.travis-ci.org/timcraft/minimodel.svg?branch=master)](https://travis-ci.org/timcraft/minimodel)
4
-
5
-
6
- A little Ruby library for defining little models.
3
+ Ruby gem for defining read-only models.
7
4
 
8
5
 
9
6
  ## Installation
data/minimodel.gemspec CHANGED
@@ -1,20 +1,14 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'minimodel'
3
- s.version = '2.0.1'
3
+ s.version = '2.0.2'
4
4
  s.license = 'LGPL-3.0'
5
5
  s.platform = Gem::Platform::RUBY
6
6
  s.authors = ['Tim Craft']
7
- s.email = ['mail@timcraft.com']
8
- s.homepage = 'https://github.com/timcraft/minimodel'
9
- s.description = 'A little Ruby library for defining little models'
10
- s.summary = 'See description'
7
+ s.email = ['email@timcraft.com']
8
+ s.homepage = 'https://rubygems.org/gems/minimodel'
9
+ s.description = 'Ruby gem for defining read-only models'
10
+ s.summary = 'Ruby gem for defining read-only models'
11
11
  s.files = Dir.glob('lib/**/*.rb') + %w[CHANGES.md LICENSE.txt README.md minimodel.gemspec]
12
12
  s.required_ruby_version = '>= 1.9.3'
13
13
  s.require_path = 'lib'
14
- s.metadata = {
15
- 'homepage' => 'https://github.com/timcraft/minimodel',
16
- 'source_code_uri' => 'https://github.com/timcraft/minimodel',
17
- 'bug_tracker_uri' => 'https://github.com/timcraft/minimodel/issues',
18
- 'changelog_uri' => 'https://github.com/timcraft/minimodel/blob/main/CHANGES.md'
19
- }
20
14
  end
metadata CHANGED
@@ -1,18 +1,17 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: minimodel
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.1
4
+ version: 2.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tim Craft
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2020-11-03 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies: []
13
- description: A little Ruby library for defining little models
12
+ description: Ruby gem for defining read-only models
14
13
  email:
15
- - mail@timcraft.com
14
+ - email@timcraft.com
16
15
  executables: []
17
16
  extensions: []
18
17
  extra_rdoc_files: []
@@ -23,15 +22,10 @@ files:
23
22
  - lib/minimodel.rb
24
23
  - lib/minimodel/associations.rb
25
24
  - minimodel.gemspec
26
- homepage: https://github.com/timcraft/minimodel
25
+ homepage: https://rubygems.org/gems/minimodel
27
26
  licenses:
28
27
  - LGPL-3.0
29
- metadata:
30
- homepage: https://github.com/timcraft/minimodel
31
- source_code_uri: https://github.com/timcraft/minimodel
32
- bug_tracker_uri: https://github.com/timcraft/minimodel/issues
33
- changelog_uri: https://github.com/timcraft/minimodel/blob/main/CHANGES.md
34
- post_install_message:
28
+ metadata: {}
35
29
  rdoc_options: []
36
30
  require_paths:
37
31
  - lib
@@ -46,8 +40,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
46
40
  - !ruby/object:Gem::Version
47
41
  version: '0'
48
42
  requirements: []
49
- rubygems_version: 3.1.4
50
- signing_key:
43
+ rubygems_version: 4.0.6
51
44
  specification_version: 4
52
- summary: See description
45
+ summary: Ruby gem for defining read-only models
53
46
  test_files: []