mls 0.3.3 → 0.3.4

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: 29239d95df1f5efb9da9996362a8c2a47833734b
4
- data.tar.gz: 628634039a1f15b783f84f500f7184100e187547
3
+ metadata.gz: 91f9a9e2dcc1c42e2b50633239fbd9552fa4e048
4
+ data.tar.gz: 95197050270afdab16069e4420fb97769d5e631f
5
5
  SHA512:
6
- metadata.gz: f27d7c9abb5ff9693b6ee1f7423014ee69233c555e32dc41621402c72d95bf417166e2b4ec151bb03f57344e971f26864014787b3227e4da858c1fadb5216807
7
- data.tar.gz: 40eba95448eb73b1ed4919fb3f86ff8987e74240b32cd33bd35c299d48f7affd60f568329268cd23261d5b057cf6690fab9740e83dd7924a6fca3d5ccec15ce1
6
+ metadata.gz: 55aee1dfee6f106e73c53d66abd5ea3db18ca3292a08c9702667bca2a812e7bc0cfae8000b522804fdaffde0da8ee6a4a77353afd3d0d78a59e0ce84ac4b993d
7
+ data.tar.gz: f77bf84bf3a9f1f0d05eff9b474f2080f563d9720a46162db0c51171478dd74cb480756c49a6130b74f9ef79a6b1235dfbb6b94d307c9e85a9cf7e70c0a7a9a2
@@ -30,7 +30,7 @@ class MLS::Listing < MLS::Resource
30
30
 
31
31
  property :size, Fixnum
32
32
  property :maximum_contiguous_size, Fixnum
33
- property :minimum_divisable_size, Fixnum
33
+ property :minimum_divisible_size, Fixnum
34
34
 
35
35
  property :lease_terms, String
36
36
  property :rate, Decimal
@@ -3,7 +3,7 @@ $:.push File.expand_path("../lib", __FILE__)
3
3
 
4
4
  Gem::Specification.new do |s|
5
5
  s.name = "mls"
6
- s.version = '0.3.3'
6
+ s.version = '0.3.4'
7
7
  s.authors = ["James R. Bracy", "Jon Bracy"]
8
8
  s.email = ["james@42floors.com"]
9
9
  s.homepage = "http://mls.42floors.com"
@@ -16,7 +16,7 @@ FactoryGirl.define do
16
16
  use 'Office'
17
17
  size { Kernel.rand(3000..900000) }
18
18
  maximum_contiguous_size { Kernel.rand(3000..900000) }
19
- minimum_divisable_size { Kernel.rand(3000..900000) }
19
+ minimum_divisible_size { Kernel.rand(3000..900000) }
20
20
  type 'lease'
21
21
  #lease_terms { ::MLS::Listing::LEASE_TERMS.sample }
22
22
  space_type 'unit'
@@ -18,7 +18,7 @@ class TestListing < ::Test::Unit::TestCase
18
18
  assert listing.respond_to?(:comments)
19
19
  assert listing.respond_to?(:size)
20
20
  assert listing.respond_to?(:maximum_contiguous_size)
21
- assert listing.respond_to?(:minimum_divisable_size)
21
+ assert listing.respond_to?(:minimum_divisible_size)
22
22
  assert listing.respond_to?(:lease_terms)
23
23
  assert listing.respond_to?(:rate)
24
24
  assert listing.respond_to?(:rate_units)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mls
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.3
4
+ version: 0.3.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - James R. Bracy