unimatrix 2.7.0 → 2.7.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9f66b57e1dc33be3b0eb908b38cd7254c909dd6d
4
- data.tar.gz: e7b5cd35824ca6b133b21763bd6806ccf3dc3c10
3
+ metadata.gz: 08b74cf755b674e1c4042ef72126caba06cf1a0e
4
+ data.tar.gz: 3b63a0b05aef608bdd60a82d195964fbf71a8e53
5
5
  SHA512:
6
- metadata.gz: 0a846a05eb1da761d8d5881f8843c688f00737b59d2efc7ab35bfc7bf63339e6ec8a5543179b454b4abf8e933be51584c98a6bcf28c64fdf9ae429074681b1cc
7
- data.tar.gz: 9efc2ba34b1fa8dc1ff8683095ddfe5b15781262953a37a2aa671dfa3d57182c1dea4423e78e2b4c8074e39d0a274ebcac5f389cb8dbc12cedb47001dc7c5e8f
6
+ metadata.gz: 5dcdb4995e6d5db61d172098e37e5c1263b80d28f59e45b4f9ac95e41a1a8df91f8a53f363541c1d18132f0b915bd3b3fca0190091c8a10353b6de1e629d96cb
7
+ data.tar.gz: c1421e9f9d52ef0dec0df9f89efa4d0dc4f1aa5456132f57311e9369ed70a2fd07e16757aba77b3b61db44fe177967ad417f7179fdc9730299b4398fb824bffe
data/VERSION CHANGED
@@ -1 +1 @@
1
- 2.7.0
1
+ 2.7.1
@@ -83,7 +83,6 @@ require 'unimatrix/cartographer/geographic_area'
83
83
  require 'unimatrix/cartographer/city'
84
84
  require 'unimatrix/cartographer/continent'
85
85
  require 'unimatrix/cartographer/country'
86
- require 'unimatrix/cartographer/realm'
87
86
  require 'unimatrix/cartographer/region'
88
87
  require 'unimatrix/cartographer/region_geographic_area'
89
88
  require 'unimatrix/cartographer/territory'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: unimatrix
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.7.0
4
+ version: 2.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jackson Souza
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-04-03 00:00:00.000000000 Z
11
+ date: 2018-04-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -136,7 +136,6 @@ files:
136
136
  - lib/unimatrix/cartographer/continent.rb
137
137
  - lib/unimatrix/cartographer/country.rb
138
138
  - lib/unimatrix/cartographer/geographic_area.rb
139
- - lib/unimatrix/cartographer/realm.rb
140
139
  - lib/unimatrix/cartographer/region.rb
141
140
  - lib/unimatrix/cartographer/region_geographic_area.rb
142
141
  - lib/unimatrix/cartographer/territory.rb
@@ -1,15 +0,0 @@
1
- module Unimatrix::Cartographer
2
-
3
- class Realm < Unimatrix::DynamicResource
4
-
5
- field :id
6
- field :uuid
7
- field :created_at
8
- field :updated_at
9
-
10
- has_many :regions
11
- has_many :region_geographic_areas
12
-
13
- end
14
-
15
- end