mapping 1.1.1 → 1.1.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 59735e244a0c5d93fb1e7320214ce946dabe1bfb
4
- data.tar.gz: 32509112e94138f9ddd1547b3287edbbfe59118e
2
+ SHA256:
3
+ metadata.gz: '05882acbdcabe2b584a88dfd2fb3aea33722d65fc40d57d9b91786bfc902bd04'
4
+ data.tar.gz: 9b41b4868e2735ca3f493e6da1b175fcbb07efc7d5e1c6db838bade0496457cf
5
5
  SHA512:
6
- metadata.gz: 4c54865bc785b51cd14562fd07e45109a2de8cc97cd83bb90e524661e0f6b71ff0b4a65c5f6dcb8f955a21d4a17a27a72ff35a39348cd5aaeacbf2c941090de9
7
- data.tar.gz: 0ee83ca22f5dbb582e6f9fd25e3f8daf79025b04480b86cd5a26e701abf9b6c450954a376a54adbd62b9a9b179a05df705fc2ca9ce4599b8093b5eb2a075ac4d
6
+ metadata.gz: 4d2b42bbdd56e611df9469b69395a95bdb6e6b50b80417555b0df29ca9a6267674cbb3fe875234422c1d84acbf2f7190988fbf41e2dffa8c839c3ffc0ecc97f9
7
+ data.tar.gz: 2f9541df2f2a51906deadd50fc85dcce264bff33f1bc4b5023056793107ea24c6c95c4b98575f569476b855ff655c869458d2c3b719ebe8b9a949ab09709c4b0
checksums.yaml.gz.sig ADDED
Binary file
@@ -1,25 +1,10 @@
1
- # Copyright, 2017, by Samuel G. D. Williams. <http://www.codeotaku.com>
2
- #
3
- # Permission is hereby granted, free of charge, to any person obtaining a copy
4
- # of this software and associated documentation files (the "Software"), to deal
5
- # in the Software without restriction, including without limitation the rights
6
- # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
- # copies of the Software, and to permit persons to whom the Software is
8
- # furnished to do so, subject to the following conditions:
9
- #
10
- # The above copyright notice and this permission notice shall be included in
11
- # all copies or substantial portions of the Software.
12
- #
13
- # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
- # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
- # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
- # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
- # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
- # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19
- # THE SOFTWARE.
1
+ # frozen_string_literal: true
2
+
3
+ # Released under the MIT License.
4
+ # Copyright, 2017-2025, by Samuel Williams.
20
5
 
21
6
  module Mapping
22
7
  def self.lookup_descendants(klass)
23
8
  ObjectSpace.each_object(Class).select{|other| other < klass}
24
9
  end
25
- end
10
+ end
data/lib/mapping/model.rb CHANGED
@@ -1,30 +1,15 @@
1
- # Copyright, 2016, by Samuel G. D. Williams. <http://www.codeotaku.com>
2
- #
3
- # Permission is hereby granted, free of charge, to any person obtaining a copy
4
- # of this software and associated documentation files (the "Software"), to deal
5
- # in the Software without restriction, including without limitation the rights
6
- # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
- # copies of the Software, and to permit persons to whom the Software is
8
- # furnished to do so, subject to the following conditions:
9
- #
10
- # The above copyright notice and this permission notice shall be included in
11
- # all copies or substantial portions of the Software.
12
- #
13
- # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
- # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
- # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
- # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
- # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
- # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19
- # THE SOFTWARE.
1
+ # frozen_string_literal: true
2
+
3
+ # Released under the MIT License.
4
+ # Copyright, 2016-2025, by Samuel Williams.
20
5
 
21
6
  module Mapping
22
7
  class Model
23
- PREFIX = 'map_'.freeze
8
+ PREFIX = "map_".freeze
24
9
 
25
10
  # This function generates mapping names like `map_Array` and `map_Hash` which while a bit non-standard are perfectly fine for our purposes and this never really needs to leak.
26
11
  def self.method_for_mapping(klass)
27
- PREFIX + klass.name.gsub(/::/, '_')
12
+ PREFIX + klass.name.gsub(/::/, "_")
28
13
  end
29
14
 
30
15
  # Get the name of the method for mapping the given object.
@@ -54,10 +39,10 @@ module Mapping
54
39
  end
55
40
 
56
41
  # The primary function, which maps an input object to an output object.
57
- def map(root, *args)
42
+ def map(root, *arguments, **options)
58
43
  method_name = self.method_for_mapping(root)
