static_data_model 0.2.0 → 0.2.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 091c5eb1199d1e4eefaf9a1235478272a44993ff
4
- data.tar.gz: c3490588c78dc8c53790f33b7b5075c8f53179c8
2
+ SHA256:
3
+ metadata.gz: 106b86674eedce57d809faa6dcb5e08612499a352e73dc2875dcc462e28e06d8
4
+ data.tar.gz: 49e5ec994c63dd28659963cebf38990870a4f6310ae80a5c1b55216f1c83ca41
5
5
  SHA512:
6
- metadata.gz: 323993e3de320d0e2e084124acdeacfe112f2994bfd030adcfd19900e3372fc890647c95670774f7a9c5c662741e7ff50bfaa47f8c0111ff2c135f1188c27449
7
- data.tar.gz: 3d61bd64c737d328cd0b54a37ea0e6f54cc4c9535a049820c047a453dcc627e3d35fd482151da3432c7d46873315f35cc04d57926c62c1b6bc332928d22043d2
6
+ metadata.gz: 5623c786ca9fdf05e5940456cb04c77104685337b79ab0c59005b7121f775cb3ee5f85fbbdf67430de2b28fadfab88238809dc039b3cc39379271893ca6e7501
7
+ data.tar.gz: 5f47de39a898c07707eb69a5b8a7cc09f80abdc32de3c98f21716ad5b9b38b51e3ec142da451255f340ea39c38f05d00b7ac189b5206d8ea54dbf7c3aab9cc55
@@ -3,6 +3,8 @@ language: ruby
3
3
  rvm:
4
4
  - 2.3.4
5
5
  cache: bundler
6
+ before_install:
7
+ - gem install bundler -v '1.17.3'
6
8
  before_script:
7
9
  - curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64
8
10
  > ./cc-test-reporter
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- static_data_model (0.2.0)
4
+ static_data_model (0.2.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -66,4 +66,4 @@ DEPENDENCIES
66
66
  static_data_model!
67
67
 
68
68
  BUNDLED WITH
69
- 1.16.1
69
+ 1.17.3
@@ -62,7 +62,7 @@ module StaticDataModel
62
62
  def find(id)
63
63
  all.find { |instance| instance.id == id } ||
64
64
  raise(error_namespace::RecordNotFound,
65
- "Couldn't find #{self} with ID #{id}")
65
+ "Couldn't find #{self} with 'id'=#{id}")
66
66
  end
67
67
 
68
68
  attr_reader :attribute_names
@@ -1,3 +1,3 @@
1
1
  module StaticDataModel
2
- VERSION = '0.2.0'.freeze
2
+ VERSION = '0.2.1'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: static_data_model
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sage GmbH
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-03-28 00:00:00.000000000 Z
11
+ date: 2020-03-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord
@@ -135,7 +135,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
135
135
  version: '0'
136
136
  requirements: []
137
137
  rubyforge_project:
138
- rubygems_version: 2.6.12
138
+ rubygems_version: 2.7.7
139
139
  signing_key:
140
140
  specification_version: 4
141
141
  summary: Some modules to give you tableless model behaviour in a class