ish_models 0.0.33.144 → 0.0.33.145
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/gameui/map.rb +2 -0
- data/lib/gameui/marker.rb +1 -2
- data/lib/ish/nonpublic.rb +13 -0
- data/lib/ish/user_profile.rb +0 -1
- data/lib/ish_models.rb +1 -0
- data/lib/warbler/stock_watch.rb +0 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 59d512837bf94f2172832f0c5ae57d157b5dd0d9af9657f384f0cfee91efc430
|
4
|
+
data.tar.gz: 704019952ecc2c73b41b82de6ca8b43bb77a12220620a13b11070a65fe7d8f31
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e48cacf28a8f441b30a9ef7f27f2c00184fa6891e1658cddb04d6614bbe23d1ea7f8c227581719f4f3b3b08eb6914ba41039b5c7d3c4a9bdfc406f9cc61515f3
|
7
|
+
data.tar.gz: ff6b2778ef8d29d4e6184ac44100de00d64647874b3d02a5829eacb330aab2f574f185c8525bc8307c70ce16b94842ba475bf85940e9da8a2b3aea6a88268eaf
|
data/lib/gameui/map.rb
CHANGED
@@ -24,6 +24,8 @@ class ::Gameui::Map
|
|
24
24
|
# shareable, nonpublic
|
25
25
|
field :is_public, type: Boolean, default: true
|
26
26
|
has_and_belongs_to_many :shared_profiles, :class_name => 'Ish::UserProfile', :inverse_of => :shared_locations
|
27
|
+
default_scope ->{ where({ is_public: true, deleted_at: nil }).order_by({ slug: :desc }) }
|
28
|
+
## @TODO: index default scope, maybe instead of HABTM, use :thru for shared profiles. Make is poly anyway?
|
27
29
|
|
28
30
|
|
29
31
|
field :map_slug
|
data/lib/gameui/marker.rb
CHANGED
@@ -60,8 +60,7 @@ class ::Gameui::Marker
|
|
60
60
|
|
61
61
|
ITEM_TYPE_LOCATION = 'gameui-location'
|
62
62
|
ITEM_TYPE_MAP = 'gameui-map'
|
63
|
-
|
64
|
-
ITEM_TYPES = [ ITEM_TYPE_LOCATION, ITEM_TYPE_MAP, ITEM_TYPE_OBJ ]
|
63
|
+
ITEM_TYPES = [ ITEM_TYPE_LOCATION, ITEM_TYPE_MAP ]
|
65
64
|
field :item_type, type: String
|
66
65
|
validates :item_type, presence: true
|
67
66
|
|
@@ -0,0 +1,13 @@
|
|
1
|
+
|
2
|
+
## THIS IS TRASH. I copy-paste repetitively instead!
|
3
|
+
|
4
|
+
## aka: Ish::Shareable
|
5
|
+
## adds is_public (default true) and #shared_profiles, inverse :shared_items ???
|
6
|
+
module Ish::Nonpublic
|
7
|
+
|
8
|
+
def self.included base
|
9
|
+
base.send :field, :is_public, type: Boolean, default: true
|
10
|
+
base.send :has_and_belongs_to_many, :shared_profiles, :class_name => 'Ish::UserProfile', :inverse_of => :shared_markers
|
11
|
+
end
|
12
|
+
|
13
|
+
end
|
data/lib/ish/user_profile.rb
CHANGED
data/lib/ish_models.rb
CHANGED
data/lib/warbler/stock_watch.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ish_models
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.33.
|
4
|
+
version: 0.0.33.145
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- piousbox
|
@@ -128,6 +128,7 @@ files:
|
|
128
128
|
- lib/ish/invoice.rb
|
129
129
|
- lib/ish/issue.rb
|
130
130
|
- lib/ish/lead.rb
|
131
|
+
- lib/ish/nonpublic.rb
|
131
132
|
- lib/ish/payment.rb
|
132
133
|
- lib/ish/premium_item.rb
|
133
134
|
- lib/ish/railtie.rb
|
@@ -170,7 +171,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
170
171
|
- !ruby/object:Gem::Version
|
171
172
|
version: '0'
|
172
173
|
requirements: []
|
173
|
-
rubygems_version: 3.
|
174
|
+
rubygems_version: 3.0.3.1
|
174
175
|
signing_key:
|
175
176
|
specification_version: 4
|
176
177
|
summary: models of ish
|