ish_models 0.0.33.145 → 0.0.33.146

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
  SHA256:
3
- metadata.gz: 59d512837bf94f2172832f0c5ae57d157b5dd0d9af9657f384f0cfee91efc430
4
- data.tar.gz: 704019952ecc2c73b41b82de6ca8b43bb77a12220620a13b11070a65fe7d8f31
3
+ metadata.gz: b97e9f9e4ed76c66c50d30bf5f4ec80f2532058e7a8b687a049bd87f07f98434
4
+ data.tar.gz: f27c9a996be622b67ace6dbba51473d83cb5b5af6e4c390a7f28cdd25e0ac1fa
5
5
  SHA512:
6
- metadata.gz: e48cacf28a8f441b30a9ef7f27f2c00184fa6891e1658cddb04d6614bbe23d1ea7f8c227581719f4f3b3b08eb6914ba41039b5c7d3c4a9bdfc406f9cc61515f3
7
- data.tar.gz: ff6b2778ef8d29d4e6184ac44100de00d64647874b3d02a5829eacb330aab2f574f185c8525bc8307c70ce16b94842ba475bf85940e9da8a2b3aea6a88268eaf
6
+ metadata.gz: e936a99d778b9eea62cd3cb1895990ea3aaae2d756fcdefb2bedd21847d5d8f604fba33e88604965e35a7958325bee0b613a22a083a32e0728fb21970a61ceea
7
+ data.tar.gz: 3300a0193da951151944262f0d6065655a2ba9e63e560d66db668aa36b24f3d0dc7544517c0c0e171d141a0c6256c5416fc27380d5a63044cc6516a5f142ed0d
data/lib/gameui/map.rb CHANGED
@@ -24,8 +24,6 @@ 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?
29
27
 
30
28
 
31
29
  field :map_slug
data/lib/gameui/marker.rb CHANGED
@@ -60,7 +60,8 @@ class ::Gameui::Marker
60
60
 
61
61
  ITEM_TYPE_LOCATION = 'gameui-location'
62
62
  ITEM_TYPE_MAP = 'gameui-map'
63
- ITEM_TYPES = [ ITEM_TYPE_LOCATION, ITEM_TYPE_MAP ]
63
+ ITEM_TYPE_OBJ = 'gameui-obj'
64
+ ITEM_TYPES = [ ITEM_TYPE_LOCATION, ITEM_TYPE_MAP, ITEM_TYPE_OBJ ]
64
65
  field :item_type, type: String
65
66
  validates :item_type, presence: true
66
67
 
@@ -6,6 +6,7 @@ class Ish::UserProfile
6
6
  validates_presence_of :name
7
7
 
8
8
  field :username
9
+ field :scratchpad
9
10
 
10
11
  field :email
11
12
  # validates_format_of :email, :with => ::Devise::email_regexp
@@ -2,6 +2,7 @@
2
2
  class Warbler::StockWatch
3
3
  include Mongoid::Document
4
4
  include Mongoid::Timestamps
5
+ store_in collection: 'ish_stock_watches'
5
6
 
6
7
  field :ticker
7
8
 
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.145
4
+ version: 0.0.33.146
5
5
  platform: ruby
6
6
  authors:
7
7
  - piousbox