59
44
 
60
- self.send(method_name, root, *args)
45
+ self.send(method_name, root, *arguments, **options)
61
46
  end
62
47
  end
63
48
  end
@@ -1,25 +1,10 @@
1
- # Copyright, 2016, by Samuel G. D. Williams. <http://www.codeotaku.com>
2
- #
3
- # Permission is hereby granted, free of charge, to any person obtaining a copy
4
- # of this software and associated documentation files (the "Software"), to deal
5
- # in the Software without restriction, including without limitation the rights
6
- # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
- # copies of the Software, and to permit persons to whom the Software is
8
- # furnished to do so, subject to the following conditions:
9
- #
10
- # The above copyright notice and this permission notice shall be included in
11
- # all copies or substantial portions of the Software.
12
- #
13
- # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
- # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
- # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
- # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
- # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
- # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19
- # THE SOFTWARE.
1
+ # frozen_string_literal: true
20
2
 
21
- require_relative 'model'
22
- require_relative 'descendants'
3
+ # Released under the MIT License.
4
+ # Copyright, 2016-2025, by Samuel Williams.
5
+
6
+ require_relative "model"
7
+ require_relative "descendants"
23
8
 
24
9
  module Mapping
25
10
  # Provides a useful starting point for object based mappings. Handles, true, false, nil, Array and Hash by default, simply by passing through.
@@ -1,23 +1,8 @@
1
- # Copyright, 2016, by Samuel G. D. Williams. <http://www.codeotaku.com>
2
- #
3
- # Permission is hereby granted, free of charge, to any person obtaining a copy
4
- # of this software and associated documentation files (the "Software"), to deal
5
- # in the Software without restriction, including without limitation the rights
6
- # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
- # copies of the Software, and to permit persons to whom the Software is
8
- # furnished to do so, subject to the following conditions:
9
- #
10
- # The above copyright notice and this permission notice shall be included in
11
- # all copies or substantial portions of the Software.
12
- #
13
- # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
- # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
- # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
- # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
- # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
- # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19
- # THE SOFTWARE.
1
+ # frozen_string_literal: true
2
+
3
+ # Released under the MIT License.
4
+ # Copyright, 2016-2025, by Samuel Williams.
20
5
 
21
6
  module Mapping
22
- VERSION = "1.1.1"
7
+ VERSION = "1.1.2"
23
8
  end
data/lib/mapping.rb CHANGED
@@ -1,23 +1,8 @@
1
- # Copyright, 2016, by Samuel G. D. Williams. <http://www.codeotaku.com>
2
- #
3
- # Permission is hereby granted, free of charge, to any person obtaining a copy
4
- # of this software and associated documentation files (the "Software"), to deal
5
- # in the Software without restriction, including without limitation the rights
6
- # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
- # copies of the Software, and to permit persons to whom the Software is
8
- # furnished to do so, subject to the following conditions:
9
- #
10
- # The above copyright notice and this permission notice shall be included in
11
- # all copies or substantial portions of the Software.
12
- #
13
- # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
- # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
- # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
- # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
- # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
- # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19
- # THE SOFTWARE.
1
+ # frozen_string_literal: true
20
2
 
21
- require_relative 'mapping/version'
3
+ # Released under the MIT License.
4
+ # Copyright, 2016-2025, by Samuel Williams.
22
5
 
23
- require_relative 'mapping/model'
6
+ require_relative "mapping/version"
7
+
8
+ require_relative "mapping/model"
data/license.md ADDED
@@ -0,0 +1,21 @@
1
+ # MIT License
2
+
3
+ Copyright, 2016-2025, by Samuel Williams.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -2,30 +2,28 @@
2
2
 
3
3
  The mapping gem is a structured system for mapping one model to another, using an intermediate model which represents the transformation to apply.
4
4
 
