eve_app 0.1.21 → 0.1.22

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
  SHA1:
3
- metadata.gz: 722eb2022a8d782789d756574553b4596a6eedd0
4
- data.tar.gz: fc53dbdf8afe0f22daecfd14877fb7a1712919aa
3
+ metadata.gz: 24c6e04e768c543a6bd042cb446ceea004d02244
4
+ data.tar.gz: 176f16c1d6c86c410caf4f17532899c89eb4a8b2
5
5
  SHA512:
6
- metadata.gz: e8b489801cb5f575002dfed696f4ff0b8e54a975f421daea83b03335d1b7cb6c53d1e53b321741d6911ee3d9d58af2e0278e85229dc6c7eb53947956f68bb2a0
7
- data.tar.gz: f091ea509147a81db29115d927bd6324b1f526d05454abfc5a9824ff3e0d668b5a85f5b980b581082ca1d5043f8e5b37f7fc12e14670842125e830ab3108b60a
6
+ metadata.gz: 9e706bc8fa4d2f03d75d469bcd755c61d839686f131231c9199c2615aa704b6d502afe68c8f0342cf9f0141aa172874312e102b4c3f7a1a31d8a19eadf54ee04
7
+ data.tar.gz: 6457754663265c36654da5b1fac03ca946fb04b8db8aa5d9a01f32350296f71ce82e4d9ace73c89716e248ca644070fe3b7b1815fe8ecf33c1edc305d44dd652
@@ -0,0 +1,4 @@
1
+ class EveApp::Constellation < EveApp::ApplicationRecord
2
+ belongs_to :region
3
+ has_many :solar_systems
4
+ end
@@ -1,3 +1,4 @@
1
1
  class EveApp::Region < EveApp::ApplicationRecord
2
- has_many :solar_systems, class_name: 'EveApp::SolarSystem'
2
+ has_many :solar_systems
3
+ has_many :constellations
3
4
  end
@@ -9,6 +9,7 @@ class EveApp::SolarSystem < EveApp::ApplicationRecord
9
9
  MAURASI = 30000140
10
10
 
11
11
  belongs_to :region
12
+ belongs_to :constellation
12
13
 
13
14
  has_many :stations
14
15
  end
@@ -1,3 +1,3 @@
1
1
  module EveApp
2
- VERSION = '0.1.21'
2
+ VERSION = '0.1.22'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: eve_app
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.21
4
+ version: 0.1.22
5
5
  platform: ruby
6
6
  authors:
7
7
  - Danny Hiemstra
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-11-21 00:00:00.000000000 Z
11
+ date: 2017-11-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -135,6 +135,7 @@ files:
135
135
  - app/models/eve_app/assembly_line_type_detail_per_category.rb
136
136
  - app/models/eve_app/assembly_line_type_detail_per_group.rb
137
137
  - app/models/eve_app/category.rb
138
+ - app/models/eve_app/constellation.rb
138
139
  - app/models/eve_app/group.rb
139
140
  - app/models/eve_app/market_group.rb
140
141
  - app/models/eve_app/region.rb