as_json_representations 0.4.1 → 0.4.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
2
  SHA256:
3
- metadata.gz: d489e6472aa1956629b9a73dfa7fe239e1ae9cd3d794f23a69085da4909bcead
4
- data.tar.gz: a1eff31bbd91cc4ba2c04cc2518b5b4a2e90864fa20161230f21b4d4882fd0a0
3
+ metadata.gz: 7faf28c845c3b7832fba7ffee9a65652e21cd958620644dbc0a9ba7a451d8c76
4
+ data.tar.gz: f35552a18dddb0be28fa057741127834aadf64969f7f64a662d24050e27dc7f5
5
5
  SHA512:
6
- metadata.gz: e1c6f1861aecfac8d575788cc90acb4d313dc51e2f045968f26819741f0a5260c8366c5a734ff5f0697891218736f5a18eb28da2b8a532e95640aea1579555be
7
- data.tar.gz: d7a542c0ddda417baad9977535c42160ebc8880a56d22491b11ad35b0cf708736450080ec34787cf3632b525b0300042819f1a93368c72228e46004b1de73f54
6
+ metadata.gz: 361dbc0c1965bbf56a59eb9a0138f00cb52f20dd9f57f6ec035507977175bacb5a384bbaa846f51aac7488ce7773f394e4c1235d45e278a0826e19c04e00ffcc
7
+ data.tar.gz: 4383c6c23e6bcc495ae13ade123bcde28f19d5945ab59e1520f51d0597620abdb44bcedeaf5255af11910d1006f21a4b13c39e6bfb77c5fe9b97a7a426abfeea
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- as_json_representations (0.4.1)
4
+ as_json_representations (0.4.2)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -1,13 +1,19 @@
1
1
  module AsJsonRepresentations
2
2
  module Collection
3
- def as_json(options={})
4
- map do |item|
5
- item.respond_to?(:as_json) ? item.as_json(options) : item
6
- end
7
- end
8
-
9
3
  def representation(name, options={})
10
4
  as_json(options.merge(representation: name))
11
5
  end
6
+
7
+ def self.included(base)
8
+ return if base.respond_to? :as_json
9
+
10
+ base.class_eval do
11
+ def as_json(options={})
12
+ map do |item|
13
+ item.respond_to?(:as_json) ? item.as_json(options) : item
14
+ end
15
+ end
16
+ end
17
+ end
12
18
  end
13
19
  end
@@ -1,3 +1,3 @@
1
1
  module AsJsonRepresentations
2
- VERSION = '0.4.1'
2
+ VERSION = '0.4.2'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: as_json_representations
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.1
4
+ version: 0.4.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - rjurado01
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-09-24 00:00:00.000000000 Z
11
+ date: 2018-09-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler