caboose-rets 0.1.111 → 0.1.112
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5eaa12b87505c9d91e48c090423f20c55b3297649594799921fb10955fdc1b60
|
|
4
|
+
data.tar.gz: 7fc36eef402a43458df566af61e114fad725d9a9199511164e87e6504b307af8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 78b8bf8f06f03d302a86c775b4484ee4f61508118ca0c01565dd54acba110c23c67dab2cd8b6212b3fc058628d9359a7bfce6b4096838eff5681005218b587db
|
|
7
|
+
data.tar.gz: e5ad425ababd702b9a08850ee68fd37a528ff748f4f4f9955f822fdc12106977c41569f9d7be32edc1fc4ca6c768d3a5b353c85611b3a48505ad34785e270a68
|
|
@@ -47,7 +47,7 @@ class CabooseRets::Schema < Caboose::Utilities::Schema
|
|
|
47
47
|
[ :image_location , :string ],
|
|
48
48
|
[ :image , :attachment ],
|
|
49
49
|
[ :accepts_listings , :boolean , { :default => true }],
|
|
50
|
-
[ :weight , :float ]
|
|
50
|
+
[ :weight , :float , { :default => 1 } ]
|
|
51
51
|
],
|
|
52
52
|
CabooseRets::Office => [
|
|
53
53
|
[ :lo_addr1 , :text ],
|
|
@@ -84,8 +84,8 @@ $(document).ready(function() {
|
|
|
84
84
|
attributes: [
|
|
85
85
|
{ name: 'accepts_listings', nice_name: 'Accepts Listings', type: 'checkbox', value: <%== Caboose.json(@agent_meta.accepts_listings) %>, width: 500, height: 300 },
|
|
86
86
|
{ name: 'hide', nice_name: 'Hide', type: 'checkbox', value: <%== Caboose.json(@agent_meta.hide) %>, width: 500, height: 300 },
|
|
87
|
-
{ name: 'weight', nice_name: 'Listing Assignment
|
|
88
|
-
<% (
|
|
87
|
+
{ name: 'weight', nice_name: 'Listing Assignment Level', type: 'select', value: <%== Caboose.json(@agent_meta.weight) %>, width: 500, options: [
|
|
88
|
+
<% (1..2).each do |ind| %>
|
|
89
89
|
{'text':'<%= ind %>','value':<%= ind %>},
|
|
90
90
|
<% end %>]},
|
|
91
91
|
{ name: 'slug', nice_name: 'Slug', type: 'text', value: <%== Caboose.json(@agent.slug) %>, width: 500 },
|
data/lib/caboose_rets/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: caboose-rets
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.112
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- William Barry
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-03-
|
|
11
|
+
date: 2019-03-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: caboose-cms
|
|
@@ -169,7 +169,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
169
169
|
version: '0'
|
|
170
170
|
requirements: []
|
|
171
171
|
rubyforge_project:
|
|
172
|
-
rubygems_version: 2.7.
|
|
172
|
+
rubygems_version: 2.7.7
|
|
173
173
|
signing_key:
|
|
174
174
|
specification_version: 4
|
|
175
175
|
summary: Library to download RETS data to a local website.
|