5
- [![Build Status](https://travis-ci.org/ioquatix/mapping.svg?branch=master)](https://travis-ci.org/ioquatix/mapping)
6
- [![Code Climate](https://codeclimate.com/github/ioquatix/mapping.svg)](https://codeclimate.com/github/ioquatix/mapping)
7
- [![Coverage Status](https://coveralls.io/repos/ioquatix/mapping/badge.svg)](https://coveralls.io/r/ioquatix/mapping)
5
+ [![Development Status](https://github.com/ioquatix/mapping/workflows/Test/badge.svg)](https://github.com/ioquatix/mapping/actions?workflow=Test)
8
6
 
9
7
  ## Motivation
10
8
 
11
- I've been thinking (and designing) versioned APIs which serve their data primarily from `ActiveRecord` models. Initially we have been using `as_json/serializable_hash/to_json` where it made sense.
9
+ I've been thinking (and designing) versioned APIs which serve their data primarily from `ActiveRecord` models. Initially we have been using `as_json/serializable_hash/to_json` where it made sense.
12
10
 
13
- records.as_json
11
+ records.as_json
14
12
 
15
13
  This was fine for really simple models and APIs. However, as things get more complex, this approach gets cumbersome:
16
14
 
17
- records.as_json(
18
- only: [:id, :name, :image, :longitude, :latitude],
19
- include: [:major_category, :categories],
20
- )
15
+ records.as_json(
16
+ only: [:id, :name, :image, :longitude, :latitude],
17
+ include: [:major_category, :categories],
18
+ )
21
19
 
22
20
  We need versioned, internationalized APIs which don't always directly match up to the underlying database models, or in some cases the underlying models change but the API should remain stable (e.g. column renamed, tables changed).
23
21
 
24
- # image attribute was renamed to image_url, how do we version the response?
25
- records.as_json(
26
- only: [:id, :name, :image_url, :longitude, :latitude],
27
- include: [:major_category, :categories],
28
- )
22
+ # image attribute was renamed to image_url, how do we version the response?
23
+ records.as_json(
24
+ only: [:id, :name, :image_url, :longitude, :latitude],
25
+ include: [:major_category, :categories],
26
+ )
29
27
 
30
28
  It's also not obvious how to inject methods that take arguments, or even handle per-request state (e.g. `Accept-Language`). Even if it is possible (e.g. using a lambda) I'm not sure that this approach is really desirable - the argument list is becoming impossibly complex: Possibly buggy, hard to reuse, test and difficult to document.
31
29
 
@@ -39,99 +37,47 @@ The design of this library is centered around being explicit where being explici
39
37
 
40
38
  Add this line to your application's Gemfile:
41
39
 
42
- gem 'mapping'
40
+ gem 'mapping'
43
41
 
44
42
  And then execute:
45
43
 
46
- $ bundle
44
+ $ bundle
47
45
 
48
46
  Or install it yourself as:
49
47
 
50
- $ gem install mapping
48
+ $ gem install mapping
51
49
 
52
50
  ## Usage
53
51
 
54
- A mapping model is required for mapping data from one format to another:
55
-
56
- ```ruby
57
- # Your database model:
58
- module Human
59
- Person = Struct.new(:name, :age, :posessions)
60
- Possession = Struct.new(:name, :value)
61
- end
62
-
63
- # Your mapping model:
64
- class APIv1 < Mapping::ObjectModel
65
- map(Human::Person) do |object|
66
- {
67
- name: object.name,
68
- age: object.age,
69
- }
70
- end
71
- end
72
-
73
- class APIv2 < APIv1
74
- map(Human::Person) do |object|
75
- super.merge(
76
- posessions: self.map(object.posessions)
77
- )
78
- end
79
-
80
- map(Human::Possession) do |object|
81
- {
82
- name: object.name,
83
- value: object.value,
84
- }
85
- end
86
- end
87
- ```
88
-
89
- A simple use case would be something like the following:
90
-
91
- ```ruby
92
- model = APIv1.new
93
-
94
- person = Human::Person.new('Bob Jones', 200, [])
95
- person.posessions << Human::Possession.new('Vase', '$20')
96
-
97
- expect(model.map(person)).to be == {
98
- name: 'Bob Jones',
99
- age: 200
100
- }
101
- ```
52
+ Please see the [project documentation](https://github.com/ioquatix/mapping) for more details.
102
53
 
103
54
  ### Model vs ObjectModel
104
55
 
105
56
  The base `Mapping::Model` class provides only the basic structure required to create and invoke mapping methods. The `Mapping::ObjectModel` provides a few default mappings for `true`, `false`, `nil`, `Array` and `Hash`.
106
57
 
107
- ## Contributing
58
+ ## Releases
59
+
60
+ Please see the [project releases](https://github.com/ioquatix/mappingreleases/index) for all releases.
61
+
62
+ ### v1.1.2
108
63
 
109
- 1. Fork it
110
- 2. Create your feature branch (`git checkout -b my-new-feature`)
111
- 3. Commit your changes (`git commit -am 'Add some feature'`)
112
- 4. Push to the branch (`git push origin my-new-feature`)
113
- 5. Create new Pull Request
64
+ - Improve compatibility issues with Ruby 3+.
65
+ - Migrate test suite to sus and add continuous integration tests.
66
+
67
+ ## Contributing
114
68
 
115
- ## License
69
+ We welcome contributions to this project.
116
70
 
117
- Released under the MIT license.
71
+ 1. Fork it.
72
+ 2. Create your feature branch (`git checkout -b my-new-feature`).
73
+ 3. Commit your changes (`git commit -am 'Add some feature'`).
74
+ 4. Push to the branch (`git push origin my-new-feature`).
75
+ 5. Create new Pull Request.
118
76
 
119
- Copyright, 2016, by [Samuel G. D. Williams](http://www.codeotaku.com/samuel-williams).
77
+ ### Developer Certificate of Origin
120
78
 
121
- Permission is hereby granted, free of charge, to any person obtaining a copy
122
- of this software and associated documentation files (the "Software"), to deal
123
- in the Software without restriction, including without limitation the rights
124
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
125
- copies of the Software, and to permit persons to whom the Software is
126
- furnished to do so, subject to the following conditions:
79
+ In order to protect users of this project, we require all contributors to comply with the [Developer Certificate of Origin](https://developercertificate.org/). This ensures that all contributions are properly licensed and attributed.
127
80
 
128
- The above copyright notice and this permission notice shall be included in
129
- all copies or substantial portions of the Software.
81
+ ### Community Guidelines
130
82
 
131
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
132
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
133
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
134
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
135
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
136
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
137
- THE SOFTWARE.
83
+ This project is best served by a collaborative and respectful environment. Treat each other professionally, respect differing viewpoints, and engage constructively. Harassment, discrimination, or harmful behavior is not tolerated. Communicate clearly, listen actively, and support one another. If any issues arise, please inform the project maintainers.
data/releases.md ADDED
@@ -0,0 +1,6 @@
1
+ # Releases
2
+
3
+ ## v1.1.2
4
+
5
+ - Improve compatibility issues with Ruby 3+.
6
+ - Migrate test suite to sus and add continuous integration tests.
data.tar.gz.sig ADDED
Binary file
metadata CHANGED
@@ -1,83 +1,61 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mapping
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.1
4
+ version: 1.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Samuel Williams
8
- autorequire:
9
- bindir: exe
10
- cert_chain: []
11
- date: 2017-03-06 00:00:00.000000000 Z
12
- dependencies:
13
- - !ruby/object:Gem::Dependency
14
- name: bundler
15
- requirement: !ruby/object:Gem::Requirement
16
- requirements:
17
- - - "~>"
18
- - !ruby/object:Gem::Version
19
- version: '1.11'
20
- type: :development
21
- prerelease: false
22
- version_requirements: !ruby/object:Gem::Requirement
23
- requirements:
24
- - - "~>"
25
- - !ruby/object:Gem::Version
26
- version: '1.11'
27
- - !ruby/object:Gem::Dependency
28
- name: rake
29
- requirement: !ruby/object:Gem::Requirement
30
- requirements:
31
- - - "~>"
32
- - !ruby/object:Gem::Version
33
- version: '10.0'
34
- type: :development
35
- prerelease: false
36
- version_requirements: !ruby/object:Gem::Requirement
37
- requirements:
38
- - - "~>"
39
- - !ruby/object:Gem::Version
40
- version: '10.0'
41
- - !ruby/object:Gem::Dependency
42
- name: rspec
43
- requirement: !ruby/object:Gem::Requirement
44
- requirements:
45
- - - "~>"
46
- - !ruby/object:Gem::Version
47
- version: '3.0'
48
- type: :development
49
- prerelease: false
50
- version_requirements: !ruby/object:Gem::Requirement
51
- requirements:
52
- - - "~>"
53
- - !ruby/object:Gem::Version
54
- version: '3.0'
55
- description: Map model objects based on their class to a given output model. Useful
56
- for versioning external interfaces (e.g. JSON APIs) or processing structured data
57
- from one format to another.
58
- email:
59
- - samuel.williams@oriontransfer.co.nz
8
+ bindir: bin
9
+ cert_chain:
10
+ - |
11
+ -----BEGIN CERTIFICATE-----
12
+ MIIE2DCCA0CgAwIBAgIBATANBgkqhkiG9w0BAQsFADBhMRgwFgYDVQQDDA9zYW11
13
+ ZWwud2lsbGlhbXMxHTAbBgoJkiaJk/IsZAEZFg1vcmlvbnRyYW5zZmVyMRIwEAYK
14
+ CZImiZPyLGQBGRYCY28xEjAQBgoJkiaJk/IsZAEZFgJuejAeFw0yMjA4MDYwNDUz
15
+ MjRaFw0zMjA4MDMwNDUzMjRaMGExGDAWBgNVBAMMD3NhbXVlbC53aWxsaWFtczEd
16
+ MBsGCgmSJomT8ixkARkWDW9yaW9udHJhbnNmZXIxEjAQBgoJkiaJk/IsZAEZFgJj
17
+ bzESMBAGCgmSJomT8ixkARkWAm56MIIBojANBgkqhkiG9w0BAQEFAAOCAY8AMIIB
18
+ igKCAYEAomvSopQXQ24+9DBB6I6jxRI2auu3VVb4nOjmmHq7XWM4u3HL+pni63X2
19
+ 9qZdoq9xt7H+RPbwL28LDpDNflYQXoOhoVhQ37Pjn9YDjl8/4/9xa9+NUpl9XDIW
20
+ sGkaOY0eqsQm1pEWkHJr3zn/fxoKPZPfaJOglovdxf7dgsHz67Xgd/ka+Wo1YqoE
21
+ e5AUKRwUuvaUaumAKgPH+4E4oiLXI4T1Ff5Q7xxv6yXvHuYtlMHhYfgNn8iiW8WN
22
+ XibYXPNP7NtieSQqwR/xM6IRSoyXKuS+ZNGDPUUGk8RoiV/xvVN4LrVm9upSc0ss
23
+ RZ6qwOQmXCo/lLcDUxJAgG95cPw//sI00tZan75VgsGzSWAOdjQpFM0l4dxvKwHn
24
+ tUeT3ZsAgt0JnGqNm2Bkz81kG4A2hSyFZTFA8vZGhp+hz+8Q573tAR89y9YJBdYM
25
+ zp0FM4zwMNEUwgfRzv1tEVVUEXmoFCyhzonUUw4nE4CFu/sE3ffhjKcXcY//qiSW
26
+ xm4erY3XAgMBAAGjgZowgZcwCQYDVR0TBAIwADALBgNVHQ8EBAMCBLAwHQYDVR0O
27
+ BBYEFO9t7XWuFf2SKLmuijgqR4sGDlRsMC4GA1UdEQQnMCWBI3NhbXVlbC53aWxs
28
+ aWFtc0BvcmlvbnRyYW5zZmVyLmNvLm56MC4GA1UdEgQnMCWBI3NhbXVlbC53aWxs
29
+ aWFtc0BvcmlvbnRyYW5zZmVyLmNvLm56MA0GCSqGSIb3DQEBCwUAA4IBgQB5sxkE
30
+ cBsSYwK6fYpM+hA5B5yZY2+L0Z+27jF1pWGgbhPH8/FjjBLVn+VFok3CDpRqwXCl
31
+ xCO40JEkKdznNy2avOMra6PFiQyOE74kCtv7P+Fdc+FhgqI5lMon6tt9rNeXmnW/
32
+ c1NaMRdxy999hmRGzUSFjozcCwxpy/LwabxtdXwXgSay4mQ32EDjqR1TixS1+smp
33
+ 8C/NCWgpIfzpHGJsjvmH2wAfKtTTqB9CVKLCWEnCHyCaRVuKkrKjqhYCdmMBqCws
34
+ JkxfQWC+jBVeG9ZtPhQgZpfhvh+6hMhraUYRQ6XGyvBqEUe+yo6DKIT3MtGE2+CP
35
+ eX9i9ZWBydWb8/rvmwmX2kkcBbX0hZS1rcR593hGc61JR6lvkGYQ2MYskBveyaxt
36
+ Q2K9NVun/S785AP05vKkXZEFYxqG6EW012U4oLcFl5MySFajYXRYbuUpH6AY+HP8
37
+ voD0MPg1DssDLKwXyt1eKD/+Fq0bFWhwVM/1XiAXL7lyYUyOq24KHgQ2Csg=
38
+ -----END CERTIFICATE-----
39
+ date: 2025-03-29 00:00:00.000000000 Z
40
+ dependencies: []
60
41
  executables: []
61
42
  extensions: []
62
43
  extra_rdoc_files: []
63
44
  files:
64
- - ".gitignore"
65
- - ".rspec"
66
- - ".simplecov"
67
- - ".travis.yml"
68
- - Gemfile
69
- - README.md
70
- - Rakefile
71
45
  - lib/mapping.rb
72
46
  - lib/mapping/descendants.rb
73
47
  - lib/mapping/model.rb
74
48
  - lib/mapping/object_model.rb
75
49
  - lib/mapping/version.rb
76
- - mapping.gemspec
50
+ - license.md
51
+ - readme.md
52
+ - releases.md
77
53
  homepage: https://github.com/ioquatix/mapping
78
- licenses: []
79
- metadata: {}
80
- post_install_message:
54
+ licenses:
55
+ - MIT
56
+ metadata:
57
+ funding_uri: https://github.com/sponsors/ioquatix/
58
+ source_code_uri: https://github.com/ioquatix/mapping.git
81
59
  rdoc_options: []
82
60
  require_paths:
83
61
  - lib
@@ -85,16 +63,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
85
63
  requirements:
86
64
  - - ">="
87
65
  - !ruby/object:Gem::Version
88
- version: '0'
66
+ version: '3.1'
89
67
  required_rubygems_version: !ruby/object:Gem::Requirement
90
68
  requirements:
91
69
  - - ">="
92
70
  - !ruby/object:Gem::Version
93
71
  version: '0'
94
72
  requirements: []
95
- rubyforge_project:
96
- rubygems_version: 2.6.10
97
- signing_key:
73
+ rubygems_version: 3.6.2
98
74
  specification_version: 4
99
75
  summary: Map an input model to an output model using a mapping model.
100
76
  test_files: []
metadata.gz.sig ADDED
Binary file
data/.gitignore DELETED
@@ -1,9 +0,0 @@
1
- /.bundle/
2
- /.yardoc
3
- /Gemfile.lock
4
- /_yardoc/
5
- /coverage/
6
- /doc/
7
- /pkg/
8
- /spec/reports/
9
- /tmp/
data/.rspec DELETED
@@ -1,2 +0,0 @@
1
- --format documentation
2
- --color
data/.simplecov DELETED
@@ -1,9 +0,0 @@
1
-
2
- SimpleCov.start do
3
- add_filter "/spec/"
4
- end
5
-
6
- if ENV['TRAVIS']
7
- require 'coveralls'
8
- Coveralls.wear!
9
- end
data/.travis.yml DELETED
@@ -1,5 +0,0 @@
1
- language: ruby
2
- rvm:
3
- - 2.3.0
4
- - 2.4.0
5
- env: COVERAGE=true
data/Gemfile DELETED
@@ -1,9 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- # Specify your gem's dependencies in mapping.gemspec
4
- gemspec
5
-
6
- group :test do
7
- gem 'simplecov'
8
- gem 'coveralls', require: false
9
- end
data/Rakefile DELETED
@@ -1,8 +0,0 @@
1
- require "bundler/gem_tasks"
2
- require "rspec/core/rake_task"
3
-
4
- RSpec::Core::RakeTask.new(:spec) do |task|
5
- task.rspec_opts = ["--require", "simplecov"] if ENV['COVERAGE']
6
- end
7
-
8
- task :default => :spec
data/mapping.gemspec DELETED
@@ -1,24 +0,0 @@
1
- # coding: utf-8
2
- lib = File.expand_path('../lib', __FILE__)
3
- $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'mapping/version'
5
-
6
- Gem::Specification.new do |spec|
7
- spec.name = "mapping"
8
- spec.version = Mapping::VERSION
9
- spec.authors = ["Samuel Williams"]
10
- spec.email = ["samuel.williams@oriontransfer.co.nz"]
11
-
12
- spec.summary = %q{Map an input model to an output model using a mapping model.}
13
- spec.description = %q{Map model objects based on their class to a given output model. Useful for versioning external interfaces (e.g. JSON APIs) or processing structured data from one format to another.}
14
- spec.homepage = "https://github.com/ioquatix/mapping"
15
-
16
- spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
17
- spec.bindir = "exe"
18
- spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
19
- spec.require_paths = ["lib"]
20
-
21
- spec.add_development_dependency "bundler", "~> 1.11"
22
- spec.add_development_dependency "rake", "~> 10.0"
23
- spec.add_development_dependency "rspec", "~> 3.0"
24
- end